From ab86bcd0e74813442401062b24041825b269dda0 Mon Sep 17 00:00:00 2001 From: flippette Date: Sun, 3 Nov 2024 15:04:45 +0200 Subject: [PATCH] chore: generate --- src/grammar.json | 33 + src/node-types.json | 27 + src/parser.c | 268297 +++++++++++++++++++++-------------------- 3 files changed, 135074 insertions(+), 133283 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index d270daf..60ec724 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1066,6 +1066,10 @@ "type": "STRING", "value": "for" }, + { + "type": "STRING", + "value": "gen" + }, { "type": "STRING", "value": "if" @@ -5244,6 +5248,10 @@ "type": "SYMBOL", "name": "async_block" }, + { + "type": "SYMBOL", + "name": "gen_block" + }, { "type": "SYMBOL", "name": "try_block" @@ -7751,6 +7759,31 @@ } ] }, + "gen_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "gen" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "move" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + }, "try_block": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index a6e1c9d..2ec8009 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -153,6 +153,10 @@ "type": "for_expression", "named": true }, + { + "type": "gen_block", + "named": true + }, { "type": "generic_function", "named": true @@ -1079,6 +1083,10 @@ "type": "for_expression", "named": true }, + { + "type": "gen_block", + "named": true + }, { "type": "generic_function", "named": true @@ -2213,6 +2221,21 @@ ] } }, + { + "type": "gen_block", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + }, { "type": "generic_function", "named": true, @@ -5192,6 +5215,10 @@ "type": "for", "named": false }, + { + "type": "gen", + "named": false + }, { "type": "ident", "named": false diff --git a/src/parser.c b/src/parser.c index 58e98a9..9820ce7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,11 +5,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3620 -#define LARGE_STATE_COUNT 1004 -#define SYMBOL_COUNT 343 +#define STATE_COUNT 3636 +#define LARGE_STATE_COUNT 1010 +#define SYMBOL_COUNT 345 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 153 +#define TOKEN_COUNT 154 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -111,257 +111,259 @@ enum ts_symbol_identifiers { anon_sym_enum = 93, anon_sym_fn = 94, anon_sym_for = 95, - anon_sym_if = 96, - anon_sym_impl = 97, - anon_sym_let = 98, - anon_sym_loop = 99, - anon_sym_match = 100, - anon_sym_mod = 101, - anon_sym_pub = 102, - anon_sym_return = 103, - anon_sym_static = 104, - anon_sym_struct = 105, - anon_sym_trait = 106, - anon_sym_type = 107, - anon_sym_union = 108, - anon_sym_unsafe = 109, - anon_sym_use = 110, - anon_sym_where = 111, - anon_sym_while = 112, - anon_sym_extern = 113, - anon_sym_ref = 114, - anon_sym_else = 115, - anon_sym_in = 116, - anon_sym_LT2 = 117, - anon_sym_dyn = 118, - sym_mutable_specifier = 119, - anon_sym_yield = 120, - anon_sym_move = 121, - anon_sym_try = 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, - anon_sym_SLASH_SLASH = 130, - aux_sym_line_comment_token1 = 131, - aux_sym_line_comment_token2 = 132, - aux_sym_line_comment_token3 = 133, - anon_sym_BANG2 = 134, - anon_sym_SLASH2 = 135, - anon_sym_SLASH_STAR = 136, - anon_sym_STAR_SLASH = 137, - sym_shebang = 138, - sym_self = 139, - sym_super = 140, - sym_crate = 141, - sym_metavariable = 142, - sym_string_content = 143, - sym__raw_string_literal_start = 144, - sym_raw_string_literal_content = 145, - sym__raw_string_literal_end = 146, - sym_float_literal = 147, - sym__outer_block_doc_comment_marker = 148, - sym__inner_block_doc_comment_marker = 149, - sym__block_comment_content = 150, - sym__line_doc_content = 151, - sym__error_sentinel = 152, - sym_source_file = 153, - sym__statement = 154, - sym_empty_statement = 155, - sym_expression_statement = 156, - sym_macro_definition = 157, - sym_macro_rule = 158, - sym__token_pattern = 159, - sym_token_tree_pattern = 160, - sym_token_binding_pattern = 161, - sym_token_repetition_pattern = 162, - sym_fragment_specifier = 163, - sym_token_tree = 164, - sym_token_repetition = 165, - sym_attribute_item = 166, - sym_inner_attribute_item = 167, - sym_attribute = 168, - sym_mod_item = 169, - sym_foreign_mod_item = 170, - sym_declaration_list = 171, - sym_struct_item = 172, - sym_union_item = 173, - sym_enum_item = 174, - sym_enum_variant_list = 175, - sym_enum_variant = 176, - sym_field_declaration_list = 177, - sym_field_declaration = 178, - sym_ordered_field_declaration_list = 179, - sym_extern_crate_declaration = 180, - sym_const_item = 181, - sym_static_item = 182, - sym_type_item = 183, - sym_function_item = 184, - sym_function_signature_item = 185, - sym_function_modifiers = 186, - sym_where_clause = 187, - sym_where_predicate = 188, - sym_impl_item = 189, - sym_trait_item = 190, - sym_associated_type = 191, - sym_trait_bounds = 192, - sym_higher_ranked_trait_bound = 193, - sym_removed_trait_bound = 194, - sym_type_parameters = 195, - sym_const_parameter = 196, - sym_constrained_type_parameter = 197, - sym_optional_type_parameter = 198, - sym_let_declaration = 199, - sym_use_declaration = 200, - sym__use_clause = 201, - sym_scoped_use_list = 202, - sym_use_list = 203, - sym_use_as_clause = 204, - sym_use_wildcard = 205, - sym_parameters = 206, - sym_self_parameter = 207, - sym_variadic_parameter = 208, - sym_parameter = 209, - sym_extern_modifier = 210, - sym_visibility_modifier = 211, - sym__type = 212, - sym_bracketed_type = 213, - sym_qualified_type = 214, - sym_lifetime = 215, - sym_array_type = 216, - sym_for_lifetimes = 217, - sym_function_type = 218, - sym_tuple_type = 219, - sym_unit_type = 220, - sym_generic_function = 221, - sym_generic_type = 222, - sym_generic_type_with_turbofish = 223, - sym_bounded_type = 224, - sym_type_arguments = 225, - sym_type_binding = 226, - sym_reference_type = 227, - sym_pointer_type = 228, - sym_never_type = 229, - sym_abstract_type = 230, - sym_dynamic_type = 231, - sym__expression_except_range = 232, - sym__expression = 233, - sym_macro_invocation = 234, - sym_delim_token_tree = 235, - sym__delim_tokens = 236, - sym__non_delim_token = 237, - sym_scoped_identifier = 238, - sym_scoped_type_identifier_in_expression_position = 239, - sym_scoped_type_identifier = 240, - sym_range_expression = 241, - sym_unary_expression = 242, - sym_try_expression = 243, - sym_reference_expression = 244, - sym_binary_expression = 245, - sym_assignment_expression = 246, - sym_compound_assignment_expr = 247, - sym_type_cast_expression = 248, - sym_return_expression = 249, - sym_yield_expression = 250, - sym_call_expression = 251, - sym_arguments = 252, - sym_array_expression = 253, - sym_parenthesized_expression = 254, - sym_tuple_expression = 255, - sym_unit_expression = 256, - sym_struct_expression = 257, - sym_field_initializer_list = 258, - sym_shorthand_field_initializer = 259, - sym_field_initializer = 260, - sym_base_field_initializer = 261, - sym_if_expression = 262, - sym_let_condition = 263, - sym__let_chain = 264, - sym__condition = 265, - sym_else_clause = 266, - sym_match_expression = 267, - sym_match_block = 268, - sym_match_arm = 269, - sym_last_match_arm = 270, - sym_match_pattern = 271, - sym_while_expression = 272, - sym_loop_expression = 273, - sym_for_expression = 274, - sym_const_block = 275, - sym_closure_expression = 276, - sym_closure_parameters = 277, - sym_label = 278, - sym_break_expression = 279, - sym_continue_expression = 280, - sym_index_expression = 281, - sym_await_expression = 282, - sym_field_expression = 283, - sym_unsafe_block = 284, - sym_async_block = 285, - sym_try_block = 286, - sym_block = 287, - sym__pattern = 288, - sym_tuple_pattern = 289, - sym_slice_pattern = 290, - sym_tuple_struct_pattern = 291, - sym_struct_pattern = 292, - sym_field_pattern = 293, - sym_remaining_field_pattern = 294, - sym_mut_pattern = 295, - sym_range_pattern = 296, - sym_ref_pattern = 297, - sym_captured_pattern = 298, - sym_reference_pattern = 299, - sym_or_pattern = 300, - sym__literal = 301, - sym__literal_pattern = 302, - sym_negative_literal = 303, - sym_string_literal = 304, - sym_raw_string_literal = 305, - sym_boolean_literal = 306, - sym_line_comment = 307, - sym__line_doc_comment_marker = 308, - sym__inner_line_doc_comment_marker = 309, - sym__outer_line_doc_comment_marker = 310, - sym_block_comment = 311, - sym__block_doc_comment_marker = 312, - aux_sym_source_file_repeat1 = 313, - aux_sym_macro_definition_repeat1 = 314, - aux_sym_token_tree_pattern_repeat1 = 315, - aux_sym_token_tree_repeat1 = 316, - aux_sym__non_special_token_repeat1 = 317, - aux_sym_declaration_list_repeat1 = 318, - aux_sym_enum_variant_list_repeat1 = 319, - aux_sym_enum_variant_list_repeat2 = 320, - aux_sym_field_declaration_list_repeat1 = 321, - aux_sym_ordered_field_declaration_list_repeat1 = 322, - aux_sym_function_modifiers_repeat1 = 323, - aux_sym_where_clause_repeat1 = 324, - aux_sym_trait_bounds_repeat1 = 325, - aux_sym_type_parameters_repeat1 = 326, - aux_sym_use_list_repeat1 = 327, - aux_sym_parameters_repeat1 = 328, - aux_sym_for_lifetimes_repeat1 = 329, - aux_sym_tuple_type_repeat1 = 330, - aux_sym_type_arguments_repeat1 = 331, - aux_sym_delim_token_tree_repeat1 = 332, - aux_sym_arguments_repeat1 = 333, - aux_sym_tuple_expression_repeat1 = 334, - aux_sym_field_initializer_list_repeat1 = 335, - aux_sym_match_block_repeat1 = 336, - aux_sym_match_arm_repeat1 = 337, - aux_sym_closure_parameters_repeat1 = 338, - aux_sym_tuple_pattern_repeat1 = 339, - aux_sym_slice_pattern_repeat1 = 340, - aux_sym_struct_pattern_repeat1 = 341, - aux_sym_string_literal_repeat1 = 342, - alias_sym_field_identifier = 343, - alias_sym_let_chain = 344, - alias_sym_shorthand_field_identifier = 345, - alias_sym_type_identifier = 346, + anon_sym_gen = 96, + anon_sym_if = 97, + anon_sym_impl = 98, + anon_sym_let = 99, + anon_sym_loop = 100, + anon_sym_match = 101, + anon_sym_mod = 102, + anon_sym_pub = 103, + anon_sym_return = 104, + anon_sym_static = 105, + anon_sym_struct = 106, + anon_sym_trait = 107, + anon_sym_type = 108, + anon_sym_union = 109, + anon_sym_unsafe = 110, + anon_sym_use = 111, + anon_sym_where = 112, + anon_sym_while = 113, + anon_sym_extern = 114, + anon_sym_ref = 115, + anon_sym_else = 116, + anon_sym_in = 117, + anon_sym_LT2 = 118, + anon_sym_dyn = 119, + sym_mutable_specifier = 120, + anon_sym_yield = 121, + anon_sym_move = 122, + anon_sym_try = 123, + sym_integer_literal = 124, + aux_sym_string_literal_token1 = 125, + anon_sym_DQUOTE = 126, + sym_char_literal = 127, + sym_escape_sequence = 128, + anon_sym_true = 129, + anon_sym_false = 130, + anon_sym_SLASH_SLASH = 131, + aux_sym_line_comment_token1 = 132, + aux_sym_line_comment_token2 = 133, + aux_sym_line_comment_token3 = 134, + anon_sym_BANG2 = 135, + anon_sym_SLASH2 = 136, + anon_sym_SLASH_STAR = 137, + anon_sym_STAR_SLASH = 138, + sym_shebang = 139, + sym_self = 140, + sym_super = 141, + sym_crate = 142, + sym_metavariable = 143, + sym_string_content = 144, + sym__raw_string_literal_start = 145, + sym_raw_string_literal_content = 146, + sym__raw_string_literal_end = 147, + sym_float_literal = 148, + sym__outer_block_doc_comment_marker = 149, + sym__inner_block_doc_comment_marker = 150, + sym__block_comment_content = 151, + sym__line_doc_content = 152, + sym__error_sentinel = 153, + sym_source_file = 154, + sym__statement = 155, + sym_empty_statement = 156, + sym_expression_statement = 157, + sym_macro_definition = 158, + sym_macro_rule = 159, + sym__token_pattern = 160, + sym_token_tree_pattern = 161, + sym_token_binding_pattern = 162, + sym_token_repetition_pattern = 163, + sym_fragment_specifier = 164, + sym_token_tree = 165, + sym_token_repetition = 166, + sym_attribute_item = 167, + sym_inner_attribute_item = 168, + sym_attribute = 169, + sym_mod_item = 170, + sym_foreign_mod_item = 171, + sym_declaration_list = 172, + sym_struct_item = 173, + sym_union_item = 174, + sym_enum_item = 175, + sym_enum_variant_list = 176, + sym_enum_variant = 177, + sym_field_declaration_list = 178, + sym_field_declaration = 179, + sym_ordered_field_declaration_list = 180, + sym_extern_crate_declaration = 181, + sym_const_item = 182, + sym_static_item = 183, + sym_type_item = 184, + sym_function_item = 185, + sym_function_signature_item = 186, + sym_function_modifiers = 187, + sym_where_clause = 188, + sym_where_predicate = 189, + sym_impl_item = 190, + sym_trait_item = 191, + sym_associated_type = 192, + sym_trait_bounds = 193, + sym_higher_ranked_trait_bound = 194, + sym_removed_trait_bound = 195, + sym_type_parameters = 196, + sym_const_parameter = 197, + sym_constrained_type_parameter = 198, + sym_optional_type_parameter = 199, + sym_let_declaration = 200, + sym_use_declaration = 201, + sym__use_clause = 202, + sym_scoped_use_list = 203, + sym_use_list = 204, + sym_use_as_clause = 205, + sym_use_wildcard = 206, + sym_parameters = 207, + sym_self_parameter = 208, + sym_variadic_parameter = 209, + sym_parameter = 210, + sym_extern_modifier = 211, + sym_visibility_modifier = 212, + sym__type = 213, + sym_bracketed_type = 214, + sym_qualified_type = 215, + sym_lifetime = 216, + sym_array_type = 217, + sym_for_lifetimes = 218, + sym_function_type = 219, + sym_tuple_type = 220, + sym_unit_type = 221, + sym_generic_function = 222, + sym_generic_type = 223, + sym_generic_type_with_turbofish = 224, + sym_bounded_type = 225, + sym_type_arguments = 226, + sym_type_binding = 227, + sym_reference_type = 228, + sym_pointer_type = 229, + sym_never_type = 230, + sym_abstract_type = 231, + sym_dynamic_type = 232, + sym__expression_except_range = 233, + sym__expression = 234, + sym_macro_invocation = 235, + sym_delim_token_tree = 236, + sym__delim_tokens = 237, + sym__non_delim_token = 238, + sym_scoped_identifier = 239, + sym_scoped_type_identifier_in_expression_position = 240, + sym_scoped_type_identifier = 241, + sym_range_expression = 242, + sym_unary_expression = 243, + sym_try_expression = 244, + sym_reference_expression = 245, + sym_binary_expression = 246, + sym_assignment_expression = 247, + sym_compound_assignment_expr = 248, + sym_type_cast_expression = 249, + sym_return_expression = 250, + sym_yield_expression = 251, + sym_call_expression = 252, + sym_arguments = 253, + sym_array_expression = 254, + sym_parenthesized_expression = 255, + sym_tuple_expression = 256, + sym_unit_expression = 257, + sym_struct_expression = 258, + sym_field_initializer_list = 259, + sym_shorthand_field_initializer = 260, + sym_field_initializer = 261, + sym_base_field_initializer = 262, + sym_if_expression = 263, + sym_let_condition = 264, + sym__let_chain = 265, + sym__condition = 266, + sym_else_clause = 267, + sym_match_expression = 268, + sym_match_block = 269, + sym_match_arm = 270, + sym_last_match_arm = 271, + sym_match_pattern = 272, + sym_while_expression = 273, + sym_loop_expression = 274, + sym_for_expression = 275, + sym_const_block = 276, + sym_closure_expression = 277, + sym_closure_parameters = 278, + sym_label = 279, + sym_break_expression = 280, + sym_continue_expression = 281, + sym_index_expression = 282, + sym_await_expression = 283, + sym_field_expression = 284, + sym_unsafe_block = 285, + sym_async_block = 286, + sym_gen_block = 287, + sym_try_block = 288, + sym_block = 289, + sym__pattern = 290, + sym_tuple_pattern = 291, + sym_slice_pattern = 292, + sym_tuple_struct_pattern = 293, + sym_struct_pattern = 294, + sym_field_pattern = 295, + sym_remaining_field_pattern = 296, + sym_mut_pattern = 297, + sym_range_pattern = 298, + sym_ref_pattern = 299, + sym_captured_pattern = 300, + sym_reference_pattern = 301, + sym_or_pattern = 302, + sym__literal = 303, + sym__literal_pattern = 304, + sym_negative_literal = 305, + sym_string_literal = 306, + sym_raw_string_literal = 307, + sym_boolean_literal = 308, + sym_line_comment = 309, + sym__line_doc_comment_marker = 310, + sym__inner_line_doc_comment_marker = 311, + sym__outer_line_doc_comment_marker = 312, + sym_block_comment = 313, + sym__block_doc_comment_marker = 314, + aux_sym_source_file_repeat1 = 315, + aux_sym_macro_definition_repeat1 = 316, + aux_sym_token_tree_pattern_repeat1 = 317, + aux_sym_token_tree_repeat1 = 318, + aux_sym__non_special_token_repeat1 = 319, + aux_sym_declaration_list_repeat1 = 320, + aux_sym_enum_variant_list_repeat1 = 321, + aux_sym_enum_variant_list_repeat2 = 322, + aux_sym_field_declaration_list_repeat1 = 323, + aux_sym_ordered_field_declaration_list_repeat1 = 324, + aux_sym_function_modifiers_repeat1 = 325, + aux_sym_where_clause_repeat1 = 326, + aux_sym_trait_bounds_repeat1 = 327, + aux_sym_type_parameters_repeat1 = 328, + aux_sym_use_list_repeat1 = 329, + aux_sym_parameters_repeat1 = 330, + aux_sym_for_lifetimes_repeat1 = 331, + aux_sym_tuple_type_repeat1 = 332, + aux_sym_type_arguments_repeat1 = 333, + aux_sym_delim_token_tree_repeat1 = 334, + aux_sym_arguments_repeat1 = 335, + aux_sym_tuple_expression_repeat1 = 336, + aux_sym_field_initializer_list_repeat1 = 337, + aux_sym_match_block_repeat1 = 338, + aux_sym_match_arm_repeat1 = 339, + aux_sym_closure_parameters_repeat1 = 340, + aux_sym_tuple_pattern_repeat1 = 341, + aux_sym_slice_pattern_repeat1 = 342, + aux_sym_struct_pattern_repeat1 = 343, + aux_sym_string_literal_repeat1 = 344, + alias_sym_field_identifier = 345, + alias_sym_let_chain = 346, + alias_sym_shorthand_field_identifier = 347, + alias_sym_type_identifier = 348, }; static const char * const ts_symbol_names[] = { @@ -461,6 +463,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_enum] = "enum", [anon_sym_fn] = "fn", [anon_sym_for] = "for", + [anon_sym_gen] = "gen", [anon_sym_if] = "if", [anon_sym_impl] = "impl", [anon_sym_let] = "let", @@ -651,6 +654,7 @@ static const char * const ts_symbol_names[] = { [sym_field_expression] = "field_expression", [sym_unsafe_block] = "unsafe_block", [sym_async_block] = "async_block", + [sym_gen_block] = "gen_block", [sym_try_block] = "try_block", [sym_block] = "block", [sym__pattern] = "_pattern", @@ -811,6 +815,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_enum] = anon_sym_enum, [anon_sym_fn] = anon_sym_fn, [anon_sym_for] = anon_sym_for, + [anon_sym_gen] = anon_sym_gen, [anon_sym_if] = anon_sym_if, [anon_sym_impl] = anon_sym_impl, [anon_sym_let] = anon_sym_let, @@ -1001,6 +1006,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_field_expression] = sym_field_expression, [sym_unsafe_block] = sym_unsafe_block, [sym_async_block] = sym_async_block, + [sym_gen_block] = sym_gen_block, [sym_try_block] = sym_try_block, [sym_block] = sym_block, [sym__pattern] = sym__pattern, @@ -1449,6 +1455,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_gen] = { + .visible = true, + .named = false, + }, [anon_sym_if] = { .visible = true, .named = false, @@ -2211,6 +2221,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_gen_block] = { + .visible = true, + .named = true, + }, [sym_try_block] = { .visible = true, .named = true, @@ -3875,147 +3889,147 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 3, - [10] = 2, - [11] = 5, - [12] = 6, + [10] = 4, + [11] = 11, + [12] = 7, [13] = 8, [14] = 3, - [15] = 2, - [16] = 5, - [17] = 6, + [15] = 4, + [16] = 11, + [17] = 8, [18] = 3, - [19] = 2, - [20] = 5, - [21] = 6, + [19] = 4, + [20] = 11, + [21] = 8, [22] = 3, - [23] = 2, - [24] = 5, - [25] = 6, + [23] = 4, + [24] = 11, + [25] = 8, [26] = 3, - [27] = 2, - [28] = 5, - [29] = 6, + [27] = 4, + [28] = 11, + [29] = 8, [30] = 3, - [31] = 2, - [32] = 5, - [33] = 6, - [34] = 34, + [31] = 4, + [32] = 11, + [33] = 8, + [34] = 11, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 38, - [40] = 36, - [41] = 41, + [39] = 37, + [40] = 40, + [41] = 38, [42] = 42, [43] = 35, [44] = 35, - [45] = 42, - [46] = 37, - [47] = 41, - [48] = 38, - [49] = 36, - [50] = 38, - [51] = 36, - [52] = 35, - [53] = 42, - [54] = 37, - [55] = 36, + [45] = 35, + [46] = 36, + [47] = 42, + [48] = 37, + [49] = 38, + [50] = 37, + [51] = 40, + [52] = 38, + [53] = 36, + [54] = 42, + [55] = 37, [56] = 36, - [57] = 38, - [58] = 36, - [59] = 37, + [57] = 42, + [58] = 40, + [59] = 40, [60] = 38, - [61] = 36, + [61] = 37, [62] = 38, [63] = 38, - [64] = 41, - [65] = 41, - [66] = 42, + [64] = 38, + [65] = 37, + [66] = 37, [67] = 67, [68] = 68, [69] = 69, - [70] = 68, - [71] = 69, + [70] = 70, + [71] = 71, [72] = 72, [73] = 73, [74] = 74, - [75] = 75, - [76] = 75, - [77] = 72, - [78] = 73, - [79] = 74, - [80] = 80, - [81] = 81, + [75] = 74, + [76] = 76, + [77] = 69, + [78] = 76, + [79] = 70, + [80] = 71, + [81] = 72, [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, [87] = 87, - [88] = 88, + [88] = 84, [89] = 89, [90] = 90, [91] = 91, - [92] = 92, + [92] = 85, [93] = 93, - [94] = 84, - [95] = 89, - [96] = 96, - [97] = 96, - [98] = 93, + [94] = 94, + [95] = 86, + [96] = 90, + [97] = 91, + [98] = 98, [99] = 99, [100] = 100, - [101] = 101, - [102] = 85, - [103] = 86, - [104] = 87, - [105] = 91, - [106] = 92, - [107] = 84, - [108] = 84, - [109] = 89, - [110] = 96, - [111] = 91, - [112] = 92, - [113] = 93, - [114] = 84, - [115] = 89, - [116] = 96, - [117] = 91, - [118] = 92, - [119] = 93, - [120] = 84, + [101] = 87, + [102] = 84, + [103] = 89, + [104] = 98, + [105] = 99, + [106] = 100, + [107] = 94, + [108] = 99, + [109] = 100, + [110] = 87, + [111] = 84, + [112] = 89, + [113] = 113, + [114] = 98, + [115] = 99, + [116] = 100, + [117] = 87, + [118] = 87, + [119] = 84, + [120] = 89, [121] = 89, - [122] = 96, - [123] = 91, - [124] = 92, - [125] = 91, - [126] = 92, - [127] = 93, + [122] = 98, + [123] = 99, + [124] = 100, + [125] = 93, + [126] = 87, + [127] = 84, [128] = 89, - [129] = 96, + [129] = 98, [130] = 99, [131] = 100, - [132] = 101, - [133] = 93, + [132] = 132, + [133] = 98, [134] = 134, [135] = 135, - [136] = 136, + [136] = 135, [137] = 137, - [138] = 138, + [138] = 134, [139] = 139, [140] = 140, - [141] = 141, + [141] = 137, [142] = 142, - [143] = 143, + [143] = 139, [144] = 144, - [145] = 140, + [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, - [150] = 134, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, @@ -4023,96 +4037,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [155] = 155, [156] = 156, [157] = 157, - [158] = 155, + [158] = 158, [159] = 159, [160] = 160, - [161] = 146, + [161] = 161, [162] = 162, - [163] = 151, + [163] = 163, [164] = 164, [165] = 165, [166] = 166, - [167] = 167, + [167] = 149, [168] = 168, [169] = 169, - [170] = 170, - [171] = 171, - [172] = 170, - [173] = 156, + [170] = 156, + [171] = 169, + [172] = 172, + [173] = 173, [174] = 174, - [175] = 167, - [176] = 138, - [177] = 141, - [178] = 142, + [175] = 175, + [176] = 176, + [177] = 146, + [178] = 172, [179] = 179, [180] = 180, [181] = 181, - [182] = 174, - [183] = 183, - [184] = 184, + [182] = 182, + [183] = 174, + [184] = 144, [185] = 185, - [186] = 171, - [187] = 187, - [188] = 188, - [189] = 169, - [190] = 179, - [191] = 188, - [192] = 192, - [193] = 193, - [194] = 192, - [195] = 195, - [196] = 196, + [186] = 175, + [187] = 176, + [188] = 182, + [189] = 161, + [190] = 149, + [191] = 182, + [192] = 161, + [193] = 149, + [194] = 182, + [195] = 168, + [196] = 161, [197] = 197, - [198] = 193, - [199] = 195, - [200] = 196, - [201] = 169, - [202] = 170, - [203] = 187, - [204] = 174, - [205] = 170, - [206] = 174, - [207] = 169, - [208] = 137, - [209] = 209, + [198] = 164, + [199] = 199, + [200] = 200, + [201] = 145, + [202] = 162, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 163, + [208] = 208, + [209] = 166, [210] = 210, - [211] = 211, - [212] = 212, - [213] = 209, - [214] = 212, + [211] = 208, + [212] = 206, + [213] = 213, + [214] = 165, [215] = 215, [216] = 216, [217] = 217, [218] = 218, [219] = 219, - [220] = 220, - [221] = 218, - [222] = 222, + [220] = 216, + [221] = 217, + [222] = 219, [223] = 223, [224] = 217, [225] = 225, - [226] = 223, - [227] = 219, - [228] = 217, - [229] = 229, - [230] = 220, - [231] = 217, - [232] = 225, - [233] = 220, - [234] = 220, - [235] = 225, - [236] = 225, - [237] = 220, - [238] = 215, - [239] = 217, + [226] = 226, + [227] = 227, + [228] = 218, + [229] = 225, + [230] = 230, + [231] = 226, + [232] = 216, + [233] = 217, + [234] = 230, + [235] = 223, + [236] = 223, + [237] = 215, + [238] = 216, + [239] = 223, [240] = 216, - [241] = 225, - [242] = 229, + [241] = 217, + [242] = 223, [243] = 243, - [244] = 244, + [244] = 243, [245] = 243, [246] = 243, - [247] = 243, + [247] = 247, [248] = 248, [249] = 249, [250] = 250, @@ -4121,132 +4135,132 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [253] = 253, [254] = 254, [255] = 255, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, + [256] = 250, + [257] = 251, + [258] = 252, + [259] = 253, + [260] = 254, + [261] = 255, [262] = 262, - [263] = 263, + [263] = 255, [264] = 264, - [265] = 264, - [266] = 266, - [267] = 267, + [265] = 265, + [266] = 255, + [267] = 250, [268] = 268, - [269] = 249, - [270] = 250, - [271] = 251, - [272] = 252, - [273] = 253, - [274] = 254, - [275] = 255, - [276] = 256, - [277] = 258, + [269] = 255, + [270] = 255, + [271] = 255, + [272] = 272, + [273] = 273, + [274] = 273, + [275] = 251, + [276] = 252, + [277] = 253, [278] = 278, - [279] = 279, - [280] = 266, - [281] = 267, - [282] = 268, - [283] = 258, - [284] = 249, - [285] = 250, - [286] = 258, - [287] = 251, - [288] = 252, - [289] = 258, - [290] = 258, - [291] = 253, - [292] = 254, - [293] = 257, - [294] = 255, - [295] = 295, - [296] = 296, - [297] = 256, + [279] = 273, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 247, + [286] = 286, + [287] = 287, + [288] = 268, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 272, + [294] = 294, + [295] = 248, + [296] = 249, + [297] = 297, [298] = 298, - [299] = 299, - [300] = 258, - [301] = 301, - [302] = 302, - [303] = 266, - [304] = 267, - [305] = 268, - [306] = 249, - [307] = 295, - [308] = 308, - [309] = 309, - [310] = 257, + [299] = 250, + [300] = 273, + [301] = 251, + [302] = 252, + [303] = 253, + [304] = 254, + [305] = 305, + [306] = 255, + [307] = 249, + [308] = 268, + [309] = 254, + [310] = 310, [311] = 311, - [312] = 268, + [312] = 312, [313] = 313, - [314] = 250, - [315] = 251, + [314] = 314, + [315] = 315, [316] = 316, [317] = 317, - [318] = 318, - [319] = 264, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 252, - [326] = 253, - [327] = 254, - [328] = 255, - [329] = 256, + [318] = 289, + [319] = 319, + [320] = 289, + [321] = 290, + [322] = 291, + [323] = 292, + [324] = 248, + [325] = 290, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, [330] = 330, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, + [331] = 247, + [332] = 291, + [333] = 311, + [334] = 287, [335] = 335, - [336] = 336, - [337] = 258, - [338] = 338, - [339] = 257, - [340] = 340, - [341] = 264, - [342] = 342, - [343] = 302, - [344] = 340, - [345] = 345, - [346] = 248, - [347] = 347, - [348] = 260, - [349] = 262, - [350] = 296, - [351] = 313, - [352] = 317, - [353] = 320, - [354] = 324, - [355] = 332, - [356] = 334, - [357] = 335, - [358] = 301, - [359] = 311, - [360] = 342, - [361] = 345, - [362] = 262, - [363] = 324, - [364] = 345, - [365] = 342, - [366] = 266, - [367] = 345, - [368] = 267, - [369] = 324, - [370] = 342, + [336] = 305, + [337] = 337, + [338] = 292, + [339] = 268, + [340] = 280, + [341] = 281, + [342] = 294, + [343] = 310, + [344] = 313, + [345] = 315, + [346] = 319, + [347] = 328, + [348] = 335, + [349] = 349, + [350] = 286, + [351] = 264, + [352] = 337, + [353] = 247, + [354] = 248, + [355] = 305, + [356] = 249, + [357] = 281, + [358] = 319, + [359] = 289, + [360] = 290, + [361] = 291, + [362] = 305, + [363] = 292, + [364] = 319, + [365] = 349, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, [371] = 371, [372] = 372, [373] = 373, - [374] = 181, - [375] = 180, + [374] = 374, + [375] = 199, [376] = 376, [377] = 377, - [378] = 371, + [378] = 378, [379] = 379, [380] = 380, - [381] = 381, + [381] = 213, [382] = 382, [383] = 383, [384] = 384, @@ -4255,95 +4269,95 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [387] = 387, [388] = 388, [389] = 389, - [390] = 373, + [390] = 390, [391] = 391, [392] = 392, [393] = 393, [394] = 394, [395] = 395, - [396] = 373, - [397] = 397, - [398] = 371, + [396] = 396, + [397] = 396, + [398] = 396, [399] = 399, - [400] = 400, - [401] = 400, - [402] = 402, - [403] = 402, - [404] = 395, + [400] = 399, + [401] = 399, + [402] = 387, + [403] = 403, + [404] = 404, [405] = 405, [406] = 405, - [407] = 400, - [408] = 405, - [409] = 402, - [410] = 410, - [411] = 411, - [412] = 410, - [413] = 410, - [414] = 414, - [415] = 415, - [416] = 414, - [417] = 414, - [418] = 418, - [419] = 419, + [407] = 405, + [408] = 404, + [409] = 403, + [410] = 404, + [411] = 403, + [412] = 412, + [413] = 413, + [414] = 412, + [415] = 412, + [416] = 416, + [417] = 417, + [418] = 417, + [419] = 417, [420] = 420, [421] = 421, [422] = 422, - [423] = 421, - [424] = 422, - [425] = 419, - [426] = 421, - [427] = 420, - [428] = 420, - [429] = 429, - [430] = 429, - [431] = 431, - [432] = 432, + [423] = 422, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 424, + [428] = 425, + [429] = 424, + [430] = 426, + [431] = 426, + [432] = 421, [433] = 433, [434] = 434, [435] = 435, - [436] = 433, - [437] = 434, - [438] = 434, - [439] = 433, - [440] = 435, - [441] = 435, - [442] = 442, - [443] = 443, - [444] = 443, - [445] = 443, - [446] = 244, - [447] = 338, - [448] = 347, - [449] = 261, - [450] = 323, - [451] = 336, - [452] = 379, - [453] = 394, - [454] = 381, - [455] = 385, + [436] = 436, + [437] = 435, + [438] = 435, + [439] = 436, + [440] = 440, + [441] = 440, + [442] = 436, + [443] = 440, + [444] = 444, + [445] = 445, + [446] = 445, + [447] = 445, + [448] = 330, + [449] = 370, + [450] = 369, + [451] = 368, + [452] = 366, + [453] = 367, + [454] = 395, + [455] = 380, [456] = 456, - [457] = 377, - [458] = 458, - [459] = 456, - [460] = 388, - [461] = 456, - [462] = 380, - [463] = 389, - [464] = 464, - [465] = 384, - [466] = 392, - [467] = 399, - [468] = 383, - [469] = 376, - [470] = 386, - [471] = 387, - [472] = 456, - [473] = 382, - [474] = 393, - [475] = 475, - [476] = 475, - [477] = 475, - [478] = 475, + [457] = 392, + [458] = 390, + [459] = 372, + [460] = 386, + [461] = 388, + [462] = 462, + [463] = 382, + [464] = 389, + [465] = 465, + [466] = 462, + [467] = 383, + [468] = 376, + [469] = 462, + [470] = 373, + [471] = 462, + [472] = 379, + [473] = 384, + [474] = 371, + [475] = 394, + [476] = 393, + [477] = 374, + [478] = 378, [479] = 479, [480] = 480, [481] = 481, @@ -4499,7 +4513,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [631] = 631, [632] = 632, [633] = 633, - [634] = 634, + [634] = 370, [635] = 635, [636] = 636, [637] = 637, @@ -4513,10 +4527,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [645] = 645, [646] = 646, [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, + [648] = 369, + [649] = 367, + [650] = 366, + [651] = 368, [652] = 652, [653] = 653, [654] = 654, @@ -4528,16 +4542,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [660] = 660, [661] = 661, [662] = 662, - [663] = 347, + [663] = 663, [664] = 664, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 338, - [670] = 261, - [671] = 323, - [672] = 336, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, [673] = 673, [674] = 674, [675] = 675, @@ -4555,7 +4569,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [687] = 687, [688] = 688, [689] = 689, - [690] = 654, + [690] = 690, [691] = 691, [692] = 692, [693] = 693, @@ -4563,7 +4577,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 646, + [698] = 698, [699] = 699, [700] = 700, [701] = 701, @@ -4603,7 +4617,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [735] = 735, [736] = 736, [737] = 737, - [738] = 738, + [738] = 613, [739] = 739, [740] = 740, [741] = 741, @@ -4611,26 +4625,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [743] = 743, [744] = 744, [745] = 745, - [746] = 746, + [746] = 613, [747] = 747, - [748] = 748, + [748] = 613, [749] = 749, [750] = 750, [751] = 751, [752] = 752, [753] = 753, [754] = 754, - [755] = 754, - [756] = 756, - [757] = 756, + [755] = 755, + [756] = 754, + [757] = 755, [758] = 758, - [759] = 759, + [759] = 758, [760] = 760, - [761] = 760, + [761] = 761, [762] = 762, [763] = 763, - [764] = 764, - [765] = 765, + [764] = 763, + [765] = 760, [766] = 766, [767] = 767, [768] = 768, @@ -4640,99 +4654,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [772] = 772, [773] = 773, [774] = 774, - [775] = 771, + [775] = 775, [776] = 776, [777] = 777, - [778] = 776, - [779] = 773, + [778] = 778, + [779] = 779, [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, + [781] = 779, + [782] = 777, + [783] = 776, [784] = 784, - [785] = 782, + [785] = 785, [786] = 786, [787] = 787, [788] = 788, [789] = 789, - [790] = 784, - [791] = 786, - [792] = 787, - [793] = 788, - [794] = 789, + [790] = 790, + [791] = 791, + [792] = 784, + [793] = 793, + [794] = 786, [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 799, + [796] = 785, + [797] = 791, + [798] = 793, + [799] = 790, [800] = 800, [801] = 801, [802] = 802, - [803] = 803, - [804] = 796, + [803] = 802, + [804] = 804, [805] = 805, [806] = 806, [807] = 807, - [808] = 808, - [809] = 801, + [808] = 800, + [809] = 806, [810] = 810, - [811] = 811, + [811] = 810, [812] = 812, - [813] = 802, - [814] = 814, + [813] = 813, + [814] = 804, [815] = 815, - [816] = 805, - [817] = 807, - [818] = 799, - [819] = 800, - [820] = 814, - [821] = 812, - [822] = 798, - [823] = 810, - [824] = 815, - [825] = 796, - [826] = 798, - [827] = 796, - [828] = 798, - [829] = 829, - [830] = 830, - [831] = 830, - [832] = 830, - [833] = 830, - [834] = 834, + [816] = 816, + [817] = 817, + [818] = 805, + [819] = 815, + [820] = 820, + [821] = 816, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 807, + [826] = 813, + [827] = 812, + [828] = 824, + [829] = 815, + [830] = 824, + [831] = 815, + [832] = 824, + [833] = 833, + [834] = 833, [835] = 835, - [836] = 836, - [837] = 837, - [838] = 837, - [839] = 834, - [840] = 840, + [836] = 833, + [837] = 833, + [838] = 838, + [839] = 839, + [840] = 593, [841] = 841, [842] = 842, - [843] = 843, + [843] = 839, [844] = 844, - [845] = 841, + [845] = 845, [846] = 846, - [847] = 837, + [847] = 839, [848] = 848, - [849] = 849, - [850] = 837, - [851] = 834, - [852] = 836, - [853] = 848, - [854] = 835, - [855] = 835, + [849] = 845, + [850] = 842, + [851] = 851, + [852] = 842, + [853] = 853, + [854] = 854, + [855] = 839, [856] = 856, - [857] = 836, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, + [857] = 857, + [858] = 856, + [859] = 851, + [860] = 844, + [861] = 856, + [862] = 845, [863] = 863, [864] = 864, - [865] = 859, - [866] = 860, - [867] = 861, + [865] = 865, + [866] = 866, + [867] = 867, [868] = 868, [869] = 869, [870] = 870, @@ -4740,7 +4754,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [872] = 872, [873] = 873, [874] = 874, - [875] = 875, + [875] = 863, [876] = 876, [877] = 877, [878] = 878, @@ -4757,180 +4771,180 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [889] = 889, [890] = 890, [891] = 891, - [892] = 892, - [893] = 863, + [892] = 888, + [893] = 890, [894] = 894, - [895] = 864, + [895] = 895, [896] = 896, - [897] = 859, + [897] = 887, [898] = 898, [899] = 899, - [900] = 860, + [900] = 900, [901] = 901, - [902] = 890, + [902] = 902, [903] = 903, - [904] = 886, - [905] = 889, + [904] = 902, + [905] = 905, [906] = 906, - [907] = 861, - [908] = 656, + [907] = 907, + [908] = 908, [909] = 909, [910] = 910, - [911] = 863, - [912] = 859, - [913] = 898, + [911] = 911, + [912] = 912, + [913] = 913, [914] = 914, [915] = 915, [916] = 916, - [917] = 868, - [918] = 869, - [919] = 880, - [920] = 870, - [921] = 921, - [922] = 871, - [923] = 923, - [924] = 896, - [925] = 886, - [926] = 868, - [927] = 869, - [928] = 870, + [917] = 917, + [918] = 916, + [919] = 919, + [920] = 888, + [921] = 890, + [922] = 919, + [923] = 902, + [924] = 924, + [925] = 885, + [926] = 926, + [927] = 927, + [928] = 928, [929] = 929, - [930] = 896, + [930] = 930, [931] = 931, [932] = 932, - [933] = 933, + [933] = 883, [934] = 934, - [935] = 935, + [935] = 924, [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 871, - [941] = 941, - [942] = 942, + [937] = 905, + [938] = 928, + [939] = 882, + [940] = 886, + [941] = 914, + [942] = 927, [943] = 943, [944] = 944, - [945] = 901, + [945] = 896, [946] = 946, - [947] = 890, - [948] = 929, - [949] = 949, - [950] = 935, - [951] = 914, - [952] = 952, - [953] = 953, - [954] = 939, - [955] = 946, - [956] = 903, - [957] = 862, - [958] = 932, - [959] = 938, - [960] = 960, - [961] = 961, - [962] = 858, - [963] = 872, - [964] = 873, - [965] = 874, - [966] = 877, - [967] = 879, - [968] = 881, - [969] = 883, - [970] = 884, - [971] = 891, - [972] = 899, - [973] = 909, + [947] = 888, + [948] = 890, + [949] = 867, + [950] = 876, + [951] = 877, + [952] = 881, + [953] = 891, + [954] = 903, + [955] = 943, + [956] = 906, + [957] = 907, + [958] = 868, + [959] = 878, + [960] = 884, + [961] = 887, + [962] = 962, + [963] = 871, + [964] = 872, + [965] = 944, + [966] = 889, + [967] = 899, + [968] = 908, + [969] = 909, + [970] = 910, + [971] = 911, + [972] = 917, + [973] = 926, [974] = 974, - [975] = 931, - [976] = 936, - [977] = 937, - [978] = 941, - [979] = 863, - [980] = 960, - [981] = 961, - [982] = 974, - [983] = 983, + [975] = 930, + [976] = 864, + [977] = 870, + [978] = 916, + [979] = 931, + [980] = 919, + [981] = 874, + [982] = 901, + [983] = 924, [984] = 984, - [985] = 887, - [986] = 888, - [987] = 892, - [988] = 915, - [989] = 933, - [990] = 990, - [991] = 944, - [992] = 983, - [993] = 929, - [994] = 984, - [995] = 901, - [996] = 952, - [997] = 864, - [998] = 901, - [999] = 890, - [1000] = 880, - [1001] = 953, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 656, + [985] = 985, + [986] = 928, + [987] = 934, + [988] = 934, + [989] = 927, + [990] = 984, + [991] = 991, + [992] = 974, + [993] = 930, + [994] = 994, + [995] = 885, + [996] = 864, + [997] = 997, + [998] = 869, + [999] = 916, + [1000] = 929, + [1001] = 924, + [1002] = 932, + [1003] = 869, + [1004] = 962, + [1005] = 974, + [1006] = 946, + [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, - [1011] = 1011, + [1011] = 593, [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 336, + [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 261, - [1019] = 180, - [1020] = 323, - [1021] = 1021, + [1018] = 1018, + [1019] = 1019, + [1020] = 369, + [1021] = 213, [1022] = 1022, - [1023] = 181, - [1024] = 1024, - [1025] = 397, - [1026] = 372, - [1027] = 347, + [1023] = 1023, + [1024] = 391, + [1025] = 1025, + [1026] = 368, + [1027] = 366, [1028] = 1028, - [1029] = 1029, - [1030] = 338, + [1029] = 199, + [1030] = 1030, [1031] = 1031, - [1032] = 1032, + [1032] = 385, [1033] = 1033, - [1034] = 1034, - [1035] = 723, - [1036] = 1036, - [1037] = 504, - [1038] = 673, - [1039] = 562, + [1034] = 367, + [1035] = 370, + [1036] = 508, + [1037] = 1037, + [1038] = 614, + [1039] = 1039, [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 600, + [1041] = 547, + [1042] = 700, + [1043] = 1043, [1044] = 1044, [1045] = 1045, - [1046] = 1046, + [1046] = 622, [1047] = 1047, [1048] = 1048, [1049] = 1049, - [1050] = 244, + [1050] = 1050, [1051] = 1051, - [1052] = 1052, + [1052] = 913, [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, - [1057] = 1057, + [1057] = 1012, [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1054, - [1063] = 429, + [1062] = 1062, + [1063] = 330, [1064] = 1064, - [1065] = 1002, + [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, @@ -4939,1017 +4953,1017 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1068, + [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1054, - [1080] = 1008, + [1079] = 1079, + [1080] = 1080, [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 1068, + [1084] = 1084, [1085] = 1085, [1086] = 1086, - [1087] = 1087, - [1088] = 1088, + [1087] = 1086, + [1088] = 1085, [1089] = 1089, - [1090] = 1090, - [1091] = 380, - [1092] = 553, - [1093] = 554, - [1094] = 555, - [1095] = 556, - [1096] = 557, - [1097] = 558, - [1098] = 559, - [1099] = 560, - [1100] = 561, - [1101] = 532, - [1102] = 563, - [1103] = 564, - [1104] = 565, - [1105] = 566, - [1106] = 567, - [1107] = 568, - [1108] = 569, - [1109] = 570, - [1110] = 571, - [1111] = 572, - [1112] = 573, - [1113] = 574, - [1114] = 575, - [1115] = 576, - [1116] = 577, - [1117] = 578, - [1118] = 579, - [1119] = 580, - [1120] = 581, - [1121] = 582, - [1122] = 583, - [1123] = 584, - [1124] = 585, - [1125] = 586, - [1126] = 587, - [1127] = 394, - [1128] = 533, - [1129] = 534, - [1130] = 388, - [1131] = 589, - [1132] = 590, - [1133] = 591, - [1134] = 592, - [1135] = 593, - [1136] = 594, - [1137] = 595, - [1138] = 596, - [1139] = 597, - [1140] = 598, - [1141] = 599, - [1142] = 537, - [1143] = 601, - [1144] = 602, - [1145] = 603, - [1146] = 604, - [1147] = 605, - [1148] = 606, - [1149] = 607, - [1150] = 608, - [1151] = 609, - [1152] = 610, - [1153] = 611, - [1154] = 612, - [1155] = 613, - [1156] = 614, - [1157] = 615, - [1158] = 616, - [1159] = 617, - [1160] = 618, - [1161] = 619, - [1162] = 620, - [1163] = 621, - [1164] = 622, - [1165] = 623, - [1166] = 624, - [1167] = 626, - [1168] = 627, - [1169] = 628, - [1170] = 629, - [1171] = 630, - [1172] = 753, - [1173] = 632, - [1174] = 633, - [1175] = 634, - [1176] = 635, - [1177] = 636, - [1178] = 637, - [1179] = 639, - [1180] = 640, - [1181] = 641, - [1182] = 642, - [1183] = 1183, - [1184] = 540, - [1185] = 588, - [1186] = 1186, - [1187] = 479, - [1188] = 625, - [1189] = 1189, - [1190] = 638, - [1191] = 643, - [1192] = 1192, - [1193] = 1193, - [1194] = 644, - [1195] = 399, - [1196] = 372, - [1197] = 645, - [1198] = 138, - [1199] = 1199, - [1200] = 647, - [1201] = 648, - [1202] = 1202, - [1203] = 649, - [1204] = 650, - [1205] = 261, - [1206] = 384, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1009, - [1217] = 1217, - [1218] = 392, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 653, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 180, - [1232] = 658, - [1233] = 659, - [1234] = 660, - [1235] = 661, - [1236] = 662, - [1237] = 1237, - [1238] = 1238, - [1239] = 385, - [1240] = 664, + [1090] = 1085, + [1091] = 1086, + [1092] = 1092, + [1093] = 421, + [1094] = 1094, + [1095] = 1095, + [1096] = 382, + [1097] = 390, + [1098] = 694, + [1099] = 695, + [1100] = 699, + [1101] = 383, + [1102] = 735, + [1103] = 736, + [1104] = 740, + [1105] = 742, + [1106] = 750, + [1107] = 606, + [1108] = 618, + [1109] = 679, + [1110] = 376, + [1111] = 385, + [1112] = 737, + [1113] = 744, + [1114] = 745, + [1115] = 534, + [1116] = 545, + [1117] = 367, + [1118] = 372, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 668, + [1124] = 1124, + [1125] = 671, + [1126] = 1126, + [1127] = 1127, + [1128] = 164, + [1129] = 1129, + [1130] = 1130, + [1131] = 213, + [1132] = 596, + [1133] = 597, + [1134] = 598, + [1135] = 601, + [1136] = 603, + [1137] = 379, + [1138] = 604, + [1139] = 605, + [1140] = 610, + [1141] = 611, + [1142] = 612, + [1143] = 384, + [1144] = 1144, + [1145] = 615, + [1146] = 616, + [1147] = 617, + [1148] = 620, + [1149] = 621, + [1150] = 628, + [1151] = 629, + [1152] = 630, + [1153] = 631, + [1154] = 632, + [1155] = 633, + [1156] = 635, + [1157] = 636, + [1158] = 637, + [1159] = 638, + [1160] = 639, + [1161] = 640, + [1162] = 641, + [1163] = 642, + [1164] = 751, + [1165] = 644, + [1166] = 645, + [1167] = 646, + [1168] = 647, + [1169] = 393, + [1170] = 653, + [1171] = 658, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 370, + [1179] = 1179, + [1180] = 369, + [1181] = 1181, + [1182] = 665, + [1183] = 666, + [1184] = 199, + [1185] = 669, + [1186] = 672, + [1187] = 673, + [1188] = 674, + [1189] = 675, + [1190] = 676, + [1191] = 374, + [1192] = 378, + [1193] = 681, + [1194] = 682, + [1195] = 683, + [1196] = 684, + [1197] = 687, + [1198] = 688, + [1199] = 689, + [1200] = 692, + [1201] = 693, + [1202] = 380, + [1203] = 697, + [1204] = 1204, + [1205] = 705, + [1206] = 706, + [1207] = 707, + [1208] = 708, + [1209] = 709, + [1210] = 710, + [1211] = 711, + [1212] = 712, + [1213] = 713, + [1214] = 714, + [1215] = 715, + [1216] = 716, + [1217] = 717, + [1218] = 718, + [1219] = 719, + [1220] = 720, + [1221] = 721, + [1222] = 722, + [1223] = 723, + [1224] = 724, + [1225] = 725, + [1226] = 726, + [1227] = 727, + [1228] = 728, + [1229] = 729, + [1230] = 730, + [1231] = 731, + [1232] = 732, + [1233] = 733, + [1234] = 734, + [1235] = 366, + [1236] = 389, + [1237] = 739, + [1238] = 741, + [1239] = 1014, + [1240] = 1240, [1241] = 1241, - [1242] = 665, + [1242] = 1242, [1243] = 1243, - [1244] = 656, - [1245] = 666, - [1246] = 667, - [1247] = 668, - [1248] = 387, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 674, - [1253] = 675, - [1254] = 676, - [1255] = 677, - [1256] = 678, - [1257] = 1257, - [1258] = 679, - [1259] = 680, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 681, - [1264] = 1264, - [1265] = 682, - [1266] = 683, - [1267] = 684, - [1268] = 685, - [1269] = 382, - [1270] = 687, - [1271] = 688, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 689, - [1277] = 691, - [1278] = 1278, - [1279] = 693, - [1280] = 694, - [1281] = 695, - [1282] = 696, - [1283] = 697, - [1284] = 699, - [1285] = 700, - [1286] = 1286, - [1287] = 393, - [1288] = 1288, - [1289] = 701, - [1290] = 703, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 749, + [1248] = 743, + [1249] = 609, + [1250] = 480, + [1251] = 481, + [1252] = 482, + [1253] = 483, + [1254] = 505, + [1255] = 588, + [1256] = 589, + [1257] = 590, + [1258] = 591, + [1259] = 592, + [1260] = 594, + [1261] = 595, + [1262] = 599, + [1263] = 600, + [1264] = 602, + [1265] = 607, + [1266] = 608, + [1267] = 371, + [1268] = 619, + [1269] = 166, + [1270] = 623, + [1271] = 624, + [1272] = 625, + [1273] = 626, + [1274] = 627, + [1275] = 479, + [1276] = 654, + [1277] = 655, + [1278] = 656, + [1279] = 657, + [1280] = 661, + [1281] = 662, + [1282] = 663, + [1283] = 664, + [1284] = 670, + [1285] = 678, + [1286] = 680, + [1287] = 685, + [1288] = 686, + [1289] = 690, + [1290] = 691, + [1291] = 696, + [1292] = 698, + [1293] = 701, + [1294] = 702, + [1295] = 703, + [1296] = 704, + [1297] = 368, [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 655, - [1302] = 338, - [1303] = 1010, - [1304] = 1304, - [1305] = 1305, - [1306] = 704, - [1307] = 705, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 181, - [1312] = 706, - [1313] = 141, - [1314] = 707, - [1315] = 708, - [1316] = 709, - [1317] = 710, - [1318] = 711, - [1319] = 376, - [1320] = 1320, - [1321] = 377, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 712, + [1299] = 747, + [1300] = 643, + [1301] = 163, + [1302] = 1013, + [1303] = 1303, + [1304] = 484, + [1305] = 485, + [1306] = 486, + [1307] = 487, + [1308] = 488, + [1309] = 489, + [1310] = 490, + [1311] = 491, + [1312] = 492, + [1313] = 493, + [1314] = 494, + [1315] = 495, + [1316] = 496, + [1317] = 497, + [1318] = 498, + [1319] = 499, + [1320] = 500, + [1321] = 501, + [1322] = 502, + [1323] = 503, + [1324] = 504, + [1325] = 506, + [1326] = 507, [1327] = 1327, - [1328] = 713, - [1329] = 714, - [1330] = 715, - [1331] = 716, - [1332] = 717, - [1333] = 718, - [1334] = 719, - [1335] = 720, - [1336] = 379, - [1337] = 1337, - [1338] = 722, - [1339] = 724, - [1340] = 725, - [1341] = 726, - [1342] = 727, - [1343] = 728, - [1344] = 729, - [1345] = 730, - [1346] = 731, - [1347] = 732, - [1348] = 733, - [1349] = 734, - [1350] = 735, - [1351] = 736, - [1352] = 737, - [1353] = 1353, - [1354] = 738, - [1355] = 739, - [1356] = 740, - [1357] = 741, - [1358] = 742, - [1359] = 743, - [1360] = 744, - [1361] = 745, - [1362] = 746, - [1363] = 747, - [1364] = 748, - [1365] = 1365, - [1366] = 1366, + [1328] = 509, + [1329] = 510, + [1330] = 511, + [1331] = 512, + [1332] = 513, + [1333] = 514, + [1334] = 515, + [1335] = 516, + [1336] = 517, + [1337] = 518, + [1338] = 519, + [1339] = 520, + [1340] = 521, + [1341] = 522, + [1342] = 523, + [1343] = 524, + [1344] = 525, + [1345] = 526, + [1346] = 527, + [1347] = 528, + [1348] = 529, + [1349] = 530, + [1350] = 531, + [1351] = 532, + [1352] = 533, + [1353] = 392, + [1354] = 1354, + [1355] = 1355, + [1356] = 535, + [1357] = 536, + [1358] = 537, + [1359] = 538, + [1360] = 539, + [1361] = 540, + [1362] = 541, + [1363] = 542, + [1364] = 543, + [1365] = 544, + [1366] = 546, [1367] = 1367, - [1368] = 749, - [1369] = 1369, - [1370] = 750, - [1371] = 751, - [1372] = 752, - [1373] = 631, - [1374] = 702, - [1375] = 323, - [1376] = 383, - [1377] = 1377, - [1378] = 480, - [1379] = 481, - [1380] = 142, - [1381] = 381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 397, - [1388] = 1388, - [1389] = 1389, - [1390] = 503, - [1391] = 1391, - [1392] = 482, - [1393] = 1393, - [1394] = 483, - [1395] = 484, - [1396] = 485, - [1397] = 486, - [1398] = 487, - [1399] = 488, - [1400] = 489, - [1401] = 490, - [1402] = 491, - [1403] = 492, - [1404] = 493, - [1405] = 494, - [1406] = 495, - [1407] = 496, - [1408] = 497, - [1409] = 498, - [1410] = 499, - [1411] = 500, - [1412] = 501, - [1413] = 386, - [1414] = 502, - [1415] = 505, - [1416] = 506, - [1417] = 507, - [1418] = 347, + [1368] = 548, + [1369] = 549, + [1370] = 550, + [1371] = 551, + [1372] = 552, + [1373] = 553, + [1374] = 554, + [1375] = 555, + [1376] = 556, + [1377] = 557, + [1378] = 558, + [1379] = 559, + [1380] = 560, + [1381] = 561, + [1382] = 562, + [1383] = 563, + [1384] = 564, + [1385] = 565, + [1386] = 566, + [1387] = 567, + [1388] = 568, + [1389] = 569, + [1390] = 570, + [1391] = 571, + [1392] = 572, + [1393] = 573, + [1394] = 574, + [1395] = 575, + [1396] = 576, + [1397] = 577, + [1398] = 578, + [1399] = 579, + [1400] = 580, + [1401] = 581, + [1402] = 582, + [1403] = 583, + [1404] = 584, + [1405] = 585, + [1406] = 586, + [1407] = 587, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, [1419] = 1419, - [1420] = 508, - [1421] = 509, - [1422] = 510, - [1423] = 511, - [1424] = 512, - [1425] = 513, - [1426] = 514, - [1427] = 515, - [1428] = 516, - [1429] = 517, - [1430] = 518, - [1431] = 519, - [1432] = 520, - [1433] = 521, - [1434] = 522, - [1435] = 523, - [1436] = 524, - [1437] = 525, - [1438] = 526, - [1439] = 1439, - [1440] = 527, - [1441] = 528, - [1442] = 529, - [1443] = 530, - [1444] = 1444, - [1445] = 531, - [1446] = 336, - [1447] = 535, - [1448] = 536, - [1449] = 1449, - [1450] = 538, - [1451] = 1451, - [1452] = 539, - [1453] = 541, - [1454] = 389, - [1455] = 542, - [1456] = 1456, - [1457] = 543, - [1458] = 544, - [1459] = 545, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 165, + [1434] = 593, + [1435] = 652, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 162, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 373, + [1445] = 1445, + [1446] = 1446, + [1447] = 386, + [1448] = 1448, + [1449] = 394, + [1450] = 1450, + [1451] = 395, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 388, + [1457] = 391, + [1458] = 1458, + [1459] = 1459, [1460] = 1460, - [1461] = 546, - [1462] = 156, - [1463] = 167, - [1464] = 547, - [1465] = 548, - [1466] = 549, - [1467] = 550, - [1468] = 551, - [1469] = 552, - [1470] = 686, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 667, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, [1471] = 1471, - [1472] = 656, + [1472] = 1472, [1473] = 1473, - [1474] = 704, + [1474] = 1474, [1475] = 1475, - [1476] = 1003, + [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1479, + [1479] = 1007, [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 1483, - [1484] = 1040, + [1483] = 593, + [1484] = 665, [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 1489, + [1489] = 1040, [1490] = 1490, [1491] = 1491, - [1492] = 1011, + [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1491, + [1498] = 1015, [1499] = 1499, [1500] = 1500, [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1491, + [1502] = 1501, + [1503] = 1501, + [1504] = 1504, [1505] = 1505, - [1506] = 1013, - [1507] = 1040, - [1508] = 1014, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, [1509] = 1509, [1510] = 1510, - [1511] = 1040, - [1512] = 1512, - [1513] = 1012, - [1514] = 1510, - [1515] = 1512, - [1516] = 1089, + [1511] = 1511, + [1512] = 1040, + [1513] = 1018, + [1514] = 1040, + [1515] = 1515, + [1516] = 1515, [1517] = 1517, - [1518] = 1089, - [1519] = 1024, - [1520] = 1021, - [1521] = 1056, - [1522] = 1056, - [1523] = 1046, - [1524] = 1069, - [1525] = 1069, - [1526] = 1028, - [1527] = 1016, - [1528] = 1528, - [1529] = 1031, - [1530] = 1022, - [1531] = 1531, - [1532] = 1029, - [1533] = 1017, - [1534] = 1393, - [1535] = 1393, - [1536] = 1536, - [1537] = 1238, - [1538] = 1046, - [1539] = 1539, - [1540] = 1540, + [1518] = 1017, + [1519] = 1016, + [1520] = 1520, + [1521] = 1517, + [1522] = 1470, + [1523] = 1028, + [1524] = 1079, + [1525] = 1525, + [1526] = 1019, + [1527] = 1080, + [1528] = 1092, + [1529] = 1030, + [1530] = 1089, + [1531] = 1092, + [1532] = 1532, + [1533] = 1533, + [1534] = 1089, + [1535] = 1535, + [1536] = 1461, + [1537] = 1537, + [1538] = 1023, + [1539] = 1025, + [1540] = 1031, [1541] = 1541, - [1542] = 1045, - [1543] = 1543, - [1544] = 1045, - [1545] = 1036, - [1546] = 1393, - [1547] = 1033, - [1548] = 1238, - [1549] = 1549, - [1550] = 1072, - [1551] = 1551, - [1552] = 1377, - [1553] = 1478, - [1554] = 244, - [1555] = 1549, - [1556] = 1047, - [1557] = 1058, - [1558] = 1475, - [1559] = 1059, - [1560] = 1551, - [1561] = 1042, + [1542] = 1033, + [1543] = 1022, + [1544] = 1544, + [1545] = 1079, + [1546] = 1461, + [1547] = 1080, + [1548] = 1075, + [1549] = 1069, + [1550] = 1048, + [1551] = 1470, + [1552] = 1073, + [1553] = 1043, + [1554] = 1077, + [1555] = 330, + [1556] = 1556, + [1557] = 1408, + [1558] = 1048, + [1559] = 1559, + [1560] = 1560, + [1561] = 1559, [1562] = 1562, - [1563] = 1562, - [1564] = 1034, - [1565] = 1419, - [1566] = 1551, + [1563] = 1045, + [1564] = 1562, + [1565] = 1560, + [1566] = 1560, [1567] = 1562, - [1568] = 1419, - [1569] = 1543, - [1570] = 1377, - [1571] = 1551, - [1572] = 1562, - [1573] = 1496, - [1574] = 1574, - [1575] = 1489, - [1576] = 1576, - [1577] = 1499, - [1578] = 1576, - [1579] = 1482, - [1580] = 1486, - [1581] = 1048, - [1582] = 1071, - [1583] = 1075, - [1584] = 1044, - [1585] = 1505, - [1586] = 1064, - [1587] = 338, - [1588] = 1488, - [1589] = 1574, - [1590] = 1490, - [1591] = 1478, - [1592] = 1592, - [1593] = 1500, - [1594] = 1060, - [1595] = 261, - [1596] = 1076, - [1597] = 1088, - [1598] = 1085, - [1599] = 1057, - [1600] = 1051, - [1601] = 1502, - [1602] = 1087, - [1603] = 323, - [1604] = 1055, - [1605] = 1066, - [1606] = 1501, - [1607] = 1607, - [1608] = 1078, - [1609] = 336, - [1610] = 1610, - [1611] = 1053, - [1612] = 1090, - [1613] = 1592, - [1614] = 1086, - [1615] = 1494, - [1616] = 1503, - [1617] = 1081, - [1618] = 1592, - [1619] = 1497, - [1620] = 1073, - [1621] = 1052, - [1622] = 1083, - [1623] = 1049, - [1624] = 1061, - [1625] = 1483, - [1626] = 1067, - [1627] = 1493, - [1628] = 1628, - [1629] = 1495, - [1630] = 1485, - [1631] = 347, - [1632] = 1628, - [1633] = 1070, - [1634] = 1487, - [1635] = 1475, - [1636] = 1636, - [1637] = 1192, - [1638] = 1638, - [1639] = 1215, - [1640] = 1226, - [1641] = 1241, - [1642] = 1286, - [1643] = 1323, - [1644] = 1337, - [1645] = 1493, - [1646] = 1502, - [1647] = 1386, - [1648] = 1489, - [1649] = 1499, - [1650] = 1199, - [1651] = 1208, - [1652] = 1209, - [1653] = 1217, - [1654] = 1654, - [1655] = 1308, - [1656] = 1310, - [1657] = 1322, - [1658] = 1327, - [1659] = 1353, - [1660] = 1660, - [1661] = 1295, - [1662] = 1214, - [1663] = 1383, - [1664] = 1221, - [1665] = 1251, - [1666] = 1237, - [1667] = 1309, - [1668] = 1183, - [1669] = 1186, - [1670] = 1189, - [1671] = 1671, - [1672] = 1249, - [1673] = 1250, - [1674] = 1674, - [1675] = 1278, - [1676] = 1299, - [1677] = 1300, - [1678] = 1304, - [1679] = 1320, - [1680] = 1324, - [1681] = 1325, - [1682] = 1682, - [1683] = 1384, - [1684] = 1444, - [1685] = 1460, - [1686] = 1257, - [1687] = 1262, - [1688] = 1264, - [1689] = 1193, - [1690] = 1690, - [1691] = 1274, - [1692] = 1369, - [1693] = 1219, - [1694] = 1220, - [1695] = 1695, - [1696] = 1202, - [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1439, - [1701] = 1451, - [1702] = 1636, - [1703] = 1496, - [1704] = 1704, - [1705] = 1222, - [1706] = 1225, - [1707] = 1008, - [1708] = 1293, - [1709] = 1297, - [1710] = 1483, - [1711] = 1505, - [1712] = 1495, - [1713] = 1485, - [1714] = 1486, - [1715] = 1488, - [1716] = 1490, - [1717] = 1500, - [1718] = 1501, - [1719] = 1494, - [1720] = 1503, - [1721] = 1497, - [1722] = 1482, - [1723] = 1207, - [1724] = 1211, - [1725] = 1223, - [1726] = 1224, - [1727] = 1487, - [1728] = 1291, - [1729] = 1294, - [1730] = 1296, - [1731] = 1298, - [1732] = 1305, + [1568] = 1560, + [1569] = 1562, + [1570] = 1044, + [1571] = 1408, + [1572] = 1478, + [1573] = 1461, + [1574] = 1039, + [1575] = 1420, + [1576] = 1482, + [1577] = 1420, + [1578] = 1556, + [1579] = 1065, + [1580] = 1058, + [1581] = 1068, + [1582] = 1504, + [1583] = 1506, + [1584] = 1499, + [1585] = 1497, + [1586] = 1071, + [1587] = 1587, + [1588] = 1588, + [1589] = 1059, + [1590] = 1078, + [1591] = 1591, + [1592] = 1478, + [1593] = 1505, + [1594] = 1594, + [1595] = 1507, + [1596] = 1596, + [1597] = 1508, + [1598] = 1049, + [1599] = 1511, + [1600] = 1060, + [1601] = 1490, + [1602] = 1491, + [1603] = 1603, + [1604] = 1588, + [1605] = 1509, + [1606] = 1053, + [1607] = 1070, + [1608] = 1587, + [1609] = 1492, + [1610] = 1061, + [1611] = 1062, + [1612] = 1493, + [1613] = 1510, + [1614] = 369, + [1615] = 367, + [1616] = 1083, + [1617] = 366, + [1618] = 368, + [1619] = 1488, + [1620] = 1495, + [1621] = 1054, + [1622] = 1081, + [1623] = 1055, + [1624] = 1500, + [1625] = 1050, + [1626] = 1051, + [1627] = 1082, + [1628] = 1064, + [1629] = 1494, + [1630] = 1603, + [1631] = 1496, + [1632] = 1482, + [1633] = 1074, + [1634] = 1066, + [1635] = 1067, + [1636] = 1094, + [1637] = 1072, + [1638] = 1603, + [1639] = 1076, + [1640] = 1591, + [1641] = 370, + [1642] = 1418, + [1643] = 1173, + [1644] = 1176, + [1645] = 1426, + [1646] = 1177, + [1647] = 1458, + [1648] = 1179, + [1649] = 1427, + [1650] = 1181, + [1651] = 1467, + [1652] = 1473, + [1653] = 1240, + [1654] = 1241, + [1655] = 1474, + [1656] = 1243, + [1657] = 1244, + [1658] = 1658, + [1659] = 1246, + [1660] = 1465, + [1661] = 1476, + [1662] = 1499, + [1663] = 1663, + [1664] = 1664, + [1665] = 1450, + [1666] = 1497, + [1667] = 1667, + [1668] = 421, + [1669] = 373, + [1670] = 1429, + [1671] = 394, + [1672] = 395, + [1673] = 390, + [1674] = 372, + [1675] = 1675, + [1676] = 1453, + [1677] = 1454, + [1678] = 1462, + [1679] = 1500, + [1680] = 1298, + [1681] = 1416, + [1682] = 388, + [1683] = 1510, + [1684] = 382, + [1685] = 1424, + [1686] = 383, + [1687] = 1494, + [1688] = 376, + [1689] = 1505, + [1690] = 1507, + [1691] = 1508, + [1692] = 1511, + [1693] = 1490, + [1694] = 1491, + [1695] = 1492, + [1696] = 1493, + [1697] = 1488, + [1698] = 1495, + [1699] = 1496, + [1700] = 1121, + [1701] = 1122, + [1702] = 1172, + [1703] = 379, + [1704] = 384, + [1705] = 1509, + [1706] = 393, + [1707] = 1174, + [1708] = 1422, + [1709] = 374, + [1710] = 378, + [1711] = 380, + [1712] = 389, + [1713] = 371, + [1714] = 392, + [1715] = 162, + [1716] = 163, + [1717] = 386, + [1718] = 164, + [1719] = 1500, + [1720] = 165, + [1721] = 391, + [1722] = 1494, + [1723] = 166, + [1724] = 385, + [1725] = 1463, + [1726] = 1509, + [1727] = 1440, + [1728] = 1500, + [1729] = 213, + [1730] = 199, + [1731] = 1475, + [1732] = 1417, [1733] = 1733, - [1734] = 1382, - [1735] = 1385, - [1736] = 1388, - [1737] = 1389, - [1738] = 1391, - [1739] = 1449, - [1740] = 1740, - [1741] = 429, - [1742] = 389, - [1743] = 382, - [1744] = 384, - [1745] = 392, - [1746] = 1496, - [1747] = 1228, - [1748] = 1748, - [1749] = 1483, - [1750] = 388, - [1751] = 1505, - [1752] = 399, - [1753] = 1495, - [1754] = 1485, - [1755] = 1486, - [1756] = 1488, - [1757] = 1490, - [1758] = 1500, - [1759] = 1501, - [1760] = 1494, - [1761] = 1503, - [1762] = 1497, - [1763] = 1482, - [1764] = 1212, - [1765] = 1213, - [1766] = 385, - [1767] = 387, - [1768] = 1487, - [1769] = 393, - [1770] = 1292, - [1771] = 1210, - [1772] = 376, - [1773] = 377, - [1774] = 379, - [1775] = 383, - [1776] = 386, - [1777] = 394, - [1778] = 156, - [1779] = 167, - [1780] = 380, - [1781] = 138, + [1734] = 1242, + [1735] = 1245, + [1736] = 1367, + [1737] = 1737, + [1738] = 1738, + [1739] = 1412, + [1740] = 1095, + [1741] = 1012, + [1742] = 1742, + [1743] = 1442, + [1744] = 1423, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 1204, + [1749] = 1441, + [1750] = 1664, + [1751] = 1446, + [1752] = 1430, + [1753] = 1753, + [1754] = 1469, + [1755] = 1755, + [1756] = 1658, + [1757] = 1413, + [1758] = 1758, + [1759] = 1663, + [1760] = 1443, + [1761] = 1675, + [1762] = 1504, + [1763] = 1763, + [1764] = 1764, + [1765] = 1414, + [1766] = 1746, + [1767] = 1745, + [1768] = 1303, + [1769] = 1510, + [1770] = 1354, + [1771] = 1771, + [1772] = 1738, + [1773] = 1431, + [1774] = 1774, + [1775] = 1504, + [1776] = 1506, + [1777] = 1742, + [1778] = 1499, + [1779] = 1497, + [1780] = 1745, + [1781] = 1494, [1782] = 1782, - [1783] = 1496, - [1784] = 141, - [1785] = 397, - [1786] = 1786, - [1787] = 1505, - [1788] = 142, - [1789] = 372, - [1790] = 1487, - [1791] = 180, - [1792] = 181, - [1793] = 1793, - [1794] = 1748, - [1795] = 1795, - [1796] = 1740, - [1797] = 1660, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1654, - [1802] = 1674, - [1803] = 1682, - [1804] = 1695, - [1805] = 1636, - [1806] = 1800, - [1807] = 1704, - [1808] = 1782, + [1783] = 1783, + [1784] = 1755, + [1785] = 1785, + [1786] = 1663, + [1787] = 1432, + [1788] = 1506, + [1789] = 1738, + [1790] = 1505, + [1791] = 1742, + [1792] = 1745, + [1793] = 1507, + [1794] = 1508, + [1795] = 1511, + [1796] = 1490, + [1797] = 1755, + [1798] = 1663, + [1799] = 1491, + [1800] = 1738, + [1801] = 1745, + [1802] = 1492, + [1803] = 1755, + [1804] = 1804, + [1805] = 1663, + [1806] = 1409, + [1807] = 1738, + [1808] = 1745, [1809] = 1809, - [1810] = 1748, - [1811] = 1493, - [1812] = 1502, - [1813] = 1740, - [1814] = 1489, - [1815] = 1499, - [1816] = 1660, - [1817] = 1817, - [1818] = 1818, - [1819] = 1674, - [1820] = 1636, - [1821] = 1748, - [1822] = 1740, - [1823] = 1660, - [1824] = 1674, - [1825] = 1809, - [1826] = 1748, - [1827] = 1660, - [1828] = 1674, - [1829] = 1829, - [1830] = 1636, - [1831] = 1748, - [1832] = 1660, - [1833] = 1674, - [1834] = 1636, - [1835] = 1748, - [1836] = 1660, - [1837] = 1674, - [1838] = 1636, - [1839] = 1839, - [1840] = 1793, - [1841] = 381, - [1842] = 1842, - [1843] = 1843, - [1844] = 1844, - [1845] = 1845, - [1846] = 1846, - [1847] = 1638, - [1848] = 1848, - [1849] = 1849, + [1810] = 1493, + [1811] = 1488, + [1812] = 1495, + [1813] = 1755, + [1814] = 1663, + [1815] = 1738, + [1816] = 1496, + [1817] = 1745, + [1818] = 1755, + [1819] = 1753, + [1820] = 1663, + [1821] = 1738, + [1822] = 1415, + [1823] = 1129, + [1824] = 1472, + [1825] = 1119, + [1826] = 1120, + [1827] = 1448, + [1828] = 1758, + [1829] = 1126, + [1830] = 1771, + [1831] = 1127, + [1832] = 1419, + [1833] = 1355, + [1834] = 1834, + [1835] = 1421, + [1836] = 1327, + [1837] = 1837, + [1838] = 1425, + [1839] = 1428, + [1840] = 1840, + [1841] = 1841, + [1842] = 1175, + [1843] = 1411, + [1844] = 1445, + [1845] = 1509, + [1846] = 1755, + [1847] = 1737, + [1848] = 1742, + [1849] = 1468, [1850] = 1850, - [1851] = 1850, + [1851] = 1851, [1852] = 1852, - [1853] = 1853, + [1853] = 1840, [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1852, + [1855] = 1854, + [1856] = 1852, + [1857] = 1857, [1858] = 1858, - [1859] = 1849, - [1860] = 1855, + [1859] = 1859, + [1860] = 1860, [1861] = 1861, [1862] = 1862, - [1863] = 1842, + [1863] = 1863, [1864] = 1864, - [1865] = 1690, - [1866] = 1856, - [1867] = 1856, - [1868] = 1858, - [1869] = 1861, - [1870] = 1864, - [1871] = 1854, - [1872] = 1862, - [1873] = 1873, - [1874] = 1874, - [1875] = 1699, + [1865] = 1865, + [1866] = 1858, + [1867] = 1850, + [1868] = 1868, + [1869] = 1851, + [1870] = 1785, + [1871] = 1871, + [1872] = 1863, + [1873] = 1859, + [1874] = 1864, + [1875] = 1875, [1876] = 1876, - [1877] = 1877, - [1878] = 1876, + [1877] = 1871, + [1878] = 1852, [1879] = 1879, - [1880] = 1877, - [1881] = 1881, - [1882] = 1881, + [1880] = 1865, + [1881] = 1783, + [1882] = 1860, [1883] = 1883, [1884] = 1884, [1885] = 1885, - [1886] = 1884, - [1887] = 1885, - [1888] = 1883, + [1886] = 1885, + [1887] = 1887, + [1888] = 1884, [1889] = 1889, [1890] = 1890, [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1892, - [1895] = 1892, - [1896] = 1893, - [1897] = 1893, - [1898] = 1893, - [1899] = 1893, + [1892] = 1889, + [1893] = 1891, + [1894] = 1894, + [1895] = 1894, + [1896] = 1890, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, [1900] = 1900, - [1901] = 1900, - [1902] = 142, - [1903] = 1011, - [1904] = 138, - [1905] = 1013, - [1906] = 1016, - [1907] = 1012, - [1908] = 1024, - [1909] = 1031, - [1910] = 1910, - [1911] = 1014, - [1912] = 1017, - [1913] = 1024, - [1914] = 1022, - [1915] = 1016, - [1916] = 1021, - [1917] = 1029, - [1918] = 1017, - [1919] = 1031, - [1920] = 1028, - [1921] = 1033, - [1922] = 1058, - [1923] = 1059, - [1924] = 1036, - [1925] = 1034, - [1926] = 1064, - [1927] = 1047, - [1928] = 1072, - [1929] = 1042, - [1930] = 1048, - [1931] = 1071, - [1932] = 1932, - [1933] = 1075, - [1934] = 1932, - [1935] = 1935, - [1936] = 1936, - [1937] = 1936, - [1938] = 1076, - [1939] = 180, - [1940] = 1070, - [1941] = 1085, + [1901] = 1901, + [1902] = 1901, + [1903] = 1900, + [1904] = 1900, + [1905] = 1900, + [1906] = 1901, + [1907] = 1900, + [1908] = 1908, + [1909] = 1908, + [1910] = 164, + [1911] = 166, + [1912] = 1015, + [1913] = 1028, + [1914] = 1017, + [1915] = 1025, + [1916] = 1016, + [1917] = 1917, + [1918] = 1033, + [1919] = 1022, + [1920] = 1018, + [1921] = 1028, + [1922] = 1031, + [1923] = 1030, + [1924] = 1023, + [1925] = 1025, + [1926] = 1033, + [1927] = 1022, + [1928] = 1019, + [1929] = 1075, + [1930] = 1073, + [1931] = 1069, + [1932] = 1043, + [1933] = 1044, + [1934] = 1045, + [1935] = 1077, + [1936] = 1039, + [1937] = 1064, + [1938] = 1938, + [1939] = 1055, + [1940] = 1054, + [1941] = 1941, [1942] = 1942, - [1943] = 181, - [1944] = 1051, - [1945] = 1087, - [1946] = 1061, - [1947] = 1086, - [1948] = 1067, - [1949] = 1078, - [1950] = 1066, - [1951] = 1088, - [1952] = 1090, - [1953] = 1044, - [1954] = 1053, - [1955] = 1942, - [1956] = 1081, - [1957] = 397, - [1958] = 1942, - [1959] = 372, - [1960] = 1083, - [1961] = 1961, - [1962] = 1049, - [1963] = 1060, - [1964] = 1531, - [1965] = 1211, - [1966] = 1293, - [1967] = 1385, - [1968] = 1292, - [1969] = 1222, - [1970] = 1291, - [1971] = 1225, - [1972] = 1391, - [1973] = 1207, - [1974] = 1540, - [1975] = 1212, - [1976] = 1213, - [1977] = 1539, - [1978] = 1451, - [1979] = 1296, - [1980] = 1541, - [1981] = 1936, - [1982] = 1982, - [1983] = 1228, - [1984] = 1297, - [1985] = 1298, - [1986] = 1382, - [1987] = 1987, - [1988] = 1439, - [1989] = 1294, - [1990] = 1223, - [1991] = 1224, - [1992] = 1449, - [1993] = 1388, - [1994] = 1305, - [1995] = 1389, - [1996] = 1210, - [1997] = 167, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 141, - [2002] = 1031, - [2003] = 1016, - [2004] = 2004, - [2005] = 2005, - [2006] = 1024, - [2007] = 1910, - [2008] = 1017, - [2009] = 1031, - [2010] = 1017, - [2011] = 2011, - [2012] = 1024, - [2013] = 1016, - [2014] = 1031, - [2015] = 1017, - [2016] = 1024, - [2017] = 1016, - [2018] = 2018, + [1943] = 1053, + [1944] = 1941, + [1945] = 1945, + [1946] = 1076, + [1947] = 1071, + [1948] = 385, + [1949] = 1059, + [1950] = 213, + [1951] = 1074, + [1952] = 1525, + [1953] = 1070, + [1954] = 1938, + [1955] = 1050, + [1956] = 1062, + [1957] = 1067, + [1958] = 1945, + [1959] = 1065, + [1960] = 1049, + [1961] = 1060, + [1962] = 1072, + [1963] = 1051, + [1964] = 1058, + [1965] = 199, + [1966] = 1945, + [1967] = 1061, + [1968] = 1078, + [1969] = 1094, + [1970] = 1066, + [1971] = 1971, + [1972] = 391, + [1973] = 1240, + [1974] = 1446, + [1975] = 1119, + [1976] = 1120, + [1977] = 1122, + [1978] = 1355, + [1979] = 1181, + [1980] = 1938, + [1981] = 1176, + [1982] = 1126, + [1983] = 1127, + [1984] = 1173, + [1985] = 1426, + [1986] = 1174, + [1987] = 1177, + [1988] = 1988, + [1989] = 1532, + [1990] = 1533, + [1991] = 1241, + [1992] = 1476, + [1993] = 1422, + [1994] = 1179, + [1995] = 1995, + [1996] = 1367, + [1997] = 1243, + [1998] = 1244, + [1999] = 1412, + [2000] = 1246, + [2001] = 1541, + [2002] = 1416, + [2003] = 1442, + [2004] = 1121, + [2005] = 165, + [2006] = 163, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 1033, + [2011] = 1022, + [2012] = 1025, + [2013] = 1025, + [2014] = 1028, + [2015] = 1022, + [2016] = 2016, + [2017] = 2017, + [2018] = 1028, [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 2021, - [2024] = 2022, - [2025] = 2025, + [2020] = 1025, + [2021] = 1022, + [2022] = 1917, + [2023] = 1028, + [2024] = 1033, + [2025] = 1033, [2026] = 2026, [2027] = 2027, - [2028] = 2019, - [2029] = 2020, - [2030] = 2025, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, [2031] = 2031, - [2032] = 2027, - [2033] = 2031, + [2032] = 2030, + [2033] = 2033, [2034] = 2034, - [2035] = 2035, - [2036] = 2036, + [2035] = 2029, + [2036] = 2033, [2037] = 2037, - [2038] = 2038, - [2039] = 338, - [2040] = 1016, - [2041] = 2041, - [2042] = 2042, + [2038] = 2028, + [2039] = 2026, + [2040] = 2027, + [2041] = 2031, + [2042] = 366, [2043] = 2043, [2044] = 2044, - [2045] = 1024, + [2045] = 2045, [2046] = 2046, - [2047] = 336, + [2047] = 2047, [2048] = 2048, - [2049] = 2042, + [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 2052, - [2053] = 323, - [2054] = 2054, - [2055] = 2052, - [2056] = 347, - [2057] = 2051, - [2058] = 1935, - [2059] = 261, + [2052] = 367, + [2053] = 2053, + [2054] = 2047, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 369, + [2059] = 2059, [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, + [2061] = 1025, + [2062] = 368, + [2063] = 1022, + [2064] = 1028, [2065] = 2065, - [2066] = 1031, - [2067] = 1017, - [2068] = 2064, + [2066] = 2066, + [2067] = 2067, + [2068] = 2068, [2069] = 2069, - [2070] = 2034, - [2071] = 2050, - [2072] = 2065, - [2073] = 2037, - [2074] = 2044, + [2070] = 2070, + [2071] = 1942, + [2072] = 2072, + [2073] = 370, + [2074] = 2053, [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, + [2076] = 2051, + [2077] = 2070, + [2078] = 2049, + [2079] = 2055, + [2080] = 2072, + [2081] = 2060, + [2082] = 2068, + [2083] = 1033, + [2084] = 1942, [2085] = 2085, [2086] = 2086, [2087] = 2087, @@ -5965,112 +5979,112 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2097] = 2097, [2098] = 2098, [2099] = 2099, - [2100] = 380, + [2100] = 2100, [2101] = 2101, - [2102] = 2102, + [2102] = 1942, [2103] = 2103, [2104] = 2104, [2105] = 2105, [2106] = 2106, [2107] = 2107, - [2108] = 2089, + [2108] = 2108, [2109] = 2109, [2110] = 2110, - [2111] = 2087, + [2111] = 2111, [2112] = 2112, - [2113] = 1961, + [2113] = 386, [2114] = 2114, [2115] = 2115, - [2116] = 2090, - [2117] = 1935, + [2116] = 2116, + [2117] = 2117, [2118] = 2118, - [2119] = 2118, - [2120] = 1935, - [2121] = 2121, - [2122] = 2122, - [2123] = 2105, - [2124] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2094, + [2122] = 2114, + [2123] = 2123, + [2124] = 2124, [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 1042, + [2126] = 1971, + [2127] = 2125, + [2128] = 2094, [2129] = 2129, - [2130] = 1961, + [2130] = 2130, [2131] = 2131, - [2132] = 2132, + [2132] = 2085, [2133] = 2133, - [2134] = 1034, + [2134] = 2104, [2135] = 2135, - [2136] = 2135, - [2137] = 2137, - [2138] = 1036, - [2139] = 2139, + [2136] = 2136, + [2137] = 1045, + [2138] = 2138, + [2139] = 1942, [2140] = 2140, - [2141] = 2132, + [2141] = 2141, [2142] = 2142, - [2143] = 2139, + [2143] = 2143, [2144] = 2144, - [2145] = 2144, - [2146] = 2146, + [2145] = 2145, + [2146] = 2138, [2147] = 2147, [2148] = 2148, - [2149] = 1033, - [2150] = 1935, - [2151] = 2137, - [2152] = 2135, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 1961, + [2149] = 2149, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 1971, + [2154] = 2136, + [2155] = 1043, + [2156] = 2141, + [2157] = 2157, [2158] = 2158, [2159] = 2159, - [2160] = 2154, - [2161] = 2159, - [2162] = 2137, + [2160] = 1039, + [2161] = 2147, + [2162] = 2162, [2163] = 2163, - [2164] = 2164, - [2165] = 2147, - [2166] = 2158, - [2167] = 2164, - [2168] = 2168, - [2169] = 2148, - [2170] = 2140, - [2171] = 2142, - [2172] = 2131, - [2173] = 2173, - [2174] = 2168, - [2175] = 2133, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 2182, - [2183] = 2183, + [2164] = 2143, + [2165] = 2163, + [2166] = 2166, + [2167] = 2167, + [2168] = 2149, + [2169] = 2166, + [2170] = 1971, + [2171] = 2171, + [2172] = 2159, + [2173] = 2167, + [2174] = 2174, + [2175] = 2157, + [2176] = 2171, + [2177] = 2145, + [2178] = 2158, + [2179] = 2140, + [2180] = 2136, + [2181] = 2147, + [2182] = 2174, + [2183] = 1044, [2184] = 2184, [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 2181, + [2188] = 2188, [2189] = 2189, - [2190] = 2185, + [2190] = 2190, [2191] = 2191, - [2192] = 2184, - [2193] = 2183, + [2192] = 2192, + [2193] = 2193, [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 2196, + [2197] = 2197, [2198] = 2198, - [2199] = 2176, - [2200] = 2198, + [2199] = 2199, + [2200] = 2200, [2201] = 2201, - [2202] = 2194, + [2202] = 2202, [2203] = 2203, - [2204] = 2204, - [2205] = 2205, + [2204] = 1971, + [2205] = 2185, [2206] = 2206, [2207] = 2207, [2208] = 2208, @@ -6079,32 +6093,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2211] = 2211, [2212] = 2212, [2213] = 2213, - [2214] = 2214, - [2215] = 2180, - [2216] = 1961, - [2217] = 2204, - [2218] = 2189, - [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2211, + [2214] = 2198, + [2215] = 2215, + [2216] = 2216, + [2217] = 2215, + [2218] = 2190, + [2219] = 2208, + [2220] = 2210, + [2221] = 2194, + [2222] = 2222, [2223] = 2223, - [2224] = 2195, - [2225] = 2186, - [2226] = 2187, - [2227] = 2219, - [2228] = 2191, - [2229] = 2214, - [2230] = 2221, - [2231] = 2182, - [2232] = 2232, - [2233] = 1999, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, + [2224] = 2199, + [2225] = 2196, + [2226] = 2184, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2206, + [2231] = 2228, + [2232] = 2200, + [2233] = 2216, + [2234] = 2202, + [2235] = 2227, + [2236] = 2201, + [2237] = 2186, + [2238] = 2223, + [2239] = 2187, [2240] = 2240, [2241] = 2241, [2242] = 2242, @@ -6112,156 +6126,156 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2243, - [2248] = 2246, + [2247] = 2247, + [2248] = 2248, [2249] = 2249, - [2250] = 2250, + [2250] = 2244, [2251] = 2251, [2252] = 2252, [2253] = 2253, [2254] = 2254, - [2255] = 2239, - [2256] = 2256, - [2257] = 2257, - [2258] = 2252, + [2255] = 2255, + [2256] = 2249, + [2257] = 2254, + [2258] = 2258, [2259] = 2259, - [2260] = 2251, - [2261] = 2249, - [2262] = 2250, - [2263] = 2253, - [2264] = 2235, - [2265] = 2237, - [2266] = 2266, + [2260] = 2260, + [2261] = 2261, + [2262] = 2252, + [2263] = 2263, + [2264] = 2247, + [2265] = 2265, + [2266] = 2261, [2267] = 2267, - [2268] = 2268, + [2268] = 2243, [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 2241, - [2274] = 2242, - [2275] = 2244, - [2276] = 2245, - [2277] = 2254, - [2278] = 2256, - [2279] = 2259, + [2273] = 2273, + [2274] = 2241, + [2275] = 2275, + [2276] = 2258, + [2277] = 2259, + [2278] = 2278, + [2279] = 2275, [2280] = 2280, - [2281] = 2281, - [2282] = 2232, - [2283] = 2283, - [2284] = 2281, - [2285] = 2232, - [2286] = 2286, - [2287] = 2272, - [2288] = 2266, - [2289] = 2280, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, + [2281] = 2245, + [2282] = 2242, + [2283] = 2252, + [2284] = 2253, + [2285] = 2285, + [2286] = 2269, + [2287] = 2255, + [2288] = 2288, + [2289] = 2260, + [2290] = 2009, + [2291] = 2280, + [2292] = 2246, + [2293] = 2248, [2294] = 2294, - [2295] = 2295, - [2296] = 2296, + [2295] = 2271, + [2296] = 2265, [2297] = 2297, [2298] = 2298, - [2299] = 2004, + [2299] = 2299, [2300] = 2300, [2301] = 2301, - [2302] = 2292, - [2303] = 2303, - [2304] = 2304, + [2302] = 2302, + [2303] = 2301, + [2304] = 2302, [2305] = 2305, - [2306] = 2298, - [2307] = 2307, + [2306] = 2306, + [2307] = 2017, [2308] = 2308, [2309] = 2309, [2310] = 2310, - [2311] = 2311, - [2312] = 2307, - [2313] = 2293, + [2311] = 2016, + [2312] = 2312, + [2313] = 2313, [2314] = 2314, - [2315] = 2011, + [2315] = 2315, [2316] = 2316, - [2317] = 2295, + [2317] = 2313, [2318] = 2318, - [2319] = 2319, - [2320] = 2320, + [2319] = 2298, + [2320] = 2308, [2321] = 2321, - [2322] = 2322, + [2322] = 164, [2323] = 2323, [2324] = 2324, - [2325] = 2325, + [2325] = 2323, [2326] = 2326, - [2327] = 2310, - [2328] = 2309, - [2329] = 2296, - [2330] = 2316, - [2331] = 2318, - [2332] = 2332, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2331, [2333] = 2333, [2334] = 2334, - [2335] = 2335, - [2336] = 2292, - [2337] = 2337, + [2335] = 2312, + [2336] = 2336, + [2337] = 2333, [2338] = 2338, [2339] = 2339, - [2340] = 2340, + [2340] = 2315, [2341] = 2341, [2342] = 2342, - [2343] = 2303, - [2344] = 2311, - [2345] = 2300, - [2346] = 2301, - [2347] = 2308, - [2348] = 2305, - [2349] = 2297, - [2350] = 2321, - [2351] = 2290, - [2352] = 2300, - [2353] = 2301, - [2354] = 2305, - [2355] = 2323, - [2356] = 2311, - [2357] = 2324, - [2358] = 2338, - [2359] = 2339, - [2360] = 167, - [2361] = 138, - [2362] = 141, - [2363] = 142, + [2343] = 2343, + [2344] = 2330, + [2345] = 165, + [2346] = 2019, + [2347] = 2306, + [2348] = 2348, + [2349] = 2349, + [2350] = 2328, + [2351] = 2351, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, + [2357] = 2357, + [2358] = 2354, + [2359] = 2355, + [2360] = 2336, + [2361] = 2343, + [2362] = 2353, + [2363] = 2348, [2364] = 2364, [2365] = 2365, - [2366] = 2332, - [2367] = 2333, - [2368] = 2322, - [2369] = 2314, - [2370] = 2334, + [2366] = 2314, + [2367] = 2324, + [2368] = 166, + [2369] = 2305, + [2370] = 2299, [2371] = 2371, - [2372] = 2304, + [2372] = 2364, [2373] = 2373, - [2374] = 2342, - [2375] = 2364, - [2376] = 2335, - [2377] = 2305, - [2378] = 2291, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2341, - [2383] = 2294, - [2384] = 2379, - [2385] = 2319, - [2386] = 2380, - [2387] = 2005, - [2388] = 2325, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, - [2396] = 2396, + [2374] = 2333, + [2375] = 2343, + [2376] = 2376, + [2377] = 2300, + [2378] = 2341, + [2379] = 2329, + [2380] = 2342, + [2381] = 2334, + [2382] = 2308, + [2383] = 2316, + [2384] = 2355, + [2385] = 2343, + [2386] = 2356, + [2387] = 2352, + [2388] = 2331, + [2389] = 2321, + [2390] = 2327, + [2391] = 163, + [2392] = 2309, + [2393] = 2376, + [2394] = 2349, + [2395] = 2357, + [2396] = 2371, [2397] = 2397, [2398] = 2398, [2399] = 2399, @@ -6270,427 +6284,427 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2402] = 2402, [2403] = 2403, [2404] = 2404, - [2405] = 2405, + [2405] = 1012, [2406] = 2406, [2407] = 2407, [2408] = 2408, [2409] = 2409, [2410] = 2410, [2411] = 2411, - [2412] = 2411, + [2412] = 2412, [2413] = 2413, - [2414] = 2394, + [2414] = 2414, [2415] = 2415, - [2416] = 1272, - [2417] = 1273, - [2418] = 1275, - [2419] = 2413, + [2416] = 2416, + [2417] = 2417, + [2418] = 1452, + [2419] = 1455, [2420] = 2420, - [2421] = 2407, - [2422] = 2405, + [2421] = 2398, + [2422] = 2422, [2423] = 2423, [2424] = 2424, - [2425] = 2425, - [2426] = 2425, + [2425] = 2424, + [2426] = 2426, [2427] = 2427, [2428] = 2428, [2429] = 2429, - [2430] = 2427, - [2431] = 2389, - [2432] = 2404, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, [2433] = 2433, - [2434] = 2434, - [2435] = 2435, - [2436] = 2401, - [2437] = 2398, - [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2425, - [2442] = 2442, + [2434] = 1124, + [2435] = 1130, + [2436] = 1144, + [2437] = 2437, + [2438] = 2412, + [2439] = 2399, + [2440] = 2404, + [2441] = 2406, + [2442] = 2415, [2443] = 2443, [2444] = 2444, - [2445] = 2420, + [2445] = 2445, [2446] = 2446, - [2447] = 2390, - [2448] = 1229, - [2449] = 1230, - [2450] = 2402, - [2451] = 2415, - [2452] = 1365, - [2453] = 1366, - [2454] = 1367, - [2455] = 1260, - [2456] = 1261, - [2457] = 2408, - [2458] = 2458, - [2459] = 2399, + [2447] = 2447, + [2448] = 2448, + [2449] = 2449, + [2450] = 2400, + [2451] = 2451, + [2452] = 2432, + [2453] = 2428, + [2454] = 1436, + [2455] = 1437, + [2456] = 1438, + [2457] = 2457, + [2458] = 2444, + [2459] = 2447, [2460] = 2460, [2461] = 2461, [2462] = 2462, - [2463] = 1008, + [2463] = 2463, [2464] = 2464, - [2465] = 2409, - [2466] = 2434, - [2467] = 2467, - [2468] = 2433, - [2469] = 2469, - [2470] = 2470, - [2471] = 2427, - [2472] = 2472, - [2473] = 2433, - [2474] = 2410, - [2475] = 2407, + [2465] = 2465, + [2466] = 2398, + [2467] = 2422, + [2468] = 2460, + [2469] = 2427, + [2470] = 2437, + [2471] = 2412, + [2472] = 1459, + [2473] = 2445, + [2474] = 1460, + [2475] = 2475, [2476] = 2476, - [2477] = 2477, + [2477] = 2398, [2478] = 2478, [2479] = 2479, - [2480] = 2424, - [2481] = 2481, + [2480] = 2480, + [2481] = 2428, [2482] = 2427, - [2483] = 2483, - [2484] = 2467, - [2485] = 2393, - [2486] = 2486, - [2487] = 2424, + [2483] = 2461, + [2484] = 2445, + [2485] = 2462, + [2486] = 2437, + [2487] = 2487, [2488] = 2488, - [2489] = 2415, - [2490] = 2486, - [2491] = 2405, - [2492] = 2397, + [2489] = 2489, + [2490] = 2490, + [2491] = 2446, + [2492] = 2463, [2493] = 2493, - [2494] = 2494, - [2495] = 2495, + [2494] = 2464, + [2495] = 2422, [2496] = 2496, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, + [2497] = 2465, + [2498] = 2412, + [2499] = 2413, + [2500] = 2449, [2501] = 2501, [2502] = 2502, - [2503] = 2503, - [2504] = 2495, - [2505] = 2505, + [2503] = 2430, + [2504] = 2413, + [2505] = 2417, [2506] = 2506, [2507] = 2507, [2508] = 2508, - [2509] = 2509, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, + [2509] = 2044, + [2510] = 2043, + [2511] = 2075, + [2512] = 2046, [2513] = 2513, [2514] = 2514, - [2515] = 2514, + [2515] = 2059, [2516] = 2516, [2517] = 2517, [2518] = 2518, - [2519] = 2518, - [2520] = 2496, - [2521] = 2497, - [2522] = 2498, - [2523] = 2523, + [2519] = 2065, + [2520] = 2066, + [2521] = 2521, + [2522] = 2522, + [2523] = 2067, [2524] = 2524, [2525] = 2525, [2526] = 2526, [2527] = 2527, - [2528] = 2528, - [2529] = 2527, + [2528] = 2508, + [2529] = 2529, [2530] = 2530, [2531] = 2531, [2532] = 2532, [2533] = 2533, - [2534] = 2531, - [2535] = 2528, + [2534] = 2534, + [2535] = 2530, [2536] = 2536, - [2537] = 2527, + [2537] = 2537, [2538] = 2538, - [2539] = 2503, + [2539] = 2539, [2540] = 2540, - [2541] = 2541, + [2541] = 2532, [2542] = 2542, - [2543] = 2536, - [2544] = 2542, + [2543] = 2517, + [2544] = 2544, [2545] = 2545, [2546] = 2546, [2547] = 2547, - [2548] = 2548, + [2548] = 2518, [2549] = 2549, [2550] = 2550, [2551] = 2551, - [2552] = 139, + [2552] = 2552, [2553] = 2553, [2554] = 2554, - [2555] = 2554, + [2555] = 2555, [2556] = 2556, - [2557] = 2557, + [2557] = 159, [2558] = 2558, - [2559] = 2559, + [2559] = 2536, [2560] = 2560, [2561] = 2561, - [2562] = 2513, - [2563] = 2563, - [2564] = 2564, + [2562] = 2562, + [2563] = 2522, + [2564] = 2553, [2565] = 2565, - [2566] = 2545, + [2566] = 2566, [2567] = 2567, [2568] = 2568, - [2569] = 2569, - [2570] = 2523, - [2571] = 2530, - [2572] = 2505, - [2573] = 2547, - [2574] = 2560, + [2569] = 2546, + [2570] = 2537, + [2571] = 2538, + [2572] = 2572, + [2573] = 2573, + [2574] = 2574, [2575] = 2575, - [2576] = 2506, - [2577] = 2559, - [2578] = 2509, + [2576] = 2518, + [2577] = 2577, + [2578] = 2578, [2579] = 2579, [2580] = 2580, [2581] = 2581, - [2582] = 2567, + [2582] = 2554, [2583] = 2583, - [2584] = 2563, - [2585] = 2585, - [2586] = 2586, - [2587] = 2587, - [2588] = 2528, - [2589] = 2589, - [2590] = 2590, + [2584] = 2533, + [2585] = 2546, + [2586] = 2572, + [2587] = 2575, + [2588] = 2588, + [2589] = 2579, + [2590] = 2580, [2591] = 2591, [2592] = 2592, - [2593] = 2548, - [2594] = 2495, - [2595] = 2496, - [2596] = 2497, - [2597] = 2498, - [2598] = 2499, - [2599] = 2503, - [2600] = 2505, + [2593] = 2593, + [2594] = 2594, + [2595] = 2529, + [2596] = 2596, + [2597] = 2568, + [2598] = 2598, + [2599] = 2599, + [2600] = 2600, [2601] = 2506, - [2602] = 2602, - [2603] = 2509, - [2604] = 2604, + [2602] = 2534, + [2603] = 2544, + [2604] = 2558, [2605] = 2605, - [2606] = 2606, - [2607] = 2518, + [2606] = 2592, + [2607] = 2607, [2608] = 2608, - [2609] = 2583, - [2610] = 2526, + [2609] = 2609, + [2610] = 2566, [2611] = 2611, - [2612] = 2547, - [2613] = 2590, - [2614] = 2554, - [2615] = 2567, - [2616] = 2583, - [2617] = 2563, - [2618] = 2585, - [2619] = 2591, - [2620] = 2592, - [2621] = 2548, - [2622] = 2622, - [2623] = 2496, - [2624] = 2497, - [2625] = 2499, - [2626] = 2503, - [2627] = 2505, - [2628] = 2518, - [2629] = 2547, - [2630] = 2563, - [2631] = 2585, - [2632] = 2632, - [2633] = 2592, - [2634] = 2496, - [2635] = 2497, - [2636] = 2503, - [2637] = 2505, - [2638] = 2638, - [2639] = 2524, - [2640] = 2500, - [2641] = 2563, - [2642] = 2496, - [2643] = 2503, - [2644] = 2505, - [2645] = 2645, - [2646] = 2538, - [2647] = 2511, - [2648] = 2503, - [2649] = 2505, - [2650] = 2503, - [2651] = 2505, - [2652] = 2503, - [2653] = 2505, - [2654] = 2503, - [2655] = 2505, - [2656] = 2503, - [2657] = 2505, - [2658] = 2503, - [2659] = 2505, - [2660] = 2561, + [2612] = 2598, + [2613] = 2593, + [2614] = 2516, + [2615] = 2615, + [2616] = 2536, + [2617] = 2617, + [2618] = 2599, + [2619] = 2600, + [2620] = 2594, + [2621] = 2529, + [2622] = 2540, + [2623] = 2596, + [2624] = 2596, + [2625] = 2625, + [2626] = 2568, + [2627] = 2546, + [2628] = 2572, + [2629] = 2575, + [2630] = 2579, + [2631] = 2593, + [2632] = 2594, + [2633] = 2529, + [2634] = 2596, + [2635] = 2568, + [2636] = 2598, + [2637] = 2599, + [2638] = 2566, + [2639] = 2534, + [2640] = 2544, + [2641] = 2641, + [2642] = 2566, + [2643] = 2643, + [2644] = 2536, + [2645] = 2575, + [2646] = 2579, + [2647] = 2594, + [2648] = 2598, + [2649] = 2599, + [2650] = 2599, + [2651] = 2534, + [2652] = 2544, + [2653] = 2600, + [2654] = 2526, + [2655] = 2607, + [2656] = 2575, + [2657] = 2527, + [2658] = 2598, + [2659] = 2534, + [2660] = 2544, [2661] = 2661, - [2662] = 2662, - [2663] = 2494, + [2662] = 2506, + [2663] = 2540, [2664] = 2664, - [2665] = 2517, - [2666] = 2069, - [2667] = 2551, - [2668] = 2557, - [2669] = 2611, - [2670] = 2054, - [2671] = 2671, - [2672] = 2501, - [2673] = 2673, - [2674] = 2525, - [2675] = 2675, - [2676] = 2676, + [2665] = 2534, + [2666] = 2544, + [2667] = 2534, + [2668] = 2544, + [2669] = 2534, + [2670] = 2544, + [2671] = 2534, + [2672] = 2544, + [2673] = 2534, + [2674] = 2544, + [2675] = 2534, + [2676] = 2544, [2677] = 2677, - [2678] = 2553, - [2679] = 2679, - [2680] = 2680, - [2681] = 2681, - [2682] = 2035, - [2683] = 2540, - [2684] = 2567, - [2685] = 2541, - [2686] = 2645, - [2687] = 2583, - [2688] = 2563, - [2689] = 2568, - [2690] = 2585, + [2678] = 160, + [2679] = 2539, + [2680] = 2513, + [2681] = 2533, + [2682] = 2578, + [2683] = 2683, + [2684] = 2664, + [2685] = 2685, + [2686] = 2592, + [2687] = 2588, + [2688] = 2534, + [2689] = 2544, + [2690] = 2690, [2691] = 2691, - [2692] = 143, - [2693] = 2512, - [2694] = 2673, - [2695] = 2676, - [2696] = 2036, - [2697] = 2585, - [2698] = 2698, - [2699] = 2586, - [2700] = 2602, - [2701] = 2608, + [2692] = 2692, + [2693] = 2558, + [2694] = 2694, + [2695] = 2572, + [2696] = 2611, + [2697] = 2697, + [2698] = 2551, + [2699] = 2514, + [2700] = 2607, + [2701] = 2701, [2702] = 2702, - [2703] = 2586, - [2704] = 2638, - [2705] = 2526, - [2706] = 2702, - [2707] = 2494, - [2708] = 2494, - [2709] = 2611, - [2710] = 2590, + [2703] = 2697, + [2704] = 2702, + [2705] = 2705, + [2706] = 2579, + [2707] = 2545, + [2708] = 2524, + [2709] = 2709, + [2710] = 2710, [2711] = 2711, - [2712] = 2591, - [2713] = 2494, - [2714] = 2611, - [2715] = 2591, - [2716] = 2041, - [2717] = 2592, - [2718] = 2043, - [2719] = 2558, - [2720] = 2677, - [2721] = 2675, - [2722] = 2548, - [2723] = 2046, - [2724] = 2556, - [2725] = 2502, - [2726] = 2048, - [2727] = 2592, - [2728] = 2728, - [2729] = 2728, - [2730] = 2495, - [2731] = 2731, - [2732] = 2732, + [2712] = 2712, + [2713] = 2713, + [2714] = 2625, + [2715] = 2641, + [2716] = 2716, + [2717] = 2547, + [2718] = 2615, + [2719] = 2712, + [2720] = 2683, + [2721] = 2710, + [2722] = 2711, + [2723] = 2580, + [2724] = 2533, + [2725] = 2685, + [2726] = 2516, + [2727] = 2727, + [2728] = 2594, + [2729] = 2525, + [2730] = 2730, + [2731] = 2560, + [2732] = 2533, [2733] = 2733, - [2734] = 2734, + [2734] = 2685, [2735] = 2735, - [2736] = 2736, - [2737] = 2737, - [2738] = 2738, - [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, + [2736] = 2593, + [2737] = 2709, + [2738] = 2685, + [2739] = 2694, + [2740] = 2567, + [2741] = 2713, + [2742] = 2733, + [2743] = 2517, + [2744] = 2575, + [2745] = 2550, + [2746] = 2598, [2747] = 2747, [2748] = 2748, [2749] = 2749, [2750] = 2750, - [2751] = 2751, + [2751] = 2135, [2752] = 2752, [2753] = 2753, [2754] = 2754, - [2755] = 2755, - [2756] = 2102, - [2757] = 2757, + [2755] = 2117, + [2756] = 2119, + [2757] = 2750, [2758] = 2758, - [2759] = 2759, + [2759] = 2120, [2760] = 2760, - [2761] = 2103, - [2762] = 2762, + [2761] = 2761, + [2762] = 2133, [2763] = 2763, [2764] = 2764, [2765] = 2765, - [2766] = 2085, + [2766] = 2766, [2767] = 2767, [2768] = 2768, [2769] = 2769, - [2770] = 2770, + [2770] = 2099, [2771] = 2771, [2772] = 2772, - [2773] = 2773, + [2773] = 2105, [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2774, - [2778] = 2778, - [2779] = 2779, - [2780] = 2734, - [2781] = 2735, + [2777] = 2777, + [2778] = 2115, + [2779] = 2118, + [2780] = 2780, + [2781] = 2130, [2782] = 2782, - [2783] = 2783, - [2784] = 2753, - [2785] = 2096, - [2786] = 2773, + [2783] = 2123, + [2784] = 2131, + [2785] = 2785, + [2786] = 2786, [2787] = 2787, [2788] = 2788, - [2789] = 2789, + [2789] = 2129, [2790] = 2790, - [2791] = 2791, - [2792] = 2792, + [2791] = 2095, + [2792] = 2780, [2793] = 2793, - [2794] = 2104, - [2795] = 2742, - [2796] = 2796, - [2797] = 2107, - [2798] = 2751, + [2794] = 2111, + [2795] = 2795, + [2796] = 386, + [2797] = 2797, + [2798] = 2798, [2799] = 2799, - [2800] = 2125, + [2800] = 2800, [2801] = 2801, - [2802] = 2094, - [2803] = 2121, + [2802] = 2752, + [2803] = 2803, [2804] = 2804, [2805] = 2805, [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 2809, - [2810] = 2810, - [2811] = 2767, - [2812] = 2812, + [2809] = 2768, + [2810] = 2766, + [2811] = 2811, + [2812] = 2780, [2813] = 2813, - [2814] = 2791, - [2815] = 2747, + [2814] = 2814, + [2815] = 2767, [2816] = 2816, [2817] = 2817, - [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [2822] = 2809, - [2823] = 2823, - [2824] = 2757, - [2825] = 2825, + [2818] = 2106, + [2819] = 2814, + [2820] = 2107, + [2821] = 2108, + [2822] = 2822, + [2823] = 2109, + [2824] = 2824, + [2825] = 2753, [2826] = 2826, [2827] = 2827, [2828] = 2828, @@ -6699,500 +6713,500 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2831] = 2831, [2832] = 2832, [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 2753, + [2834] = 2830, + [2835] = 2831, + [2836] = 2836, [2837] = 2837, [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 380, + [2841] = 2841, [2842] = 2842, - [2843] = 2843, + [2843] = 2097, [2844] = 2844, - [2845] = 2126, - [2846] = 2817, + [2845] = 2845, + [2846] = 2846, [2847] = 2847, [2848] = 2848, - [2849] = 2849, - [2850] = 2757, - [2851] = 2770, + [2849] = 2098, + [2850] = 2850, + [2851] = 2851, [2852] = 2852, - [2853] = 2805, - [2854] = 2806, - [2855] = 2828, + [2853] = 2853, + [2854] = 2824, + [2855] = 2788, [2856] = 2856, - [2857] = 2839, + [2857] = 2857, [2858] = 2858, [2859] = 2859, - [2860] = 2860, - [2861] = 156, - [2862] = 2793, + [2860] = 2827, + [2861] = 2100, + [2862] = 2862, [2863] = 2863, - [2864] = 2752, + [2864] = 2799, [2865] = 2865, - [2866] = 2764, - [2867] = 2755, + [2866] = 2763, + [2867] = 2780, [2868] = 2868, [2869] = 2869, [2870] = 2870, - [2871] = 2077, - [2872] = 2809, + [2871] = 2871, + [2872] = 2872, [2873] = 2873, [2874] = 2874, - [2875] = 2826, + [2875] = 2836, [2876] = 2876, - [2877] = 2079, - [2878] = 2122, - [2879] = 2812, - [2880] = 2880, - [2881] = 2753, - [2882] = 2098, - [2883] = 2812, - [2884] = 2771, - [2885] = 2783, + [2877] = 2877, + [2878] = 2747, + [2879] = 2879, + [2880] = 2811, + [2881] = 2881, + [2882] = 2788, + [2883] = 2769, + [2884] = 2884, + [2885] = 2765, [2886] = 2886, - [2887] = 2887, - [2888] = 2888, - [2889] = 2889, - [2890] = 2869, - [2891] = 2873, - [2892] = 2876, + [2887] = 2801, + [2888] = 2817, + [2889] = 2845, + [2890] = 2890, + [2891] = 2891, + [2892] = 2771, [2893] = 2893, - [2894] = 2106, - [2895] = 2091, + [2894] = 2837, + [2895] = 2772, [2896] = 2896, - [2897] = 2115, - [2898] = 2849, - [2899] = 2088, + [2897] = 2840, + [2898] = 2838, + [2899] = 2842, [2900] = 2900, [2901] = 2901, - [2902] = 2808, - [2903] = 2741, - [2904] = 2835, - [2905] = 2732, - [2906] = 2906, - [2907] = 2772, + [2902] = 2902, + [2903] = 2903, + [2904] = 2774, + [2905] = 2905, + [2906] = 2760, + [2907] = 2841, [2908] = 2908, - [2909] = 2909, + [2909] = 2828, [2910] = 2910, - [2911] = 2733, - [2912] = 2093, + [2911] = 2911, + [2912] = 2912, [2913] = 2913, [2914] = 2914, - [2915] = 2915, - [2916] = 2901, + [2915] = 2893, + [2916] = 2782, [2917] = 2917, - [2918] = 2736, + [2918] = 2918, [2919] = 2919, - [2920] = 2920, - [2921] = 2825, + [2920] = 2788, + [2921] = 2921, [2922] = 2922, - [2923] = 2097, + [2923] = 2923, [2924] = 2924, - [2925] = 2737, - [2926] = 2112, - [2927] = 2927, - [2928] = 2928, + [2925] = 2925, + [2926] = 2926, + [2927] = 2917, + [2928] = 2793, [2929] = 2929, - [2930] = 2930, + [2930] = 2782, [2931] = 2931, [2932] = 2932, - [2933] = 2933, - [2934] = 2739, - [2935] = 2834, - [2936] = 2821, - [2937] = 2738, - [2938] = 2938, + [2933] = 2901, + [2934] = 2830, + [2935] = 2764, + [2936] = 2936, + [2937] = 2831, + [2938] = 2850, [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2942, + [2940] = 2844, + [2941] = 2868, + [2942] = 2931, [2943] = 2943, - [2944] = 2790, - [2945] = 2945, - [2946] = 2742, - [2947] = 2758, - [2948] = 2948, - [2949] = 2101, - [2950] = 2859, - [2951] = 2747, - [2952] = 2909, - [2953] = 2078, - [2954] = 2954, - [2955] = 2955, - [2956] = 2808, + [2944] = 2873, + [2945] = 2876, + [2946] = 2946, + [2947] = 2947, + [2948] = 2838, + [2949] = 2949, + [2950] = 2950, + [2951] = 2951, + [2952] = 2841, + [2953] = 2953, + [2954] = 2872, + [2955] = 2776, + [2956] = 2949, [2957] = 2957, - [2958] = 2083, - [2959] = 2778, - [2960] = 2788, - [2961] = 2817, - [2962] = 2084, - [2963] = 2832, - [2964] = 2092, - [2965] = 2965, - [2966] = 2966, - [2967] = 2886, - [2968] = 2757, - [2969] = 2910, - [2970] = 2908, - [2971] = 2080, - [2972] = 2757, - [2973] = 2095, - [2974] = 2099, - [2975] = 2975, - [2976] = 2833, - [2977] = 2977, - [2978] = 2081, + [2958] = 2777, + [2959] = 2950, + [2960] = 2960, + [2961] = 2902, + [2962] = 2962, + [2963] = 2963, + [2964] = 2964, + [2965] = 2932, + [2966] = 2852, + [2967] = 2967, + [2968] = 2968, + [2969] = 2969, + [2970] = 2970, + [2971] = 2971, + [2972] = 2972, + [2973] = 2973, + [2974] = 2911, + [2975] = 2086, + [2976] = 2976, + [2977] = 2824, + [2978] = 2978, [2979] = 2979, [2980] = 2980, - [2981] = 2751, - [2982] = 2745, - [2983] = 2127, - [2984] = 2805, + [2981] = 2087, + [2982] = 2982, + [2983] = 2970, + [2984] = 2971, [2985] = 2985, - [2986] = 2829, + [2986] = 2986, [2987] = 2987, - [2988] = 2988, - [2989] = 2810, - [2990] = 2082, - [2991] = 2806, - [2992] = 2914, - [2993] = 2943, - [2994] = 2917, - [2995] = 2076, - [2996] = 2996, - [2997] = 2734, - [2998] = 2086, - [2999] = 2743, - [3000] = 3000, + [2988] = 2972, + [2989] = 2989, + [2990] = 2990, + [2991] = 2788, + [2992] = 2992, + [2993] = 2993, + [2994] = 2804, + [2995] = 2851, + [2996] = 2748, + [2997] = 2979, + [2998] = 2090, + [2999] = 2790, + [3000] = 2093, [3001] = 3001, - [3002] = 2933, - [3003] = 2787, - [3004] = 2830, - [3005] = 2744, + [3002] = 3002, + [3003] = 2947, + [3004] = 162, + [3005] = 2839, [3006] = 3006, - [3007] = 2818, - [3008] = 3006, - [3009] = 2813, - [3010] = 2980, - [3011] = 2775, - [3012] = 2762, - [3013] = 2942, - [3014] = 3014, - [3015] = 2789, + [3007] = 2846, + [3008] = 2096, + [3009] = 3009, + [3010] = 2827, + [3011] = 2103, + [3012] = 2922, + [3013] = 3013, + [3014] = 2953, + [3015] = 2985, [3016] = 3016, - [3017] = 2792, - [3018] = 2932, - [3019] = 2979, - [3020] = 3020, - [3021] = 2865, - [3022] = 2870, - [3023] = 2838, - [3024] = 2840, - [3025] = 3025, + [3017] = 3017, + [3018] = 2088, + [3019] = 2089, + [3020] = 2091, + [3021] = 2768, + [3022] = 2845, + [3023] = 3023, + [3024] = 2749, + [3025] = 2795, [3026] = 3026, - [3027] = 3027, - [3028] = 2782, - [3029] = 3025, - [3030] = 2856, - [3031] = 2801, + [3027] = 2990, + [3028] = 2986, + [3029] = 2992, + [3030] = 2846, + [3031] = 2124, [3032] = 2110, - [3033] = 3033, - [3034] = 3034, - [3035] = 3035, + [3033] = 2092, + [3034] = 2989, + [3035] = 2832, [3036] = 3036, - [3037] = 3037, - [3038] = 3038, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, - [3044] = 3044, - [3045] = 3034, + [3037] = 2826, + [3038] = 3009, + [3039] = 2881, + [3040] = 2877, + [3041] = 2803, + [3042] = 2890, + [3043] = 2775, + [3044] = 2112, + [3045] = 2914, [3046] = 3046, - [3047] = 3047, - [3048] = 1210, + [3047] = 3001, + [3048] = 2891, [3049] = 3049, - [3050] = 3037, + [3050] = 3050, [3051] = 3051, - [3052] = 3044, + [3052] = 3052, [3053] = 3053, [3054] = 3054, [3055] = 3055, [3056] = 3056, [3057] = 3057, [3058] = 3058, - [3059] = 1212, + [3059] = 3059, [3060] = 3060, - [3061] = 1213, + [3061] = 3061, [3062] = 3062, [3063] = 3063, [3064] = 3064, [3065] = 3065, - [3066] = 3040, - [3067] = 3067, + [3066] = 3066, + [3067] = 3061, [3068] = 3068, - [3069] = 1228, + [3069] = 3069, [3070] = 3070, [3071] = 3071, - [3072] = 3067, + [3072] = 3062, [3073] = 3073, [3074] = 3074, - [3075] = 3075, + [3075] = 3064, [3076] = 3076, [3077] = 3077, [3078] = 3078, - [3079] = 3042, - [3080] = 3080, + [3079] = 3079, + [3080] = 3055, [3081] = 3081, [3082] = 3082, [3083] = 3083, [3084] = 3084, - [3085] = 3081, - [3086] = 3051, + [3085] = 3065, + [3086] = 3086, [3087] = 3087, [3088] = 3088, [3089] = 3089, - [3090] = 3046, + [3090] = 3090, [3091] = 3091, - [3092] = 3042, + [3092] = 3092, [3093] = 3093, - [3094] = 3044, - [3095] = 3095, - [3096] = 3040, - [3097] = 3097, - [3098] = 3044, - [3099] = 3099, - [3100] = 3100, - [3101] = 3071, - [3102] = 3051, + [3094] = 3094, + [3095] = 3055, + [3096] = 3096, + [3097] = 2808, + [3098] = 3083, + [3099] = 3087, + [3100] = 2848, + [3101] = 3101, + [3102] = 3102, [3103] = 3103, - [3104] = 3091, - [3105] = 3057, - [3106] = 3093, - [3107] = 3107, - [3108] = 3108, - [3109] = 3063, - [3110] = 3040, - [3111] = 3067, - [3112] = 3068, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, + [3104] = 3104, + [3105] = 3105, + [3106] = 3106, + [3107] = 3062, + [3108] = 3073, + [3109] = 3064, + [3110] = 3110, + [3111] = 3055, + [3112] = 3112, + [3113] = 3089, + [3114] = 3112, + [3115] = 3058, [3116] = 3116, [3117] = 3117, [3118] = 3118, - [3119] = 3119, + [3119] = 3062, [3120] = 3120, - [3121] = 3121, - [3122] = 3044, - [3123] = 3123, - [3124] = 3037, - [3125] = 3051, - [3126] = 3040, - [3127] = 3057, + [3121] = 3055, + [3122] = 3116, + [3123] = 3077, + [3124] = 3073, + [3125] = 3053, + [3126] = 3126, + [3127] = 3078, [3128] = 3128, - [3129] = 3129, - [3130] = 3040, - [3131] = 3131, - [3132] = 3067, - [3133] = 3068, - [3134] = 3051, - [3135] = 3039, - [3136] = 3060, - [3137] = 3097, - [3138] = 3138, - [3139] = 3118, + [3129] = 3055, + [3130] = 3081, + [3131] = 3082, + [3132] = 3132, + [3133] = 3077, + [3134] = 3088, + [3135] = 3135, + [3136] = 3136, + [3137] = 3137, + [3138] = 3091, + [3139] = 3078, [3140] = 3140, [3141] = 3141, - [3142] = 3051, - [3143] = 3033, - [3144] = 3115, - [3145] = 3040, - [3146] = 3067, - [3147] = 3068, - [3148] = 3148, - [3149] = 3054, - [3150] = 3047, + [3142] = 3079, + [3143] = 3143, + [3144] = 3132, + [3145] = 3145, + [3146] = 3058, + [3147] = 3147, + [3148] = 3081, + [3149] = 3062, + [3150] = 3073, [3151] = 3151, - [3152] = 3152, - [3153] = 3153, - [3154] = 3154, - [3155] = 3155, + [3152] = 3052, + [3153] = 3055, + [3154] = 3081, + [3155] = 3082, [3156] = 3156, - [3157] = 3051, - [3158] = 3040, + [3157] = 3135, + [3158] = 3103, [3159] = 3159, - [3160] = 3067, - [3161] = 3068, - [3162] = 3162, - [3163] = 3163, - [3164] = 3051, - [3165] = 3040, - [3166] = 1292, - [3167] = 3067, - [3168] = 3068, + [3160] = 3062, + [3161] = 3055, + [3162] = 3081, + [3163] = 3082, + [3164] = 3164, + [3165] = 3165, + [3166] = 3060, + [3167] = 3104, + [3168] = 3168, [3169] = 3169, - [3170] = 3051, - [3171] = 3057, - [3172] = 3067, - [3173] = 3068, - [3174] = 3068, - [3175] = 3051, - [3176] = 3077, - [3177] = 3067, - [3178] = 3068, - [3179] = 2823, - [3180] = 3051, - [3181] = 2887, - [3182] = 3067, - [3183] = 3068, - [3184] = 3184, - [3185] = 3077, - [3186] = 3067, - [3187] = 3068, + [3170] = 3050, + [3171] = 3171, + [3172] = 3062, + [3173] = 3055, + [3174] = 3081, + [3175] = 3082, + [3176] = 3105, + [3177] = 3137, + [3178] = 3106, + [3179] = 3062, + [3180] = 3055, + [3181] = 3081, + [3182] = 3082, + [3183] = 3055, + [3184] = 3062, + [3185] = 3081, + [3186] = 3082, + [3187] = 3062, [3188] = 3188, - [3189] = 3189, - [3190] = 3119, - [3191] = 3062, - [3192] = 3053, - [3193] = 3057, - [3194] = 3194, - [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3113, - [3199] = 3199, - [3200] = 3033, - [3201] = 3201, - [3202] = 3153, + [3189] = 3081, + [3190] = 3082, + [3191] = 3082, + [3192] = 3062, + [3193] = 3081, + [3194] = 3081, + [3195] = 3082, + [3196] = 3062, + [3197] = 3141, + [3198] = 3081, + [3199] = 3082, + [3200] = 3092, + [3201] = 3082, + [3202] = 3202, [3203] = 3203, - [3204] = 3062, - [3205] = 3063, - [3206] = 3064, - [3207] = 3054, - [3208] = 3208, - [3209] = 3107, - [3210] = 3116, - [3211] = 3056, + [3204] = 3204, + [3205] = 3205, + [3206] = 3206, + [3207] = 3207, + [3208] = 1174, + [3209] = 3168, + [3210] = 3210, + [3211] = 3064, [3212] = 3212, - [3213] = 3152, - [3214] = 3163, - [3215] = 3215, - [3216] = 3100, - [3217] = 3217, - [3218] = 3117, - [3219] = 3099, - [3220] = 3220, - [3221] = 3221, - [3222] = 3074, - [3223] = 3141, + [3213] = 3057, + [3214] = 3214, + [3215] = 3065, + [3216] = 3087, + [3217] = 3078, + [3218] = 3079, + [3219] = 3219, + [3220] = 3088, + [3221] = 3058, + [3222] = 3222, + [3223] = 3059, [3224] = 3224, - [3225] = 3162, - [3226] = 3169, - [3227] = 3227, - [3228] = 3228, - [3229] = 3159, - [3230] = 3035, - [3231] = 3231, + [3225] = 3225, + [3226] = 3226, + [3227] = 3084, + [3228] = 3060, + [3229] = 3229, + [3230] = 3076, + [3231] = 3120, [3232] = 3232, - [3233] = 3233, - [3234] = 3038, - [3235] = 3063, - [3236] = 3064, - [3237] = 3228, - [3238] = 3238, - [3239] = 3040, - [3240] = 3070, - [3241] = 3224, - [3242] = 3242, - [3243] = 3243, - [3244] = 3244, - [3245] = 3242, + [3233] = 3128, + [3234] = 3234, + [3235] = 3202, + [3236] = 3207, + [3237] = 3237, + [3238] = 3226, + [3239] = 3054, + [3240] = 3056, + [3241] = 3232, + [3242] = 3066, + [3243] = 3061, + [3244] = 3069, + [3245] = 3245, [3246] = 3246, - [3247] = 3067, - [3248] = 3151, - [3249] = 3068, + [3247] = 3247, + [3248] = 3248, + [3249] = 3249, [3250] = 3250, - [3251] = 3231, - [3252] = 3252, - [3253] = 3083, - [3254] = 3033, - [3255] = 3129, + [3251] = 3247, + [3252] = 3126, + [3253] = 3049, + [3254] = 3254, + [3255] = 3255, [3256] = 3256, - [3257] = 3123, - [3258] = 3070, - [3259] = 3071, - [3260] = 3082, - [3261] = 3039, - [3262] = 3113, - [3263] = 3131, - [3264] = 3153, + [3257] = 3257, + [3258] = 3206, + [3259] = 3259, + [3260] = 3249, + [3261] = 3261, + [3262] = 3262, + [3263] = 3055, + [3264] = 3237, [3265] = 3265, - [3266] = 3056, - [3267] = 3267, - [3268] = 3268, - [3269] = 3154, - [3270] = 3040, - [3271] = 3221, - [3272] = 3212, - [3273] = 3113, - [3274] = 3080, - [3275] = 3087, - [3276] = 3220, - [3277] = 3277, - [3278] = 3113, - [3279] = 3243, - [3280] = 3121, - [3281] = 3199, - [3282] = 3215, - [3283] = 3267, - [3284] = 3244, - [3285] = 3238, - [3286] = 3233, - [3287] = 3227, - [3288] = 3155, - [3289] = 3040, - [3290] = 3128, - [3291] = 3036, - [3292] = 3095, - [3293] = 3208, - [3294] = 3043, + [3266] = 3070, + [3267] = 3101, + [3268] = 1422, + [3269] = 1416, + [3270] = 3091, + [3271] = 3188, + [3272] = 3057, + [3273] = 3212, + [3274] = 3168, + [3275] = 3275, + [3276] = 3094, + [3277] = 3212, + [3278] = 3278, + [3279] = 3224, + [3280] = 3280, + [3281] = 3165, + [3282] = 3169, + [3283] = 3283, + [3284] = 3168, + [3285] = 3285, + [3286] = 3222, + [3287] = 3058, + [3288] = 3168, + [3289] = 3289, + [3290] = 3110, + [3291] = 3275, + [3292] = 3254, + [3293] = 3245, + [3294] = 3294, [3295] = 3295, - [3296] = 3188, + [3296] = 3140, [3297] = 3297, - [3298] = 3121, - [3299] = 3267, - [3300] = 3188, - [3301] = 3267, - [3302] = 3188, - [3303] = 3081, - [3304] = 3058, - [3305] = 3114, - [3306] = 3297, - [3307] = 3307, - [3308] = 3246, - [3309] = 3103, - [3310] = 3082, - [3311] = 3051, - [3312] = 3312, - [3313] = 162, - [3314] = 3314, - [3315] = 3315, - [3316] = 3316, - [3317] = 3317, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 3321, - [3322] = 3322, - [3323] = 3323, - [3324] = 3324, - [3325] = 164, - [3326] = 3321, - [3327] = 3320, + [3298] = 3151, + [3299] = 3261, + [3300] = 3083, + [3301] = 3301, + [3302] = 3156, + [3303] = 3084, + [3304] = 3304, + [3305] = 3093, + [3306] = 3306, + [3307] = 3147, + [3308] = 3073, + [3309] = 3063, + [3310] = 3257, + [3311] = 1121, + [3312] = 1122, + [3313] = 3250, + [3314] = 3117, + [3315] = 3110, + [3316] = 3245, + [3317] = 3250, + [3318] = 3245, + [3319] = 3250, + [3320] = 3219, + [3321] = 3278, + [3322] = 3255, + [3323] = 3090, + [3324] = 3256, + [3325] = 3306, + [3326] = 3214, + [3327] = 3224, [3328] = 3328, [3329] = 3329, [3330] = 3330, @@ -7207,39 +7221,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3339] = 3339, [3340] = 3340, [3341] = 3341, - [3342] = 3314, - [3343] = 3343, + [3342] = 3342, + [3343] = 3340, [3344] = 3344, [3345] = 3345, [3346] = 3346, [3347] = 3347, - [3348] = 3328, + [3348] = 3348, [3349] = 3349, - [3350] = 3350, + [3350] = 3344, [3351] = 3351, [3352] = 3352, - [3353] = 3353, - [3354] = 3354, + [3353] = 3339, + [3354] = 3328, [3355] = 3355, [3356] = 3356, [3357] = 3357, [3358] = 3358, - [3359] = 3359, + [3359] = 3335, [3360] = 3360, [3361] = 3361, [3362] = 3362, - [3363] = 3363, - [3364] = 3363, - [3365] = 3362, + [3363] = 3337, + [3364] = 3364, + [3365] = 3365, [3366] = 3366, [3367] = 3367, [3368] = 3368, [3369] = 3369, - [3370] = 3330, - [3371] = 3371, + [3370] = 3370, + [3371] = 3336, [3372] = 3372, [3373] = 3373, - [3374] = 3350, + [3374] = 3374, [3375] = 3375, [3376] = 3376, [3377] = 3377, @@ -7249,242 +7263,258 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3381] = 3381, [3382] = 3382, [3383] = 3383, - [3384] = 3384, - [3385] = 3369, + [3384] = 3335, + [3385] = 3385, [3386] = 3386, - [3387] = 3354, - [3388] = 3388, + [3387] = 3387, + [3388] = 3329, [3389] = 3389, [3390] = 3390, [3391] = 3391, - [3392] = 3321, + [3392] = 3351, [3393] = 3393, - [3394] = 3394, + [3394] = 3339, [3395] = 3395, [3396] = 3396, - [3397] = 3361, - [3398] = 3398, - [3399] = 3399, + [3397] = 3397, + [3398] = 3352, + [3399] = 3386, [3400] = 3400, - [3401] = 3336, + [3401] = 3346, [3402] = 3402, - [3403] = 3403, - [3404] = 3329, - [3405] = 3363, - [3406] = 3339, + [3403] = 3348, + [3404] = 3404, + [3405] = 3358, + [3406] = 3341, [3407] = 3407, - [3408] = 3336, + [3408] = 3408, [3409] = 3409, - [3410] = 3410, - [3411] = 3321, + [3410] = 3376, + [3411] = 3411, [3412] = 3412, [3413] = 3413, - [3414] = 3414, - [3415] = 3415, - [3416] = 3334, + [3414] = 3346, + [3415] = 3365, + [3416] = 3383, [3417] = 3417, - [3418] = 3418, + [3418] = 3396, [3419] = 3419, [3420] = 3420, - [3421] = 3343, + [3421] = 3421, [3422] = 3422, [3423] = 3423, - [3424] = 3394, + [3424] = 3424, [3425] = 3425, - [3426] = 3358, - [3427] = 3338, - [3428] = 3428, - [3429] = 3380, - [3430] = 3340, + [3426] = 3426, + [3427] = 3427, + [3428] = 3328, + [3429] = 3429, + [3430] = 3339, [3431] = 3431, - [3432] = 3414, + [3432] = 3432, [3433] = 3433, [3434] = 3434, [3435] = 3435, - [3436] = 3436, - [3437] = 3437, - [3438] = 3372, - [3439] = 3439, - [3440] = 3312, + [3436] = 3360, + [3437] = 3427, + [3438] = 3438, + [3439] = 3377, + [3440] = 157, [3441] = 3441, - [3442] = 3361, - [3443] = 3433, - [3444] = 3395, - [3445] = 3355, + [3442] = 3442, + [3443] = 3443, + [3444] = 3387, + [3445] = 3445, [3446] = 3446, - [3447] = 3379, - [3448] = 3351, - [3449] = 3420, - [3450] = 3398, - [3451] = 3380, + [3447] = 3419, + [3448] = 3448, + [3449] = 3449, + [3450] = 3450, + [3451] = 3451, [3452] = 3452, - [3453] = 3453, - [3454] = 3312, - [3455] = 3322, - [3456] = 3456, + [3453] = 3382, + [3454] = 3346, + [3455] = 3337, + [3456] = 3338, [3457] = 3457, [3458] = 3458, - [3459] = 3349, - [3460] = 3436, - [3461] = 3376, - [3462] = 3382, - [3463] = 3463, - [3464] = 3322, - [3465] = 3324, + [3459] = 3395, + [3460] = 3460, + [3461] = 3366, + [3462] = 3462, + [3463] = 3346, + [3464] = 3464, + [3465] = 3465, [3466] = 3466, - [3467] = 3357, - [3468] = 3321, - [3469] = 3332, - [3470] = 3360, - [3471] = 3471, - [3472] = 3472, - [3473] = 3338, - [3474] = 3474, - [3475] = 3340, - [3476] = 3393, - [3477] = 3363, - [3478] = 3350, - [3479] = 3441, - [3480] = 3480, - [3481] = 3312, - [3482] = 3482, - [3483] = 3369, - [3484] = 3330, - [3485] = 3485, - [3486] = 3372, - [3487] = 3487, - [3488] = 3463, + [3467] = 3393, + [3468] = 3468, + [3469] = 3469, + [3470] = 3470, + [3471] = 3391, + [3472] = 3347, + [3473] = 3400, + [3474] = 3345, + [3475] = 3475, + [3476] = 3422, + [3477] = 3356, + [3478] = 3468, + [3479] = 3479, + [3480] = 3385, + [3481] = 3466, + [3482] = 3338, + [3483] = 3340, + [3484] = 3382, + [3485] = 3367, + [3486] = 3348, + [3487] = 3383, + [3488] = 3488, [3489] = 3489, [3490] = 3490, - [3491] = 3377, + [3491] = 3356, [3492] = 3492, - [3493] = 3360, - [3494] = 3376, - [3495] = 3324, - [3496] = 3379, - [3497] = 3497, - [3498] = 3324, - [3499] = 3371, - [3500] = 3413, - [3501] = 3332, - [3502] = 3502, - [3503] = 3466, - [3504] = 3340, - [3505] = 3359, - [3506] = 3471, - [3507] = 3369, - [3508] = 3372, - [3509] = 3390, - [3510] = 3510, - [3511] = 3368, - [3512] = 3512, - [3513] = 3376, - [3514] = 3332, - [3515] = 3515, - [3516] = 3340, - [3517] = 3425, - [3518] = 3372, - [3519] = 3376, - [3520] = 3332, - [3521] = 3340, - [3522] = 3372, - [3523] = 3332, - [3524] = 3340, - [3525] = 3372, - [3526] = 3332, - [3527] = 3332, - [3528] = 3332, - [3529] = 3332, - [3530] = 3332, - [3531] = 3453, + [3493] = 3351, + [3494] = 3366, + [3495] = 3393, + [3496] = 3409, + [3497] = 3335, + [3498] = 3351, + [3499] = 3386, + [3500] = 3387, + [3501] = 3501, + [3502] = 3329, + [3503] = 3435, + [3504] = 3443, + [3505] = 3505, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3331, + [3510] = 3433, + [3511] = 3468, + [3512] = 3332, + [3513] = 3368, + [3514] = 3514, + [3515] = 3340, + [3516] = 3516, + [3517] = 3517, + [3518] = 3348, + [3519] = 3369, + [3520] = 3349, + [3521] = 3356, + [3522] = 3522, + [3523] = 3523, + [3524] = 3386, + [3525] = 3329, + [3526] = 3526, + [3527] = 3342, + [3528] = 3528, + [3529] = 3339, + [3530] = 3468, + [3531] = 3348, [3532] = 3532, - [3533] = 3368, - [3534] = 3360, - [3535] = 3535, - [3536] = 3431, - [3537] = 3315, - [3538] = 3457, - [3539] = 3510, - [3540] = 3540, - [3541] = 3541, - [3542] = 3381, - [3543] = 3417, - [3544] = 3535, - [3545] = 3412, - [3546] = 3358, - [3547] = 3352, - [3548] = 3456, - [3549] = 3353, - [3550] = 3380, - [3551] = 3436, - [3552] = 3552, - [3553] = 3380, - [3554] = 3540, - [3555] = 3555, - [3556] = 3383, - [3557] = 3389, - [3558] = 3316, - [3559] = 3331, - [3560] = 3560, - [3561] = 3380, - [3562] = 3562, - [3563] = 3541, - [3564] = 3453, - [3565] = 3435, + [3533] = 3356, + [3534] = 3514, + [3535] = 3329, + [3536] = 3468, + [3537] = 3348, + [3538] = 3356, + [3539] = 3329, + [3540] = 3348, + [3541] = 3356, + [3542] = 3329, + [3543] = 3348, + [3544] = 3348, + [3545] = 3348, + [3546] = 3348, + [3547] = 3348, + [3548] = 3458, + [3549] = 3419, + [3550] = 3462, + [3551] = 3551, + [3552] = 3441, + [3553] = 3421, + [3554] = 3554, + [3555] = 3526, + [3556] = 3556, + [3557] = 3557, + [3558] = 3330, + [3559] = 3488, + [3560] = 3397, + [3561] = 3489, + [3562] = 3381, + [3563] = 3563, + [3564] = 3465, + [3565] = 3375, [3566] = 3566, - [3567] = 3384, - [3568] = 3358, - [3569] = 3317, - [3570] = 3373, - [3571] = 3388, - [3572] = 3472, - [3573] = 3422, + [3567] = 3522, + [3568] = 3408, + [3569] = 3556, + [3570] = 3382, + [3571] = 3411, + [3572] = 3374, + [3573] = 3573, [3574] = 3574, - [3575] = 3492, - [3576] = 3375, + [3575] = 3464, + [3576] = 3516, [3577] = 3577, - [3578] = 3378, - [3579] = 3535, - [3580] = 3431, - [3581] = 3457, - [3582] = 3510, - [3583] = 3437, - [3584] = 3391, - [3585] = 3535, - [3586] = 3510, - [3587] = 3587, - [3588] = 3577, - [3589] = 3510, - [3590] = 3510, - [3591] = 3510, - [3592] = 3555, - [3593] = 3452, - [3594] = 3594, - [3595] = 3595, - [3596] = 3458, - [3597] = 3487, - [3598] = 3400, - [3599] = 3409, - [3600] = 3407, - [3601] = 3376, - [3602] = 3367, + [3578] = 3383, + [3579] = 3470, + [3580] = 3580, + [3581] = 3346, + [3582] = 3577, + [3583] = 3373, + [3584] = 3451, + [3585] = 3413, + [3586] = 3586, + [3587] = 3517, + [3588] = 3580, + [3589] = 3479, + [3590] = 158, + [3591] = 3465, + [3592] = 3592, + [3593] = 3573, + [3594] = 3438, + [3595] = 3441, + [3596] = 3421, + [3597] = 3526, + [3598] = 3556, + [3599] = 3465, + [3600] = 3464, + [3601] = 3441, + [3602] = 3556, [3603] = 3603, - [3604] = 3497, - [3605] = 3605, - [3606] = 3428, - [3607] = 3566, - [3608] = 3552, - [3609] = 3332, - [3610] = 3347, - [3611] = 3453, - [3612] = 3482, + [3604] = 3404, + [3605] = 3556, + [3606] = 3556, + [3607] = 3556, + [3608] = 3460, + [3609] = 3528, + [3610] = 3426, + [3611] = 3592, + [3612] = 3523, [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3618, - [3619] = 3619, + [3614] = 3468, + [3615] = 3490, + [3616] = 3364, + [3617] = 3378, + [3618] = 3379, + [3619] = 3370, + [3620] = 3417, + [3621] = 3621, + [3622] = 3390, + [3623] = 3407, + [3624] = 3333, + [3625] = 3492, + [3626] = 3380, + [3627] = 3404, + [3628] = 3557, + [3629] = 3629, + [3630] = 3630, + [3631] = 3631, + [3632] = 3632, + [3633] = 3633, + [3634] = 3634, + [3635] = 3635, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -8248,7 +8278,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 96, '.', 133, '/', 98, - ':', 82, ';', 73, '<', 129, '=', 122, @@ -9316,17 +9345,18 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'd', 5, 'e', 6, 'f', 7, - 'i', 8, - 'l', 9, - 'm', 10, - 'p', 11, - 'r', 12, - 's', 13, - 't', 14, - 'u', 15, - 'v', 16, - 'w', 17, - 'y', 18, + 'g', 8, + 'i', 9, + 'l', 10, + 'm', 11, + 'p', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'v', 17, + 'w', 18, + 'y', 19, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); @@ -9335,259 +9365,258 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym__); END_STATE(); case 2: - if (lookahead == 's') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'o') ADVANCE(22); - if (lookahead == 'r') ADVANCE(23); + if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'o') ADVANCE(23); + if (lookahead == 'r') ADVANCE(24); END_STATE(); case 4: - if (lookahead == 'h') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); - if (lookahead == 'r') ADVANCE(26); + if (lookahead == 'h') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'r') ADVANCE(27); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(27); - if (lookahead == 'y') ADVANCE(28); + if (lookahead == 'e') ADVANCE(28); + if (lookahead == 'y') ADVANCE(29); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); - if (lookahead == 'x') ADVANCE(31); + if (lookahead == 'l') ADVANCE(30); + if (lookahead == 'n') ADVANCE(31); + if (lookahead == 'x') ADVANCE(32); END_STATE(); case 7: - if (lookahead == '3') ADVANCE(32); - if (lookahead == '6') ADVANCE(33); - if (lookahead == 'a') ADVANCE(34); - if (lookahead == 'n') ADVANCE(35); - if (lookahead == 'o') ADVANCE(36); + if (lookahead == '3') ADVANCE(33); + if (lookahead == '6') ADVANCE(34); + if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'n') ADVANCE(36); + if (lookahead == 'o') ADVANCE(37); END_STATE(); case 8: - ADVANCE_MAP( - '1', 37, - '3', 38, - '6', 39, - '8', 40, - 'd', 41, - 'f', 42, - 'm', 43, - 'n', 44, - 's', 45, - 't', 46, - ); + if (lookahead == 'e') ADVANCE(38); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(47); - if (lookahead == 'i') ADVANCE(48); - if (lookahead == 'o') ADVANCE(49); + ADVANCE_MAP( + '1', 39, + '3', 40, + '6', 41, + '8', 42, + 'd', 43, + 'f', 44, + 'm', 45, + 'n', 46, + 's', 47, + 't', 48, + ); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(50); - if (lookahead == 'e') ADVANCE(51); - if (lookahead == 'o') ADVANCE(52); - if (lookahead == 'u') ADVANCE(53); + if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'o') ADVANCE(54); if (lookahead == 'u') ADVANCE(55); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'a') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(57); - if (lookahead == 't') ADVANCE(58); - if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'e') ADVANCE(58); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); - if (lookahead == 'y') ADVANCE(62); + if (lookahead == 'e') ADVANCE(59); + if (lookahead == 't') ADVANCE(60); + if (lookahead == 'u') ADVANCE(61); END_STATE(); case 15: - if (lookahead == '1') ADVANCE(63); - if (lookahead == '3') ADVANCE(64); - if (lookahead == '6') ADVANCE(65); - if (lookahead == '8') ADVANCE(66); - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 's') ADVANCE(68); + if (lookahead == 'r') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); + if (lookahead == 'y') ADVANCE(64); END_STATE(); case 16: - if (lookahead == 'i') ADVANCE(69); + if (lookahead == '1') ADVANCE(65); + if (lookahead == '3') ADVANCE(66); + if (lookahead == '6') ADVANCE(67); + if (lookahead == '8') ADVANCE(68); + if (lookahead == 'n') ADVANCE(69); + if (lookahead == 's') ADVANCE(70); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(70); + if (lookahead == 'i') ADVANCE(71); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'h') ADVANCE(72); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(72); + if (lookahead == 'i') ADVANCE(73); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(73); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(74); END_STATE(); case 21: - if (lookahead == 'o') ADVANCE(74); + if (lookahead == 'a') ADVANCE(75); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(75); + if (lookahead == 'o') ADVANCE(76); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 'o') ADVANCE(77); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'e') ADVANCE(78); END_STATE(); case 25: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'a') ADVANCE(79); END_STATE(); case 26: - if (lookahead == 'a') ADVANCE(79); + if (lookahead == 'n') ADVANCE(80); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(80); + if (lookahead == 'a') ADVANCE(81); END_STATE(); case 28: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'f') ADVANCE(82); END_STATE(); case 29: - if (lookahead == 's') ADVANCE(82); + if (lookahead == 'n') ADVANCE(83); END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(83); + if (lookahead == 's') ADVANCE(84); END_STATE(); case 31: - if (lookahead == 'p') ADVANCE(84); - if (lookahead == 't') ADVANCE(85); + if (lookahead == 'u') ADVANCE(85); END_STATE(); case 32: - if (lookahead == '2') ADVANCE(86); + if (lookahead == 'p') ADVANCE(86); + if (lookahead == 't') ADVANCE(87); END_STATE(); case 33: - if (lookahead == '4') ADVANCE(87); + if (lookahead == '2') ADVANCE(88); END_STATE(); case 34: - if (lookahead == 'l') ADVANCE(88); + if (lookahead == '4') ADVANCE(89); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == 'l') ADVANCE(90); END_STATE(); case 36: - if (lookahead == 'r') ADVANCE(89); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 37: - if (lookahead == '2') ADVANCE(90); - if (lookahead == '6') ADVANCE(91); + if (lookahead == 'r') ADVANCE(91); END_STATE(); case 38: - if (lookahead == '2') ADVANCE(92); + if (lookahead == 'n') ADVANCE(92); END_STATE(); case 39: - if (lookahead == '4') ADVANCE(93); + if (lookahead == '2') ADVANCE(93); + if (lookahead == '6') ADVANCE(94); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == '2') ADVANCE(95); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == '4') ADVANCE(96); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 43: - if (lookahead == 'p') ADVANCE(95); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 45: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'p') ADVANCE(98); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 48: - if (lookahead == 'f') ADVANCE(99); - if (lookahead == 't') ADVANCE(100); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 49: - if (lookahead == 'o') ADVANCE(101); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'f') ADVANCE(102); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'o') ADVANCE(104); END_STATE(); case 52: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'v') ADVANCE(105); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 53: if (lookahead == 't') ADVANCE(106); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 'd') ADVANCE(107); + if (lookahead == 'v') ADVANCE(108); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 56: - if (lookahead == 'f') ADVANCE(109); if (lookahead == 't') ADVANCE(110); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 'b') ADVANCE(111); END_STATE(); case 58: - if (lookahead == 'a') ADVANCE(112); - if (lookahead == 'm') ADVANCE(113); - if (lookahead == 'r') ADVANCE(114); + if (lookahead == 'f') ADVANCE(112); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 59: - if (lookahead == 'p') ADVANCE(115); + if (lookahead == 'l') ADVANCE(114); END_STATE(); case 60: - if (lookahead == 'a') ADVANCE(116); - if (lookahead == 'u') ADVANCE(117); - if (lookahead == 'y') ADVANCE(118); + if (lookahead == 'a') ADVANCE(115); + if (lookahead == 'm') ADVANCE(116); + if (lookahead == 'r') ADVANCE(117); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'p') ADVANCE(118); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(119); + if (lookahead == 'a') ADVANCE(119); + if (lookahead == 'u') ADVANCE(120); + if (lookahead == 'y') ADVANCE(121); END_STATE(); case 63: - if (lookahead == '2') ADVANCE(120); - if (lookahead == '6') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 64: - if (lookahead == '2') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(122); END_STATE(); case 65: - if (lookahead == '4') ADVANCE(123); + if (lookahead == '2') ADVANCE(123); + if (lookahead == '6') ADVANCE(124); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == '2') ADVANCE(125); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(124); - if (lookahead == 's') ADVANCE(125); + if (lookahead == '4') ADVANCE(126); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 69: + if (lookahead == 'i') ADVANCE(127); if (lookahead == 's') ADVANCE(128); END_STATE(); case 70: @@ -9595,441 +9624,451 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(130); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 's') ADVANCE(131); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'i') ADVANCE(133); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(133); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(134); + if (lookahead == 'n') ADVANCE(135); END_STATE(); case 75: - if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'i') ADVANCE(136); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(136); + if (lookahead == 'c') ADVANCE(137); END_STATE(); case 77: - if (lookahead == 'r') ADVANCE(137); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 78: - if (lookahead == 's') ADVANCE(138); - if (lookahead == 't') ADVANCE(139); + if (lookahead == 'a') ADVANCE(139); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'r') ADVANCE(140); END_STATE(); case 80: - if (lookahead == 'a') ADVANCE(141); + if (lookahead == 's') ADVANCE(141); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 't') ADVANCE(143); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 83: - if (lookahead == 'm') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 84: - if (lookahead == 'r') ADVANCE(144); + if (lookahead == 'e') ADVANCE(145); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'm') ADVANCE(146); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'r') ADVANCE(147); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'e') ADVANCE(148); END_STATE(); case 88: - if (lookahead == 's') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 90: - if (lookahead == '8') ADVANCE(147); + if (lookahead == 's') ADVANCE(149); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_i16); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_gen); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_i64); + if (lookahead == '8') ADVANCE(150); END_STATE(); case 94: - if (lookahead == 'n') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 96: - if (lookahead == 'z') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'n') ADVANCE(151); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'l') ADVANCE(152); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'z') ADVANCE(153); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'm') ADVANCE(154); END_STATE(); case 101: - if (lookahead == 'p') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 102: - if (lookahead == 'c') ADVANCE(155); + if (lookahead == 'e') ADVANCE(155); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(156); + if (lookahead == 'e') ADVANCE(156); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'p') ADVANCE(157); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(157); + if (lookahead == 'c') ADVANCE(158); END_STATE(); case 106: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'a') ADVANCE(159); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_pub); + if (lookahead == 'e') ADVANCE(160); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 110: - if (lookahead == 'u') ADVANCE(159); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(161); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(162); + if (lookahead == 'u') ADVANCE(162); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(163); + if (lookahead == 'f') ADVANCE(163); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 't') ADVANCE(164); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(165); + if (lookahead == 't') ADVANCE(165); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(166); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'i') ADVANCE(168); END_STATE(); case 120: - if (lookahead == '8') ADVANCE(168); + if (lookahead == 'e') ADVANCE(169); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_u16); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == 'e') ADVANCE(170); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_u64); + if (lookahead == '8') ADVANCE(171); END_STATE(); case 124: - if (lookahead == 'o') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 125: - if (lookahead == 'a') ADVANCE(170); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 127: - if (lookahead == 'z') ADVANCE(171); + if (lookahead == 'o') ADVANCE(172); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_vis); + if (lookahead == 'a') ADVANCE(173); END_STATE(); case 129: - if (lookahead == 'r') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 130: - if (lookahead == 'l') ADVANCE(173); + if (lookahead == 'z') ADVANCE(174); END_STATE(); case 131: - if (lookahead == 'l') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 132: - if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'r') ADVANCE(175); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(176); + if (lookahead == 'l') ADVANCE(176); END_STATE(); case 134: - if (lookahead == 'k') ADVANCE(177); + if (lookahead == 'l') ADVANCE(177); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'c') ADVANCE(178); END_STATE(); case 136: - if (lookahead == 'k') ADVANCE(178); + if (lookahead == 't') ADVANCE(179); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'k') ADVANCE(180); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(180); + if (lookahead == 'k') ADVANCE(181); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 141: - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 't') ADVANCE(182); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'i') ADVANCE(183); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'e') ADVANCE(184); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_expr); + if (lookahead == 'u') ADVANCE(185); END_STATE(); case 145: - if (lookahead == 'r') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_i128); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(185); + if (lookahead == 'r') ADVANCE(186); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 150: - if (lookahead == 'e') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 't') ADVANCE(188); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 153: - if (lookahead == 'r') ADVANCE(188); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 155: - if (lookahead == 'h') ADVANCE(189); + if (lookahead == 't') ADVANCE(190); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_meta); + if (lookahead == 'r') ADVANCE(191); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_move); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_path); + if (lookahead == 'h') ADVANCE(192); END_STATE(); case 159: - if (lookahead == 'r') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 160: - ACCEPT_TOKEN(sym_self); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 161: - if (lookahead == 'i') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_stmt); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 163: - if (lookahead == 'c') ADVANCE(192); + ACCEPT_TOKEN(sym_self); END_STATE(); case 164: - if (lookahead == 'r') ADVANCE(193); + if (lookahead == 'i') ADVANCE(194); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'c') ADVANCE(195); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'r') ADVANCE(196); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_u128); + if (lookahead == 't') ADVANCE(197); END_STATE(); case 169: - if (lookahead == 'n') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 170: - if (lookahead == 'f') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 172: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'n') ADVANCE(198); END_STATE(); case 173: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'f') ADVANCE(199); END_STATE(); case 174: - if (lookahead == 'd') ADVANCE(200); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'e') ADVANCE(202); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'd') ADVANCE(203); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 181: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 182: - if (lookahead == 'l') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'n') ADVANCE(204); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'l') ADVANCE(205); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 'n') ADVANCE(206); END_STATE(); case 187: - if (lookahead == 'i') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 188: - if (lookahead == 'a') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(206); + if (lookahead == 'i') ADVANCE(207); END_STATE(); case 191: - if (lookahead == 'c') ADVANCE(207); + if (lookahead == 'a') ADVANCE(208); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 193: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'n') ADVANCE(209); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'c') ADVANCE(210); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(209); + ACCEPT_TOKEN(sym_super); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_usize); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 201: - if (lookahead == 'u') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 202: - if (lookahead == 't') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 204: - if (lookahead == 'm') ADVANCE(212); + if (lookahead == 'u') ADVANCE(213); END_STATE(); case 205: - if (lookahead == 'l') ADVANCE(213); + if (lookahead == 't') ADVANCE(214); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'm') ADVANCE(215); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'l') ADVANCE(216); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_unsafe); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 212: - if (lookahead == 'e') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_literal); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 215: + if (lookahead == 'e') ADVANCE(218); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 218: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); default: @@ -10083,14 +10122,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 3, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 3, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 3, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 3, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 3, .external_lex_state = 2}, [54] = {.lex_state = 3, .external_lex_state = 2}, [55] = {.lex_state = 3, .external_lex_state = 2}, @@ -10120,38 +10159,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [79] = {.lex_state = 2, .external_lex_state = 2}, [80] = {.lex_state = 2, .external_lex_state = 2}, [81] = {.lex_state = 2, .external_lex_state = 2}, - [82] = {.lex_state = 2, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, + [82] = {.lex_state = 4, .external_lex_state = 2}, + [83] = {.lex_state = 2, .external_lex_state = 2}, [84] = {.lex_state = 4, .external_lex_state = 2}, [85] = {.lex_state = 2, .external_lex_state = 2}, [86] = {.lex_state = 2, .external_lex_state = 2}, - [87] = {.lex_state = 2, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, + [87] = {.lex_state = 4, .external_lex_state = 2}, + [88] = {.lex_state = 4, .external_lex_state = 2}, [89] = {.lex_state = 4, .external_lex_state = 2}, [90] = {.lex_state = 2, .external_lex_state = 2}, - [91] = {.lex_state = 4, .external_lex_state = 2}, - [92] = {.lex_state = 4, .external_lex_state = 2}, - [93] = {.lex_state = 4, .external_lex_state = 2}, - [94] = {.lex_state = 4, .external_lex_state = 2}, - [95] = {.lex_state = 4, .external_lex_state = 2}, - [96] = {.lex_state = 4, .external_lex_state = 2}, - [97] = {.lex_state = 4, .external_lex_state = 2}, + [91] = {.lex_state = 2, .external_lex_state = 2}, + [92] = {.lex_state = 2, .external_lex_state = 2}, + [93] = {.lex_state = 2, .external_lex_state = 2}, + [94] = {.lex_state = 2, .external_lex_state = 2}, + [95] = {.lex_state = 2, .external_lex_state = 2}, + [96] = {.lex_state = 2, .external_lex_state = 2}, + [97] = {.lex_state = 2, .external_lex_state = 2}, [98] = {.lex_state = 4, .external_lex_state = 2}, - [99] = {.lex_state = 2, .external_lex_state = 2}, - [100] = {.lex_state = 2, .external_lex_state = 2}, - [101] = {.lex_state = 2, .external_lex_state = 2}, - [102] = {.lex_state = 2, .external_lex_state = 2}, - [103] = {.lex_state = 2, .external_lex_state = 2}, - [104] = {.lex_state = 2, .external_lex_state = 2}, + [99] = {.lex_state = 4, .external_lex_state = 2}, + [100] = {.lex_state = 4, .external_lex_state = 2}, + [101] = {.lex_state = 4, .external_lex_state = 2}, + [102] = {.lex_state = 4, .external_lex_state = 2}, + [103] = {.lex_state = 4, .external_lex_state = 2}, + [104] = {.lex_state = 4, .external_lex_state = 2}, [105] = {.lex_state = 4, .external_lex_state = 2}, [106] = {.lex_state = 4, .external_lex_state = 2}, - [107] = {.lex_state = 4, .external_lex_state = 2}, + [107] = {.lex_state = 2, .external_lex_state = 2}, [108] = {.lex_state = 4, .external_lex_state = 2}, [109] = {.lex_state = 4, .external_lex_state = 2}, [110] = {.lex_state = 4, .external_lex_state = 2}, [111] = {.lex_state = 4, .external_lex_state = 2}, [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 4, .external_lex_state = 2}, + [113] = {.lex_state = 2, .external_lex_state = 2}, [114] = {.lex_state = 4, .external_lex_state = 2}, [115] = {.lex_state = 4, .external_lex_state = 2}, [116] = {.lex_state = 4, .external_lex_state = 2}, @@ -10163,67 +10202,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 4, .external_lex_state = 2}, [123] = {.lex_state = 4, .external_lex_state = 2}, [124] = {.lex_state = 4, .external_lex_state = 2}, - [125] = {.lex_state = 4, .external_lex_state = 2}, + [125] = {.lex_state = 2, .external_lex_state = 2}, [126] = {.lex_state = 4, .external_lex_state = 2}, [127] = {.lex_state = 4, .external_lex_state = 2}, [128] = {.lex_state = 4, .external_lex_state = 2}, [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 2, .external_lex_state = 2}, - [131] = {.lex_state = 2, .external_lex_state = 2}, + [130] = {.lex_state = 4, .external_lex_state = 2}, + [131] = {.lex_state = 4, .external_lex_state = 2}, [132] = {.lex_state = 2, .external_lex_state = 2}, [133] = {.lex_state = 4, .external_lex_state = 2}, - [134] = {.lex_state = 2, .external_lex_state = 2}, - [135] = {.lex_state = 2, .external_lex_state = 2}, - [136] = {.lex_state = 2, .external_lex_state = 2}, - [137] = {.lex_state = 2, .external_lex_state = 2}, - [138] = {.lex_state = 2, .external_lex_state = 2}, - [139] = {.lex_state = 2, .external_lex_state = 2}, - [140] = {.lex_state = 11, .external_lex_state = 2}, - [141] = {.lex_state = 2, .external_lex_state = 2}, + [134] = {.lex_state = 11, .external_lex_state = 2}, + [135] = {.lex_state = 11, .external_lex_state = 2}, + [136] = {.lex_state = 11, .external_lex_state = 2}, + [137] = {.lex_state = 11, .external_lex_state = 2}, + [138] = {.lex_state = 11, .external_lex_state = 2}, + [139] = {.lex_state = 11, .external_lex_state = 2}, + [140] = {.lex_state = 2, .external_lex_state = 2}, + [141] = {.lex_state = 11, .external_lex_state = 2}, [142] = {.lex_state = 2, .external_lex_state = 2}, - [143] = {.lex_state = 2, .external_lex_state = 2}, + [143] = {.lex_state = 11, .external_lex_state = 2}, [144] = {.lex_state = 2, .external_lex_state = 2}, - [145] = {.lex_state = 11, .external_lex_state = 2}, + [145] = {.lex_state = 2, .external_lex_state = 2}, [146] = {.lex_state = 11, .external_lex_state = 2}, [147] = {.lex_state = 2, .external_lex_state = 2}, [148] = {.lex_state = 2, .external_lex_state = 2}, - [149] = {.lex_state = 2, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 11, .external_lex_state = 2}, + [149] = {.lex_state = 11, .external_lex_state = 2}, + [150] = {.lex_state = 2, .external_lex_state = 2}, + [151] = {.lex_state = 2, .external_lex_state = 2}, [152] = {.lex_state = 2, .external_lex_state = 2}, [153] = {.lex_state = 2, .external_lex_state = 2}, [154] = {.lex_state = 2, .external_lex_state = 2}, - [155] = {.lex_state = 11, .external_lex_state = 2}, - [156] = {.lex_state = 2, .external_lex_state = 2}, + [155] = {.lex_state = 2, .external_lex_state = 2}, + [156] = {.lex_state = 11, .external_lex_state = 2}, [157] = {.lex_state = 2, .external_lex_state = 2}, - [158] = {.lex_state = 11, .external_lex_state = 2}, + [158] = {.lex_state = 2, .external_lex_state = 2}, [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 4, .external_lex_state = 2}, + [160] = {.lex_state = 2, .external_lex_state = 2}, [161] = {.lex_state = 11, .external_lex_state = 2}, [162] = {.lex_state = 2, .external_lex_state = 2}, - [163] = {.lex_state = 11, .external_lex_state = 2}, + [163] = {.lex_state = 2, .external_lex_state = 2}, [164] = {.lex_state = 2, .external_lex_state = 2}, [165] = {.lex_state = 2, .external_lex_state = 2}, [166] = {.lex_state = 2, .external_lex_state = 2}, - [167] = {.lex_state = 2, .external_lex_state = 2}, - [168] = {.lex_state = 2, .external_lex_state = 2}, + [167] = {.lex_state = 11, .external_lex_state = 2}, + [168] = {.lex_state = 11, .external_lex_state = 2}, [169] = {.lex_state = 11, .external_lex_state = 2}, [170] = {.lex_state = 11, .external_lex_state = 2}, [171] = {.lex_state = 11, .external_lex_state = 2}, [172] = {.lex_state = 11, .external_lex_state = 2}, [173] = {.lex_state = 4, .external_lex_state = 2}, [174] = {.lex_state = 11, .external_lex_state = 2}, - [175] = {.lex_state = 4, .external_lex_state = 2}, - [176] = {.lex_state = 4, .external_lex_state = 2}, - [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 11, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, + [175] = {.lex_state = 11, .external_lex_state = 2}, + [176] = {.lex_state = 11, .external_lex_state = 2}, + [177] = {.lex_state = 11, .external_lex_state = 2}, + [178] = {.lex_state = 11, .external_lex_state = 2}, + [179] = {.lex_state = 2, .external_lex_state = 2}, + [180] = {.lex_state = 2, .external_lex_state = 2}, + [181] = {.lex_state = 2, .external_lex_state = 2}, [182] = {.lex_state = 11, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, + [183] = {.lex_state = 11, .external_lex_state = 2}, [184] = {.lex_state = 4, .external_lex_state = 2}, - [185] = {.lex_state = 4, .external_lex_state = 2}, + [185] = {.lex_state = 11, .external_lex_state = 2}, [186] = {.lex_state = 11, .external_lex_state = 2}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, @@ -10235,54 +10274,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 11, .external_lex_state = 2}, [195] = {.lex_state = 11, .external_lex_state = 2}, [196] = {.lex_state = 11, .external_lex_state = 2}, - [197] = {.lex_state = 11, .external_lex_state = 2}, - [198] = {.lex_state = 11, .external_lex_state = 2}, - [199] = {.lex_state = 11, .external_lex_state = 2}, + [197] = {.lex_state = 2, .external_lex_state = 2}, + [198] = {.lex_state = 4, .external_lex_state = 2}, + [199] = {.lex_state = 4, .external_lex_state = 2}, [200] = {.lex_state = 11, .external_lex_state = 2}, - [201] = {.lex_state = 11, .external_lex_state = 2}, - [202] = {.lex_state = 11, .external_lex_state = 2}, - [203] = {.lex_state = 11, .external_lex_state = 2}, - [204] = {.lex_state = 11, .external_lex_state = 2}, - [205] = {.lex_state = 11, .external_lex_state = 2}, + [201] = {.lex_state = 4, .external_lex_state = 2}, + [202] = {.lex_state = 4, .external_lex_state = 2}, + [203] = {.lex_state = 4, .external_lex_state = 2}, + [204] = {.lex_state = 4, .external_lex_state = 2}, + [205] = {.lex_state = 4, .external_lex_state = 2}, [206] = {.lex_state = 11, .external_lex_state = 2}, - [207] = {.lex_state = 11, .external_lex_state = 2}, - [208] = {.lex_state = 4, .external_lex_state = 2}, - [209] = {.lex_state = 11, .external_lex_state = 2}, + [207] = {.lex_state = 4, .external_lex_state = 2}, + [208] = {.lex_state = 11, .external_lex_state = 2}, + [209] = {.lex_state = 4, .external_lex_state = 2}, [210] = {.lex_state = 11, .external_lex_state = 2}, [211] = {.lex_state = 11, .external_lex_state = 2}, [212] = {.lex_state = 11, .external_lex_state = 2}, - [213] = {.lex_state = 11, .external_lex_state = 2}, - [214] = {.lex_state = 11, .external_lex_state = 2}, + [213] = {.lex_state = 4, .external_lex_state = 2}, + [214] = {.lex_state = 4, .external_lex_state = 2}, [215] = {.lex_state = 11, .external_lex_state = 2}, - [216] = {.lex_state = 11, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, [217] = {.lex_state = 13, .external_lex_state = 2}, [218] = {.lex_state = 11, .external_lex_state = 2}, [219] = {.lex_state = 11, .external_lex_state = 2}, [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 11, .external_lex_state = 2}, + [221] = {.lex_state = 13, .external_lex_state = 2}, [222] = {.lex_state = 11, .external_lex_state = 2}, - [223] = {.lex_state = 11, .external_lex_state = 2}, + [223] = {.lex_state = 13, .external_lex_state = 2}, [224] = {.lex_state = 13, .external_lex_state = 2}, - [225] = {.lex_state = 13, .external_lex_state = 2}, + [225] = {.lex_state = 11, .external_lex_state = 2}, [226] = {.lex_state = 11, .external_lex_state = 2}, [227] = {.lex_state = 11, .external_lex_state = 2}, - [228] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 11, .external_lex_state = 2}, [229] = {.lex_state = 11, .external_lex_state = 2}, - [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, + [230] = {.lex_state = 11, .external_lex_state = 2}, + [231] = {.lex_state = 11, .external_lex_state = 2}, [232] = {.lex_state = 13, .external_lex_state = 2}, [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 13, .external_lex_state = 2}, + [234] = {.lex_state = 11, .external_lex_state = 2}, [235] = {.lex_state = 13, .external_lex_state = 2}, [236] = {.lex_state = 13, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, - [238] = {.lex_state = 11, .external_lex_state = 2}, + [237] = {.lex_state = 11, .external_lex_state = 2}, + [238] = {.lex_state = 13, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, - [240] = {.lex_state = 11, .external_lex_state = 2}, + [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 11, .external_lex_state = 2}, + [242] = {.lex_state = 13, .external_lex_state = 2}, [243] = {.lex_state = 11, .external_lex_state = 2}, - [244] = {.lex_state = 69, .external_lex_state = 2}, + [244] = {.lex_state = 11, .external_lex_state = 2}, [245] = {.lex_state = 11, .external_lex_state = 2}, [246] = {.lex_state = 11, .external_lex_state = 2}, [247] = {.lex_state = 11, .external_lex_state = 2}, @@ -10299,7 +10338,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [258] = {.lex_state = 11, .external_lex_state = 2}, [259] = {.lex_state = 11, .external_lex_state = 2}, [260] = {.lex_state = 11, .external_lex_state = 2}, - [261] = {.lex_state = 69, .external_lex_state = 2}, + [261] = {.lex_state = 11, .external_lex_state = 2}, [262] = {.lex_state = 11, .external_lex_state = 2}, [263] = {.lex_state = 11, .external_lex_state = 2}, [264] = {.lex_state = 11, .external_lex_state = 2}, @@ -10361,22 +10400,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [320] = {.lex_state = 11, .external_lex_state = 2}, [321] = {.lex_state = 11, .external_lex_state = 2}, [322] = {.lex_state = 11, .external_lex_state = 2}, - [323] = {.lex_state = 69, .external_lex_state = 2}, + [323] = {.lex_state = 11, .external_lex_state = 2}, [324] = {.lex_state = 11, .external_lex_state = 2}, [325] = {.lex_state = 11, .external_lex_state = 2}, [326] = {.lex_state = 11, .external_lex_state = 2}, [327] = {.lex_state = 11, .external_lex_state = 2}, [328] = {.lex_state = 11, .external_lex_state = 2}, [329] = {.lex_state = 11, .external_lex_state = 2}, - [330] = {.lex_state = 11, .external_lex_state = 2}, + [330] = {.lex_state = 69, .external_lex_state = 2}, [331] = {.lex_state = 11, .external_lex_state = 2}, [332] = {.lex_state = 11, .external_lex_state = 2}, [333] = {.lex_state = 11, .external_lex_state = 2}, [334] = {.lex_state = 11, .external_lex_state = 2}, [335] = {.lex_state = 11, .external_lex_state = 2}, - [336] = {.lex_state = 69, .external_lex_state = 2}, + [336] = {.lex_state = 11, .external_lex_state = 2}, [337] = {.lex_state = 11, .external_lex_state = 2}, - [338] = {.lex_state = 69, .external_lex_state = 2}, + [338] = {.lex_state = 11, .external_lex_state = 2}, [339] = {.lex_state = 11, .external_lex_state = 2}, [340] = {.lex_state = 11, .external_lex_state = 2}, [341] = {.lex_state = 11, .external_lex_state = 2}, @@ -10385,7 +10424,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 11, .external_lex_state = 2}, [345] = {.lex_state = 11, .external_lex_state = 2}, [346] = {.lex_state = 11, .external_lex_state = 2}, - [347] = {.lex_state = 69, .external_lex_state = 2}, + [347] = {.lex_state = 11, .external_lex_state = 2}, [348] = {.lex_state = 11, .external_lex_state = 2}, [349] = {.lex_state = 11, .external_lex_state = 2}, [350] = {.lex_state = 11, .external_lex_state = 2}, @@ -10404,19 +10443,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [363] = {.lex_state = 11, .external_lex_state = 2}, [364] = {.lex_state = 11, .external_lex_state = 2}, [365] = {.lex_state = 11, .external_lex_state = 2}, - [366] = {.lex_state = 11, .external_lex_state = 2}, - [367] = {.lex_state = 11, .external_lex_state = 2}, - [368] = {.lex_state = 11, .external_lex_state = 2}, - [369] = {.lex_state = 11, .external_lex_state = 2}, - [370] = {.lex_state = 11, .external_lex_state = 2}, - [371] = {.lex_state = 12, .external_lex_state = 2}, + [366] = {.lex_state = 69, .external_lex_state = 2}, + [367] = {.lex_state = 69, .external_lex_state = 2}, + [368] = {.lex_state = 69, .external_lex_state = 2}, + [369] = {.lex_state = 69, .external_lex_state = 2}, + [370] = {.lex_state = 69, .external_lex_state = 2}, + [371] = {.lex_state = 69, .external_lex_state = 2}, [372] = {.lex_state = 69, .external_lex_state = 2}, - [373] = {.lex_state = 12, .external_lex_state = 2}, + [373] = {.lex_state = 69, .external_lex_state = 2}, [374] = {.lex_state = 69, .external_lex_state = 2}, [375] = {.lex_state = 69, .external_lex_state = 2}, [376] = {.lex_state = 69, .external_lex_state = 2}, [377] = {.lex_state = 69, .external_lex_state = 2}, - [378] = {.lex_state = 12, .external_lex_state = 2}, + [378] = {.lex_state = 69, .external_lex_state = 2}, [379] = {.lex_state = 69, .external_lex_state = 2}, [380] = {.lex_state = 69, .external_lex_state = 2}, [381] = {.lex_state = 69, .external_lex_state = 2}, @@ -10428,38 +10467,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [387] = {.lex_state = 69, .external_lex_state = 2}, [388] = {.lex_state = 69, .external_lex_state = 2}, [389] = {.lex_state = 69, .external_lex_state = 2}, - [390] = {.lex_state = 12, .external_lex_state = 2}, + [390] = {.lex_state = 69, .external_lex_state = 2}, [391] = {.lex_state = 69, .external_lex_state = 2}, [392] = {.lex_state = 69, .external_lex_state = 2}, [393] = {.lex_state = 69, .external_lex_state = 2}, [394] = {.lex_state = 69, .external_lex_state = 2}, [395] = {.lex_state = 69, .external_lex_state = 2}, [396] = {.lex_state = 12, .external_lex_state = 2}, - [397] = {.lex_state = 69, .external_lex_state = 2}, + [397] = {.lex_state = 12, .external_lex_state = 2}, [398] = {.lex_state = 12, .external_lex_state = 2}, - [399] = {.lex_state = 69, .external_lex_state = 2}, + [399] = {.lex_state = 12, .external_lex_state = 2}, [400] = {.lex_state = 12, .external_lex_state = 2}, [401] = {.lex_state = 12, .external_lex_state = 2}, - [402] = {.lex_state = 12, .external_lex_state = 2}, + [402] = {.lex_state = 69, .external_lex_state = 2}, [403] = {.lex_state = 12, .external_lex_state = 2}, - [404] = {.lex_state = 69, .external_lex_state = 2}, + [404] = {.lex_state = 12, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 2}, [406] = {.lex_state = 12, .external_lex_state = 2}, [407] = {.lex_state = 12, .external_lex_state = 2}, [408] = {.lex_state = 12, .external_lex_state = 2}, [409] = {.lex_state = 12, .external_lex_state = 2}, - [410] = {.lex_state = 11, .external_lex_state = 2}, + [410] = {.lex_state = 12, .external_lex_state = 2}, [411] = {.lex_state = 12, .external_lex_state = 2}, [412] = {.lex_state = 11, .external_lex_state = 2}, - [413] = {.lex_state = 11, .external_lex_state = 2}, - [414] = {.lex_state = 12, .external_lex_state = 2}, - [415] = {.lex_state = 12, .external_lex_state = 2}, + [413] = {.lex_state = 12, .external_lex_state = 2}, + [414] = {.lex_state = 11, .external_lex_state = 2}, + [415] = {.lex_state = 11, .external_lex_state = 2}, [416] = {.lex_state = 12, .external_lex_state = 2}, [417] = {.lex_state = 12, .external_lex_state = 2}, - [418] = {.lex_state = 11, .external_lex_state = 2}, - [419] = {.lex_state = 11, .external_lex_state = 2}, + [418] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 12, .external_lex_state = 2}, [420] = {.lex_state = 11, .external_lex_state = 2}, - [421] = {.lex_state = 11, .external_lex_state = 2}, + [421] = {.lex_state = 3, .external_lex_state = 2}, [422] = {.lex_state = 11, .external_lex_state = 2}, [423] = {.lex_state = 11, .external_lex_state = 2}, [424] = {.lex_state = 11, .external_lex_state = 2}, @@ -10467,12 +10506,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [426] = {.lex_state = 11, .external_lex_state = 2}, [427] = {.lex_state = 11, .external_lex_state = 2}, [428] = {.lex_state = 11, .external_lex_state = 2}, - [429] = {.lex_state = 3, .external_lex_state = 2}, - [430] = {.lex_state = 5, .external_lex_state = 2}, - [431] = {.lex_state = 13, .external_lex_state = 2}, - [432] = {.lex_state = 13, .external_lex_state = 2}, - [433] = {.lex_state = 11, .external_lex_state = 2}, - [434] = {.lex_state = 11, .external_lex_state = 2}, + [429] = {.lex_state = 11, .external_lex_state = 2}, + [430] = {.lex_state = 11, .external_lex_state = 2}, + [431] = {.lex_state = 11, .external_lex_state = 2}, + [432] = {.lex_state = 5, .external_lex_state = 2}, + [433] = {.lex_state = 13, .external_lex_state = 2}, + [434] = {.lex_state = 13, .external_lex_state = 2}, [435] = {.lex_state = 11, .external_lex_state = 2}, [436] = {.lex_state = 11, .external_lex_state = 2}, [437] = {.lex_state = 11, .external_lex_state = 2}, @@ -10484,8 +10523,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [443] = {.lex_state = 11, .external_lex_state = 2}, [444] = {.lex_state = 11, .external_lex_state = 2}, [445] = {.lex_state = 11, .external_lex_state = 2}, - [446] = {.lex_state = 3, .external_lex_state = 2}, - [447] = {.lex_state = 3, .external_lex_state = 2}, + [446] = {.lex_state = 11, .external_lex_state = 2}, + [447] = {.lex_state = 11, .external_lex_state = 2}, [448] = {.lex_state = 3, .external_lex_state = 2}, [449] = {.lex_state = 3, .external_lex_state = 2}, [450] = {.lex_state = 3, .external_lex_state = 2}, @@ -10494,29 +10533,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [453] = {.lex_state = 3, .external_lex_state = 2}, [454] = {.lex_state = 3, .external_lex_state = 2}, [455] = {.lex_state = 3, .external_lex_state = 2}, - [456] = {.lex_state = 11, .external_lex_state = 2}, + [456] = {.lex_state = 3, .external_lex_state = 2}, [457] = {.lex_state = 3, .external_lex_state = 2}, [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 11, .external_lex_state = 2}, + [459] = {.lex_state = 3, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, - [461] = {.lex_state = 11, .external_lex_state = 2}, - [462] = {.lex_state = 3, .external_lex_state = 2}, + [461] = {.lex_state = 3, .external_lex_state = 2}, + [462] = {.lex_state = 11, .external_lex_state = 2}, [463] = {.lex_state = 3, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 3, .external_lex_state = 2}, + [466] = {.lex_state = 11, .external_lex_state = 2}, [467] = {.lex_state = 3, .external_lex_state = 2}, [468] = {.lex_state = 3, .external_lex_state = 2}, - [469] = {.lex_state = 3, .external_lex_state = 2}, + [469] = {.lex_state = 11, .external_lex_state = 2}, [470] = {.lex_state = 3, .external_lex_state = 2}, - [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 11, .external_lex_state = 2}, + [471] = {.lex_state = 11, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, [474] = {.lex_state = 3, .external_lex_state = 2}, - [475] = {.lex_state = 11, .external_lex_state = 2}, - [476] = {.lex_state = 11, .external_lex_state = 2}, - [477] = {.lex_state = 11, .external_lex_state = 2}, - [478] = {.lex_state = 11, .external_lex_state = 2}, + [475] = {.lex_state = 3, .external_lex_state = 2}, + [476] = {.lex_state = 3, .external_lex_state = 2}, + [477] = {.lex_state = 3, .external_lex_state = 2}, + [478] = {.lex_state = 3, .external_lex_state = 2}, [479] = {.lex_state = 71, .external_lex_state = 2}, [480] = {.lex_state = 71, .external_lex_state = 2}, [481] = {.lex_state = 71, .external_lex_state = 2}, @@ -10651,7 +10690,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [610] = {.lex_state = 71, .external_lex_state = 2}, [611] = {.lex_state = 71, .external_lex_state = 2}, [612] = {.lex_state = 71, .external_lex_state = 2}, - [613] = {.lex_state = 71, .external_lex_state = 2}, + [613] = {.lex_state = 11, .external_lex_state = 2}, [614] = {.lex_state = 71, .external_lex_state = 2}, [615] = {.lex_state = 71, .external_lex_state = 2}, [616] = {.lex_state = 71, .external_lex_state = 2}, @@ -10684,7 +10723,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [643] = {.lex_state = 71, .external_lex_state = 2}, [644] = {.lex_state = 71, .external_lex_state = 2}, [645] = {.lex_state = 71, .external_lex_state = 2}, - [646] = {.lex_state = 10}, + [646] = {.lex_state = 71, .external_lex_state = 2}, [647] = {.lex_state = 71, .external_lex_state = 2}, [648] = {.lex_state = 71, .external_lex_state = 2}, [649] = {.lex_state = 71, .external_lex_state = 2}, @@ -10692,7 +10731,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [651] = {.lex_state = 71, .external_lex_state = 2}, [652] = {.lex_state = 71, .external_lex_state = 2}, [653] = {.lex_state = 71, .external_lex_state = 2}, - [654] = {.lex_state = 10}, + [654] = {.lex_state = 71, .external_lex_state = 2}, [655] = {.lex_state = 71, .external_lex_state = 2}, [656] = {.lex_state = 71, .external_lex_state = 2}, [657] = {.lex_state = 71, .external_lex_state = 2}, @@ -10728,15 +10767,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 71, .external_lex_state = 2}, [688] = {.lex_state = 71, .external_lex_state = 2}, [689] = {.lex_state = 71, .external_lex_state = 2}, - [690] = {.lex_state = 10}, + [690] = {.lex_state = 71, .external_lex_state = 2}, [691] = {.lex_state = 71, .external_lex_state = 2}, - [692] = {.lex_state = 10}, + [692] = {.lex_state = 71, .external_lex_state = 2}, [693] = {.lex_state = 71, .external_lex_state = 2}, [694] = {.lex_state = 71, .external_lex_state = 2}, [695] = {.lex_state = 71, .external_lex_state = 2}, [696] = {.lex_state = 71, .external_lex_state = 2}, [697] = {.lex_state = 71, .external_lex_state = 2}, - [698] = {.lex_state = 10}, + [698] = {.lex_state = 71, .external_lex_state = 2}, [699] = {.lex_state = 71, .external_lex_state = 2}, [700] = {.lex_state = 71, .external_lex_state = 2}, [701] = {.lex_state = 71, .external_lex_state = 2}, @@ -10759,7 +10798,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [718] = {.lex_state = 71, .external_lex_state = 2}, [719] = {.lex_state = 71, .external_lex_state = 2}, [720] = {.lex_state = 71, .external_lex_state = 2}, - [721] = {.lex_state = 11, .external_lex_state = 2}, + [721] = {.lex_state = 71, .external_lex_state = 2}, [722] = {.lex_state = 71, .external_lex_state = 2}, [723] = {.lex_state = 71, .external_lex_state = 2}, [724] = {.lex_state = 71, .external_lex_state = 2}, @@ -10776,7 +10815,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [735] = {.lex_state = 71, .external_lex_state = 2}, [736] = {.lex_state = 71, .external_lex_state = 2}, [737] = {.lex_state = 71, .external_lex_state = 2}, - [738] = {.lex_state = 71, .external_lex_state = 2}, + [738] = {.lex_state = 11, .external_lex_state = 2}, [739] = {.lex_state = 71, .external_lex_state = 2}, [740] = {.lex_state = 71, .external_lex_state = 2}, [741] = {.lex_state = 71, .external_lex_state = 2}, @@ -10784,48 +10823,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [743] = {.lex_state = 71, .external_lex_state = 2}, [744] = {.lex_state = 71, .external_lex_state = 2}, [745] = {.lex_state = 71, .external_lex_state = 2}, - [746] = {.lex_state = 71, .external_lex_state = 2}, + [746] = {.lex_state = 11, .external_lex_state = 2}, [747] = {.lex_state = 71, .external_lex_state = 2}, - [748] = {.lex_state = 71, .external_lex_state = 2}, + [748] = {.lex_state = 11, .external_lex_state = 2}, [749] = {.lex_state = 71, .external_lex_state = 2}, [750] = {.lex_state = 71, .external_lex_state = 2}, [751] = {.lex_state = 71, .external_lex_state = 2}, - [752] = {.lex_state = 71, .external_lex_state = 2}, - [753] = {.lex_state = 71, .external_lex_state = 2}, - [754] = {.lex_state = 11, .external_lex_state = 2}, - [755] = {.lex_state = 11, .external_lex_state = 2}, - [756] = {.lex_state = 11, .external_lex_state = 2}, - [757] = {.lex_state = 11, .external_lex_state = 2}, + [752] = {.lex_state = 10}, + [753] = {.lex_state = 11, .external_lex_state = 2}, + [754] = {.lex_state = 10}, + [755] = {.lex_state = 10}, + [756] = {.lex_state = 10}, + [757] = {.lex_state = 10}, [758] = {.lex_state = 11, .external_lex_state = 2}, [759] = {.lex_state = 11, .external_lex_state = 2}, [760] = {.lex_state = 11, .external_lex_state = 2}, [761] = {.lex_state = 11, .external_lex_state = 2}, [762] = {.lex_state = 11, .external_lex_state = 2}, - [763] = {.lex_state = 14}, - [764] = {.lex_state = 14}, - [765] = {.lex_state = 14}, + [763] = {.lex_state = 11, .external_lex_state = 2}, + [764] = {.lex_state = 11, .external_lex_state = 2}, + [765] = {.lex_state = 11, .external_lex_state = 2}, [766] = {.lex_state = 14}, [767] = {.lex_state = 14}, - [768] = {.lex_state = 14}, + [768] = {.lex_state = 11, .external_lex_state = 2}, [769] = {.lex_state = 14}, [770] = {.lex_state = 14}, - [771] = {.lex_state = 11, .external_lex_state = 2}, + [771] = {.lex_state = 14}, [772] = {.lex_state = 14}, - [773] = {.lex_state = 11, .external_lex_state = 2}, + [773] = {.lex_state = 14}, [774] = {.lex_state = 14}, - [775] = {.lex_state = 11, .external_lex_state = 2}, + [775] = {.lex_state = 14}, [776] = {.lex_state = 11, .external_lex_state = 2}, - [777] = {.lex_state = 14}, - [778] = {.lex_state = 11, .external_lex_state = 2}, + [777] = {.lex_state = 11, .external_lex_state = 2}, + [778] = {.lex_state = 14}, [779] = {.lex_state = 11, .external_lex_state = 2}, - [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 12, .external_lex_state = 2}, + [780] = {.lex_state = 14}, + [781] = {.lex_state = 11, .external_lex_state = 2}, [782] = {.lex_state = 11, .external_lex_state = 2}, [783] = {.lex_state = 11, .external_lex_state = 2}, [784] = {.lex_state = 11, .external_lex_state = 2}, [785] = {.lex_state = 11, .external_lex_state = 2}, [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 11, .external_lex_state = 2}, + [787] = {.lex_state = 12, .external_lex_state = 2}, [788] = {.lex_state = 11, .external_lex_state = 2}, [789] = {.lex_state = 11, .external_lex_state = 2}, [790] = {.lex_state = 11, .external_lex_state = 2}, @@ -10867,10 +10906,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [826] = {.lex_state = 11, .external_lex_state = 2}, [827] = {.lex_state = 11, .external_lex_state = 2}, [828] = {.lex_state = 11, .external_lex_state = 2}, - [829] = {.lex_state = 14}, - [830] = {.lex_state = 14}, - [831] = {.lex_state = 14}, - [832] = {.lex_state = 14}, + [829] = {.lex_state = 11, .external_lex_state = 2}, + [830] = {.lex_state = 11, .external_lex_state = 2}, + [831] = {.lex_state = 11, .external_lex_state = 2}, + [832] = {.lex_state = 11, .external_lex_state = 2}, [833] = {.lex_state = 14}, [834] = {.lex_state = 14}, [835] = {.lex_state = 14}, @@ -10878,7 +10917,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [837] = {.lex_state = 14}, [838] = {.lex_state = 14}, [839] = {.lex_state = 14}, - [840] = {.lex_state = 14}, + [840] = {.lex_state = 11, .external_lex_state = 2}, [841] = {.lex_state = 14}, [842] = {.lex_state = 14}, [843] = {.lex_state = 14}, @@ -10946,12 +10985,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 14}, [906] = {.lex_state = 14}, [907] = {.lex_state = 14}, - [908] = {.lex_state = 11, .external_lex_state = 2}, + [908] = {.lex_state = 14}, [909] = {.lex_state = 14}, [910] = {.lex_state = 14}, [911] = {.lex_state = 14}, [912] = {.lex_state = 14}, - [913] = {.lex_state = 14}, + [913] = {.lex_state = 11, .external_lex_state = 2}, [914] = {.lex_state = 14}, [915] = {.lex_state = 14}, [916] = {.lex_state = 14}, @@ -11040,106 +11079,106 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [999] = {.lex_state = 14}, [1000] = {.lex_state = 14}, [1001] = {.lex_state = 14}, - [1002] = {.lex_state = 11, .external_lex_state = 2}, - [1003] = {.lex_state = 11, .external_lex_state = 2}, - [1004] = {.lex_state = 13, .external_lex_state = 2}, - [1005] = {.lex_state = 13, .external_lex_state = 2}, - [1006] = {.lex_state = 11, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, - [1008] = {.lex_state = 14}, - [1009] = {.lex_state = 11, .external_lex_state = 2}, + [1002] = {.lex_state = 14}, + [1003] = {.lex_state = 14}, + [1004] = {.lex_state = 14}, + [1005] = {.lex_state = 14}, + [1006] = {.lex_state = 14}, + [1007] = {.lex_state = 11, .external_lex_state = 2}, + [1008] = {.lex_state = 13, .external_lex_state = 2}, + [1009] = {.lex_state = 13, .external_lex_state = 2}, [1010] = {.lex_state = 11, .external_lex_state = 2}, - [1011] = {.lex_state = 6}, - [1012] = {.lex_state = 6}, - [1013] = {.lex_state = 6}, - [1014] = {.lex_state = 6}, - [1015] = {.lex_state = 10}, + [1011] = {.lex_state = 12, .external_lex_state = 2}, + [1012] = {.lex_state = 14}, + [1013] = {.lex_state = 11, .external_lex_state = 2}, + [1014] = {.lex_state = 11, .external_lex_state = 2}, + [1015] = {.lex_state = 6}, [1016] = {.lex_state = 6}, [1017] = {.lex_state = 6}, - [1018] = {.lex_state = 10}, - [1019] = {.lex_state = 10}, + [1018] = {.lex_state = 6}, + [1019] = {.lex_state = 6}, [1020] = {.lex_state = 10}, - [1021] = {.lex_state = 6}, + [1021] = {.lex_state = 10}, [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 10}, - [1024] = {.lex_state = 6}, - [1025] = {.lex_state = 10}, + [1023] = {.lex_state = 6}, + [1024] = {.lex_state = 10}, + [1025] = {.lex_state = 6}, [1026] = {.lex_state = 10}, [1027] = {.lex_state = 10}, [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 6}, - [1030] = {.lex_state = 10}, + [1029] = {.lex_state = 10}, + [1030] = {.lex_state = 6}, [1031] = {.lex_state = 6}, - [1032] = {.lex_state = 7}, - [1033] = {.lex_state = 7}, - [1034] = {.lex_state = 7}, - [1035] = {.lex_state = 22}, - [1036] = {.lex_state = 7}, - [1037] = {.lex_state = 22}, + [1032] = {.lex_state = 10}, + [1033] = {.lex_state = 6}, + [1034] = {.lex_state = 10}, + [1035] = {.lex_state = 10}, + [1036] = {.lex_state = 22}, + [1037] = {.lex_state = 11, .external_lex_state = 2}, [1038] = {.lex_state = 22}, - [1039] = {.lex_state = 22}, + [1039] = {.lex_state = 7}, [1040] = {.lex_state = 7}, - [1041] = {.lex_state = 11, .external_lex_state = 2}, - [1042] = {.lex_state = 7}, - [1043] = {.lex_state = 22}, - [1044] = {.lex_state = 18}, + [1041] = {.lex_state = 22}, + [1042] = {.lex_state = 22}, + [1043] = {.lex_state = 7}, + [1044] = {.lex_state = 7}, [1045] = {.lex_state = 7}, - [1046] = {.lex_state = 7}, + [1046] = {.lex_state = 22}, [1047] = {.lex_state = 7}, [1048] = {.lex_state = 7}, - [1049] = {.lex_state = 18}, + [1049] = {.lex_state = 7}, [1050] = {.lex_state = 7}, [1051] = {.lex_state = 7}, - [1052] = {.lex_state = 7}, - [1053] = {.lex_state = 18}, - [1054] = {.lex_state = 14}, + [1052] = {.lex_state = 14}, + [1053] = {.lex_state = 7}, + [1054] = {.lex_state = 7}, [1055] = {.lex_state = 7}, - [1056] = {.lex_state = 7}, - [1057] = {.lex_state = 7}, - [1058] = {.lex_state = 7}, + [1056] = {.lex_state = 14}, + [1057] = {.lex_state = 19}, + [1058] = {.lex_state = 18}, [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 18}, + [1060] = {.lex_state = 7}, [1061] = {.lex_state = 18}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 19}, + [1062] = {.lex_state = 18}, + [1063] = {.lex_state = 7}, [1064] = {.lex_state = 6}, - [1065] = {.lex_state = 14}, + [1065] = {.lex_state = 18}, [1066] = {.lex_state = 18}, [1067] = {.lex_state = 18}, - [1068] = {.lex_state = 14}, + [1068] = {.lex_state = 7}, [1069] = {.lex_state = 7}, - [1070] = {.lex_state = 7}, + [1070] = {.lex_state = 18}, [1071] = {.lex_state = 7}, - [1072] = {.lex_state = 7}, + [1072] = {.lex_state = 18}, [1073] = {.lex_state = 7}, - [1074] = {.lex_state = 14}, + [1074] = {.lex_state = 18}, [1075] = {.lex_state = 7}, - [1076] = {.lex_state = 7}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 7}, - [1079] = {.lex_state = 14}, - [1080] = {.lex_state = 19}, - [1081] = {.lex_state = 18}, - [1082] = {.lex_state = 14}, - [1083] = {.lex_state = 18}, + [1076] = {.lex_state = 18}, + [1077] = {.lex_state = 7}, + [1078] = {.lex_state = 18}, + [1079] = {.lex_state = 7}, + [1080] = {.lex_state = 7}, + [1081] = {.lex_state = 7}, + [1082] = {.lex_state = 7}, + [1083] = {.lex_state = 7}, [1084] = {.lex_state = 14}, - [1085] = {.lex_state = 18}, - [1086] = {.lex_state = 18}, - [1087] = {.lex_state = 18}, - [1088] = {.lex_state = 7}, + [1085] = {.lex_state = 14}, + [1086] = {.lex_state = 14}, + [1087] = {.lex_state = 14}, + [1088] = {.lex_state = 14}, [1089] = {.lex_state = 7}, - [1090] = {.lex_state = 7}, - [1091] = {.lex_state = 7}, - [1092] = {.lex_state = 10}, - [1093] = {.lex_state = 10}, - [1094] = {.lex_state = 10}, - [1095] = {.lex_state = 10}, - [1096] = {.lex_state = 10}, - [1097] = {.lex_state = 10}, + [1090] = {.lex_state = 14}, + [1091] = {.lex_state = 14}, + [1092] = {.lex_state = 7}, + [1093] = {.lex_state = 19}, + [1094] = {.lex_state = 18}, + [1095] = {.lex_state = 7}, + [1096] = {.lex_state = 7}, + [1097] = {.lex_state = 7}, [1098] = {.lex_state = 10}, [1099] = {.lex_state = 10}, [1100] = {.lex_state = 10}, - [1101] = {.lex_state = 10}, + [1101] = {.lex_state = 7}, [1102] = {.lex_state = 10}, [1103] = {.lex_state = 10}, [1104] = {.lex_state = 10}, @@ -11148,41 +11187,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1107] = {.lex_state = 10}, [1108] = {.lex_state = 10}, [1109] = {.lex_state = 10}, - [1110] = {.lex_state = 10}, - [1111] = {.lex_state = 10}, + [1110] = {.lex_state = 7}, + [1111] = {.lex_state = 7}, [1112] = {.lex_state = 10}, [1113] = {.lex_state = 10}, [1114] = {.lex_state = 10}, [1115] = {.lex_state = 10}, [1116] = {.lex_state = 10}, - [1117] = {.lex_state = 10}, - [1118] = {.lex_state = 10}, - [1119] = {.lex_state = 10}, - [1120] = {.lex_state = 10}, - [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 10}, + [1117] = {.lex_state = 7}, + [1118] = {.lex_state = 7}, + [1119] = {.lex_state = 7}, + [1120] = {.lex_state = 7}, + [1121] = {.lex_state = 7}, + [1122] = {.lex_state = 7}, [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 10}, + [1124] = {.lex_state = 14}, [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 10}, + [1126] = {.lex_state = 7}, [1127] = {.lex_state = 7}, - [1128] = {.lex_state = 10}, - [1129] = {.lex_state = 10}, - [1130] = {.lex_state = 7}, - [1131] = {.lex_state = 10}, + [1128] = {.lex_state = 7}, + [1129] = {.lex_state = 7}, + [1130] = {.lex_state = 14}, + [1131] = {.lex_state = 7}, [1132] = {.lex_state = 10}, [1133] = {.lex_state = 10}, [1134] = {.lex_state = 10}, [1135] = {.lex_state = 10}, [1136] = {.lex_state = 10}, - [1137] = {.lex_state = 10}, + [1137] = {.lex_state = 7}, [1138] = {.lex_state = 10}, [1139] = {.lex_state = 10}, [1140] = {.lex_state = 10}, [1141] = {.lex_state = 10}, [1142] = {.lex_state = 10}, - [1143] = {.lex_state = 10}, - [1144] = {.lex_state = 10}, + [1143] = {.lex_state = 7}, + [1144] = {.lex_state = 14}, [1145] = {.lex_state = 10}, [1146] = {.lex_state = 10}, [1147] = {.lex_state = 10}, @@ -11207,116 +11246,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1166] = {.lex_state = 10}, [1167] = {.lex_state = 10}, [1168] = {.lex_state = 10}, - [1169] = {.lex_state = 10}, + [1169] = {.lex_state = 7}, [1170] = {.lex_state = 10}, [1171] = {.lex_state = 10}, - [1172] = {.lex_state = 10}, - [1173] = {.lex_state = 10}, - [1174] = {.lex_state = 10}, - [1175] = {.lex_state = 10}, - [1176] = {.lex_state = 10}, - [1177] = {.lex_state = 10}, - [1178] = {.lex_state = 10}, - [1179] = {.lex_state = 10}, - [1180] = {.lex_state = 10}, - [1181] = {.lex_state = 10}, + [1172] = {.lex_state = 7}, + [1173] = {.lex_state = 7}, + [1174] = {.lex_state = 7}, + [1175] = {.lex_state = 7}, + [1176] = {.lex_state = 7}, + [1177] = {.lex_state = 7}, + [1178] = {.lex_state = 7}, + [1179] = {.lex_state = 7}, + [1180] = {.lex_state = 7}, + [1181] = {.lex_state = 7}, [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 7}, - [1184] = {.lex_state = 10}, + [1183] = {.lex_state = 10}, + [1184] = {.lex_state = 7}, [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 7}, + [1186] = {.lex_state = 10}, [1187] = {.lex_state = 10}, [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 7}, + [1189] = {.lex_state = 10}, [1190] = {.lex_state = 10}, - [1191] = {.lex_state = 10}, + [1191] = {.lex_state = 7}, [1192] = {.lex_state = 7}, - [1193] = {.lex_state = 7}, + [1193] = {.lex_state = 10}, [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 7}, - [1196] = {.lex_state = 7}, + [1195] = {.lex_state = 10}, + [1196] = {.lex_state = 10}, [1197] = {.lex_state = 10}, - [1198] = {.lex_state = 7}, - [1199] = {.lex_state = 7}, + [1198] = {.lex_state = 10}, + [1199] = {.lex_state = 10}, [1200] = {.lex_state = 10}, [1201] = {.lex_state = 10}, [1202] = {.lex_state = 7}, [1203] = {.lex_state = 10}, - [1204] = {.lex_state = 10}, - [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 7}, - [1207] = {.lex_state = 7}, - [1208] = {.lex_state = 7}, - [1209] = {.lex_state = 7}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 7}, - [1212] = {.lex_state = 7}, - [1213] = {.lex_state = 7}, - [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 12, .external_lex_state = 2}, - [1217] = {.lex_state = 7}, - [1218] = {.lex_state = 7}, - [1219] = {.lex_state = 7}, - [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 7}, - [1222] = {.lex_state = 7}, - [1223] = {.lex_state = 7}, - [1224] = {.lex_state = 7}, - [1225] = {.lex_state = 7}, - [1226] = {.lex_state = 7}, + [1204] = {.lex_state = 7}, + [1205] = {.lex_state = 10}, + [1206] = {.lex_state = 10}, + [1207] = {.lex_state = 10}, + [1208] = {.lex_state = 10}, + [1209] = {.lex_state = 10}, + [1210] = {.lex_state = 10}, + [1211] = {.lex_state = 10}, + [1212] = {.lex_state = 10}, + [1213] = {.lex_state = 10}, + [1214] = {.lex_state = 10}, + [1215] = {.lex_state = 10}, + [1216] = {.lex_state = 10}, + [1217] = {.lex_state = 10}, + [1218] = {.lex_state = 10}, + [1219] = {.lex_state = 10}, + [1220] = {.lex_state = 10}, + [1221] = {.lex_state = 10}, + [1222] = {.lex_state = 10}, + [1223] = {.lex_state = 10}, + [1224] = {.lex_state = 10}, + [1225] = {.lex_state = 10}, + [1226] = {.lex_state = 10}, [1227] = {.lex_state = 10}, - [1228] = {.lex_state = 7}, - [1229] = {.lex_state = 14}, - [1230] = {.lex_state = 14}, - [1231] = {.lex_state = 7}, + [1228] = {.lex_state = 10}, + [1229] = {.lex_state = 10}, + [1230] = {.lex_state = 10}, + [1231] = {.lex_state = 10}, [1232] = {.lex_state = 10}, [1233] = {.lex_state = 10}, [1234] = {.lex_state = 10}, - [1235] = {.lex_state = 10}, - [1236] = {.lex_state = 10}, - [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 7}, - [1239] = {.lex_state = 7}, - [1240] = {.lex_state = 10}, + [1235] = {.lex_state = 7}, + [1236] = {.lex_state = 7}, + [1237] = {.lex_state = 10}, + [1238] = {.lex_state = 10}, + [1239] = {.lex_state = 12, .external_lex_state = 2}, + [1240] = {.lex_state = 7}, [1241] = {.lex_state = 7}, - [1242] = {.lex_state = 10}, - [1243] = {.lex_state = 11, .external_lex_state = 2}, - [1244] = {.lex_state = 10}, - [1245] = {.lex_state = 10}, - [1246] = {.lex_state = 10}, + [1242] = {.lex_state = 7}, + [1243] = {.lex_state = 7}, + [1244] = {.lex_state = 7}, + [1245] = {.lex_state = 7}, + [1246] = {.lex_state = 7}, [1247] = {.lex_state = 10}, - [1248] = {.lex_state = 7}, - [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 7}, + [1248] = {.lex_state = 10}, + [1249] = {.lex_state = 10}, + [1250] = {.lex_state = 10}, + [1251] = {.lex_state = 10}, [1252] = {.lex_state = 10}, [1253] = {.lex_state = 10}, [1254] = {.lex_state = 10}, [1255] = {.lex_state = 10}, [1256] = {.lex_state = 10}, - [1257] = {.lex_state = 7}, + [1257] = {.lex_state = 10}, [1258] = {.lex_state = 10}, [1259] = {.lex_state = 10}, - [1260] = {.lex_state = 14}, - [1261] = {.lex_state = 14}, - [1262] = {.lex_state = 7}, + [1260] = {.lex_state = 10}, + [1261] = {.lex_state = 10}, + [1262] = {.lex_state = 10}, [1263] = {.lex_state = 10}, - [1264] = {.lex_state = 7}, + [1264] = {.lex_state = 10}, [1265] = {.lex_state = 10}, [1266] = {.lex_state = 10}, - [1267] = {.lex_state = 10}, + [1267] = {.lex_state = 7}, [1268] = {.lex_state = 10}, [1269] = {.lex_state = 7}, [1270] = {.lex_state = 10}, [1271] = {.lex_state = 10}, - [1272] = {.lex_state = 14}, - [1273] = {.lex_state = 14}, - [1274] = {.lex_state = 7}, - [1275] = {.lex_state = 14}, + [1272] = {.lex_state = 10}, + [1273] = {.lex_state = 10}, + [1274] = {.lex_state = 10}, + [1275] = {.lex_state = 10}, [1276] = {.lex_state = 10}, [1277] = {.lex_state = 10}, - [1278] = {.lex_state = 7}, + [1278] = {.lex_state = 10}, [1279] = {.lex_state = 10}, [1280] = {.lex_state = 10}, [1281] = {.lex_state = 10}, @@ -11324,46 +11363,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1283] = {.lex_state = 10}, [1284] = {.lex_state = 10}, [1285] = {.lex_state = 10}, - [1286] = {.lex_state = 7}, - [1287] = {.lex_state = 7}, - [1288] = {.lex_state = 11, .external_lex_state = 2}, + [1286] = {.lex_state = 10}, + [1287] = {.lex_state = 10}, + [1288] = {.lex_state = 10}, [1289] = {.lex_state = 10}, [1290] = {.lex_state = 10}, - [1291] = {.lex_state = 7}, - [1292] = {.lex_state = 7}, - [1293] = {.lex_state = 7}, - [1294] = {.lex_state = 7}, - [1295] = {.lex_state = 7}, - [1296] = {.lex_state = 7}, + [1291] = {.lex_state = 10}, + [1292] = {.lex_state = 10}, + [1293] = {.lex_state = 10}, + [1294] = {.lex_state = 10}, + [1295] = {.lex_state = 10}, + [1296] = {.lex_state = 10}, [1297] = {.lex_state = 7}, [1298] = {.lex_state = 7}, - [1299] = {.lex_state = 7}, - [1300] = {.lex_state = 7}, - [1301] = {.lex_state = 10}, - [1302] = {.lex_state = 7}, - [1303] = {.lex_state = 12, .external_lex_state = 2}, - [1304] = {.lex_state = 7}, - [1305] = {.lex_state = 7}, + [1299] = {.lex_state = 10}, + [1300] = {.lex_state = 10}, + [1301] = {.lex_state = 7}, + [1302] = {.lex_state = 12, .external_lex_state = 2}, + [1303] = {.lex_state = 7}, + [1304] = {.lex_state = 10}, + [1305] = {.lex_state = 10}, [1306] = {.lex_state = 10}, [1307] = {.lex_state = 10}, - [1308] = {.lex_state = 7}, - [1309] = {.lex_state = 7}, - [1310] = {.lex_state = 7}, - [1311] = {.lex_state = 7}, + [1308] = {.lex_state = 10}, + [1309] = {.lex_state = 10}, + [1310] = {.lex_state = 10}, + [1311] = {.lex_state = 10}, [1312] = {.lex_state = 10}, - [1313] = {.lex_state = 7}, + [1313] = {.lex_state = 10}, [1314] = {.lex_state = 10}, [1315] = {.lex_state = 10}, [1316] = {.lex_state = 10}, [1317] = {.lex_state = 10}, [1318] = {.lex_state = 10}, - [1319] = {.lex_state = 7}, - [1320] = {.lex_state = 7}, - [1321] = {.lex_state = 7}, - [1322] = {.lex_state = 7}, - [1323] = {.lex_state = 7}, - [1324] = {.lex_state = 7}, - [1325] = {.lex_state = 7}, + [1319] = {.lex_state = 10}, + [1320] = {.lex_state = 10}, + [1321] = {.lex_state = 10}, + [1322] = {.lex_state = 10}, + [1323] = {.lex_state = 10}, + [1324] = {.lex_state = 10}, + [1325] = {.lex_state = 10}, [1326] = {.lex_state = 10}, [1327] = {.lex_state = 7}, [1328] = {.lex_state = 10}, @@ -11374,8 +11413,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1333] = {.lex_state = 10}, [1334] = {.lex_state = 10}, [1335] = {.lex_state = 10}, - [1336] = {.lex_state = 7}, - [1337] = {.lex_state = 7}, + [1336] = {.lex_state = 10}, + [1337] = {.lex_state = 10}, [1338] = {.lex_state = 10}, [1339] = {.lex_state = 10}, [1340] = {.lex_state = 10}, @@ -11392,8 +11431,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1351] = {.lex_state = 10}, [1352] = {.lex_state = 10}, [1353] = {.lex_state = 7}, - [1354] = {.lex_state = 10}, - [1355] = {.lex_state = 10}, + [1354] = {.lex_state = 7}, + [1355] = {.lex_state = 7}, [1356] = {.lex_state = 10}, [1357] = {.lex_state = 10}, [1358] = {.lex_state = 10}, @@ -11403,35 +11442,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 10}, [1363] = {.lex_state = 10}, [1364] = {.lex_state = 10}, - [1365] = {.lex_state = 14}, - [1366] = {.lex_state = 14}, - [1367] = {.lex_state = 14}, + [1365] = {.lex_state = 10}, + [1366] = {.lex_state = 10}, + [1367] = {.lex_state = 7}, [1368] = {.lex_state = 10}, - [1369] = {.lex_state = 7}, + [1369] = {.lex_state = 10}, [1370] = {.lex_state = 10}, [1371] = {.lex_state = 10}, [1372] = {.lex_state = 10}, [1373] = {.lex_state = 10}, [1374] = {.lex_state = 10}, - [1375] = {.lex_state = 7}, - [1376] = {.lex_state = 7}, - [1377] = {.lex_state = 7}, + [1375] = {.lex_state = 10}, + [1376] = {.lex_state = 10}, + [1377] = {.lex_state = 10}, [1378] = {.lex_state = 10}, [1379] = {.lex_state = 10}, - [1380] = {.lex_state = 7}, - [1381] = {.lex_state = 7}, - [1382] = {.lex_state = 7}, - [1383] = {.lex_state = 7}, - [1384] = {.lex_state = 7}, - [1385] = {.lex_state = 7}, - [1386] = {.lex_state = 7}, - [1387] = {.lex_state = 7}, - [1388] = {.lex_state = 7}, - [1389] = {.lex_state = 7}, + [1380] = {.lex_state = 10}, + [1381] = {.lex_state = 10}, + [1382] = {.lex_state = 10}, + [1383] = {.lex_state = 10}, + [1384] = {.lex_state = 10}, + [1385] = {.lex_state = 10}, + [1386] = {.lex_state = 10}, + [1387] = {.lex_state = 10}, + [1388] = {.lex_state = 10}, + [1389] = {.lex_state = 10}, [1390] = {.lex_state = 10}, - [1391] = {.lex_state = 7}, + [1391] = {.lex_state = 10}, [1392] = {.lex_state = 10}, - [1393] = {.lex_state = 7}, + [1393] = {.lex_state = 10}, [1394] = {.lex_state = 10}, [1395] = {.lex_state = 10}, [1396] = {.lex_state = 10}, @@ -11446,239 +11485,239 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1405] = {.lex_state = 10}, [1406] = {.lex_state = 10}, [1407] = {.lex_state = 10}, - [1408] = {.lex_state = 10}, - [1409] = {.lex_state = 10}, + [1408] = {.lex_state = 7}, + [1409] = {.lex_state = 7}, [1410] = {.lex_state = 10}, - [1411] = {.lex_state = 10}, - [1412] = {.lex_state = 10}, + [1411] = {.lex_state = 7}, + [1412] = {.lex_state = 7}, [1413] = {.lex_state = 7}, - [1414] = {.lex_state = 10}, - [1415] = {.lex_state = 10}, - [1416] = {.lex_state = 10}, - [1417] = {.lex_state = 10}, + [1414] = {.lex_state = 7}, + [1415] = {.lex_state = 7}, + [1416] = {.lex_state = 7}, + [1417] = {.lex_state = 7}, [1418] = {.lex_state = 7}, [1419] = {.lex_state = 7}, - [1420] = {.lex_state = 10}, - [1421] = {.lex_state = 10}, - [1422] = {.lex_state = 10}, - [1423] = {.lex_state = 10}, - [1424] = {.lex_state = 10}, - [1425] = {.lex_state = 10}, - [1426] = {.lex_state = 10}, - [1427] = {.lex_state = 10}, - [1428] = {.lex_state = 10}, - [1429] = {.lex_state = 10}, - [1430] = {.lex_state = 10}, - [1431] = {.lex_state = 10}, - [1432] = {.lex_state = 10}, - [1433] = {.lex_state = 10}, + [1420] = {.lex_state = 7}, + [1421] = {.lex_state = 7}, + [1422] = {.lex_state = 7}, + [1423] = {.lex_state = 7}, + [1424] = {.lex_state = 7}, + [1425] = {.lex_state = 7}, + [1426] = {.lex_state = 7}, + [1427] = {.lex_state = 7}, + [1428] = {.lex_state = 7}, + [1429] = {.lex_state = 7}, + [1430] = {.lex_state = 7}, + [1431] = {.lex_state = 7}, + [1432] = {.lex_state = 7}, + [1433] = {.lex_state = 7}, [1434] = {.lex_state = 10}, [1435] = {.lex_state = 10}, - [1436] = {.lex_state = 10}, - [1437] = {.lex_state = 10}, - [1438] = {.lex_state = 10}, + [1436] = {.lex_state = 14}, + [1437] = {.lex_state = 14}, + [1438] = {.lex_state = 14}, [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 10}, - [1441] = {.lex_state = 10}, - [1442] = {.lex_state = 10}, - [1443] = {.lex_state = 10}, + [1440] = {.lex_state = 7}, + [1441] = {.lex_state = 7}, + [1442] = {.lex_state = 7}, + [1443] = {.lex_state = 7}, [1444] = {.lex_state = 7}, - [1445] = {.lex_state = 10}, + [1445] = {.lex_state = 7}, [1446] = {.lex_state = 7}, - [1447] = {.lex_state = 10}, - [1448] = {.lex_state = 10}, + [1447] = {.lex_state = 7}, + [1448] = {.lex_state = 7}, [1449] = {.lex_state = 7}, - [1450] = {.lex_state = 10}, + [1450] = {.lex_state = 7}, [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 10}, - [1453] = {.lex_state = 10}, + [1452] = {.lex_state = 14}, + [1453] = {.lex_state = 7}, [1454] = {.lex_state = 7}, - [1455] = {.lex_state = 10}, - [1456] = {.lex_state = 10}, - [1457] = {.lex_state = 10}, - [1458] = {.lex_state = 10}, - [1459] = {.lex_state = 10}, - [1460] = {.lex_state = 7}, - [1461] = {.lex_state = 10}, + [1455] = {.lex_state = 14}, + [1456] = {.lex_state = 7}, + [1457] = {.lex_state = 7}, + [1458] = {.lex_state = 7}, + [1459] = {.lex_state = 14}, + [1460] = {.lex_state = 14}, + [1461] = {.lex_state = 7}, [1462] = {.lex_state = 7}, [1463] = {.lex_state = 7}, - [1464] = {.lex_state = 10}, - [1465] = {.lex_state = 10}, + [1464] = {.lex_state = 11, .external_lex_state = 2}, + [1465] = {.lex_state = 7}, [1466] = {.lex_state = 10}, - [1467] = {.lex_state = 10}, - [1468] = {.lex_state = 10}, - [1469] = {.lex_state = 10}, - [1470] = {.lex_state = 10}, + [1467] = {.lex_state = 7}, + [1468] = {.lex_state = 7}, + [1469] = {.lex_state = 7}, + [1470] = {.lex_state = 7}, [1471] = {.lex_state = 11, .external_lex_state = 2}, - [1472] = {.lex_state = 14}, - [1473] = {.lex_state = 11, .external_lex_state = 2}, - [1474] = {.lex_state = 11, .external_lex_state = 2}, + [1472] = {.lex_state = 7}, + [1473] = {.lex_state = 7}, + [1474] = {.lex_state = 7}, [1475] = {.lex_state = 7}, - [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 11, .external_lex_state = 2}, + [1476] = {.lex_state = 7}, + [1477] = {.lex_state = 14}, [1478] = {.lex_state = 7}, - [1479] = {.lex_state = 11, .external_lex_state = 2}, - [1480] = {.lex_state = 14}, - [1481] = {.lex_state = 14}, + [1479] = {.lex_state = 14}, + [1480] = {.lex_state = 11, .external_lex_state = 2}, + [1481] = {.lex_state = 11, .external_lex_state = 2}, [1482] = {.lex_state = 7}, - [1483] = {.lex_state = 7}, - [1484] = {.lex_state = 7}, - [1485] = {.lex_state = 7}, - [1486] = {.lex_state = 7}, - [1487] = {.lex_state = 7}, + [1483] = {.lex_state = 14}, + [1484] = {.lex_state = 11, .external_lex_state = 2}, + [1485] = {.lex_state = 14}, + [1486] = {.lex_state = 11, .external_lex_state = 2}, + [1487] = {.lex_state = 11, .external_lex_state = 2}, [1488] = {.lex_state = 7}, [1489] = {.lex_state = 7}, [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 14}, - [1492] = {.lex_state = 9}, + [1491] = {.lex_state = 7}, + [1492] = {.lex_state = 7}, [1493] = {.lex_state = 7}, [1494] = {.lex_state = 7}, [1495] = {.lex_state = 7}, [1496] = {.lex_state = 7}, [1497] = {.lex_state = 7}, - [1498] = {.lex_state = 14}, + [1498] = {.lex_state = 9}, [1499] = {.lex_state = 7}, [1500] = {.lex_state = 7}, - [1501] = {.lex_state = 7}, - [1502] = {.lex_state = 7}, - [1503] = {.lex_state = 7}, - [1504] = {.lex_state = 14}, + [1501] = {.lex_state = 14}, + [1502] = {.lex_state = 14}, + [1503] = {.lex_state = 14}, + [1504] = {.lex_state = 7}, [1505] = {.lex_state = 7}, - [1506] = {.lex_state = 9}, - [1507] = {.lex_state = 8}, - [1508] = {.lex_state = 9}, + [1506] = {.lex_state = 7}, + [1507] = {.lex_state = 7}, + [1508] = {.lex_state = 7}, [1509] = {.lex_state = 7}, - [1510] = {.lex_state = 11, .external_lex_state = 2}, + [1510] = {.lex_state = 7}, [1511] = {.lex_state = 7}, - [1512] = {.lex_state = 11, .external_lex_state = 2}, + [1512] = {.lex_state = 7}, [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 11, .external_lex_state = 2}, + [1514] = {.lex_state = 8}, [1515] = {.lex_state = 11, .external_lex_state = 2}, - [1516] = {.lex_state = 7}, - [1517] = {.lex_state = 14}, - [1518] = {.lex_state = 8}, + [1516] = {.lex_state = 11, .external_lex_state = 2}, + [1517] = {.lex_state = 11, .external_lex_state = 2}, + [1518] = {.lex_state = 9}, [1519] = {.lex_state = 9}, - [1520] = {.lex_state = 9}, - [1521] = {.lex_state = 7}, - [1522] = {.lex_state = 8}, - [1523] = {.lex_state = 7}, - [1524] = {.lex_state = 8}, - [1525] = {.lex_state = 7}, + [1520] = {.lex_state = 7}, + [1521] = {.lex_state = 11, .external_lex_state = 2}, + [1522] = {.lex_state = 7}, + [1523] = {.lex_state = 9}, + [1524] = {.lex_state = 7}, + [1525] = {.lex_state = 14}, [1526] = {.lex_state = 9}, - [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 14}, + [1527] = {.lex_state = 7}, + [1528] = {.lex_state = 8}, [1529] = {.lex_state = 9}, - [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 14}, - [1532] = {.lex_state = 9}, - [1533] = {.lex_state = 9}, - [1534] = {.lex_state = 7}, - [1535] = {.lex_state = 7}, - [1536] = {.lex_state = 14}, - [1537] = {.lex_state = 7}, - [1538] = {.lex_state = 8}, - [1539] = {.lex_state = 14}, - [1540] = {.lex_state = 14}, + [1530] = {.lex_state = 7}, + [1531] = {.lex_state = 7}, + [1532] = {.lex_state = 14}, + [1533] = {.lex_state = 14}, + [1534] = {.lex_state = 8}, + [1535] = {.lex_state = 14}, + [1536] = {.lex_state = 7}, + [1537] = {.lex_state = 14}, + [1538] = {.lex_state = 9}, + [1539] = {.lex_state = 9}, + [1540] = {.lex_state = 9}, [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 7}, - [1543] = {.lex_state = 7}, - [1544] = {.lex_state = 8}, + [1542] = {.lex_state = 9}, + [1543] = {.lex_state = 9}, + [1544] = {.lex_state = 14}, [1545] = {.lex_state = 8}, - [1546] = {.lex_state = 8}, + [1546] = {.lex_state = 7}, [1547] = {.lex_state = 8}, [1548] = {.lex_state = 8}, - [1549] = {.lex_state = 7}, + [1549] = {.lex_state = 8}, [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 7}, + [1551] = {.lex_state = 8}, [1552] = {.lex_state = 8}, - [1553] = {.lex_state = 7}, + [1553] = {.lex_state = 8}, [1554] = {.lex_state = 8}, - [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 8}, - [1557] = {.lex_state = 8}, + [1555] = {.lex_state = 8}, + [1556] = {.lex_state = 7}, + [1557] = {.lex_state = 7}, [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 8}, + [1559] = {.lex_state = 7}, [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 8}, + [1561] = {.lex_state = 7}, [1562] = {.lex_state = 7}, - [1563] = {.lex_state = 7}, - [1564] = {.lex_state = 8}, + [1563] = {.lex_state = 8}, + [1564] = {.lex_state = 7}, [1565] = {.lex_state = 7}, [1566] = {.lex_state = 7}, [1567] = {.lex_state = 7}, - [1568] = {.lex_state = 8}, + [1568] = {.lex_state = 7}, [1569] = {.lex_state = 7}, - [1570] = {.lex_state = 7}, - [1571] = {.lex_state = 7}, + [1570] = {.lex_state = 8}, + [1571] = {.lex_state = 8}, [1572] = {.lex_state = 7}, - [1573] = {.lex_state = 7}, - [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 7}, + [1573] = {.lex_state = 8}, + [1574] = {.lex_state = 8}, + [1575] = {.lex_state = 8}, [1576] = {.lex_state = 7}, [1577] = {.lex_state = 7}, [1578] = {.lex_state = 7}, - [1579] = {.lex_state = 7}, - [1580] = {.lex_state = 7}, + [1579] = {.lex_state = 20}, + [1580] = {.lex_state = 20}, [1581] = {.lex_state = 8}, - [1582] = {.lex_state = 8}, - [1583] = {.lex_state = 8}, - [1584] = {.lex_state = 20}, + [1582] = {.lex_state = 7}, + [1583] = {.lex_state = 7}, + [1584] = {.lex_state = 7}, [1585] = {.lex_state = 7}, - [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 8}, + [1586] = {.lex_state = 8}, + [1587] = {.lex_state = 7}, [1588] = {.lex_state = 7}, - [1589] = {.lex_state = 7}, - [1590] = {.lex_state = 7}, - [1591] = {.lex_state = 8}, - [1592] = {.lex_state = 14}, + [1589] = {.lex_state = 8}, + [1590] = {.lex_state = 20}, + [1591] = {.lex_state = 7}, + [1592] = {.lex_state = 8}, [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 20}, - [1595] = {.lex_state = 8}, - [1596] = {.lex_state = 8}, - [1597] = {.lex_state = 8}, - [1598] = {.lex_state = 20}, - [1599] = {.lex_state = 8}, + [1594] = {.lex_state = 7}, + [1595] = {.lex_state = 7}, + [1596] = {.lex_state = 7}, + [1597] = {.lex_state = 7}, + [1598] = {.lex_state = 8}, + [1599] = {.lex_state = 7}, [1600] = {.lex_state = 8}, [1601] = {.lex_state = 7}, - [1602] = {.lex_state = 20}, - [1603] = {.lex_state = 8}, - [1604] = {.lex_state = 8}, - [1605] = {.lex_state = 20}, - [1606] = {.lex_state = 7}, - [1607] = {.lex_state = 7}, - [1608] = {.lex_state = 8}, - [1609] = {.lex_state = 8}, - [1610] = {.lex_state = 7}, + [1602] = {.lex_state = 7}, + [1603] = {.lex_state = 14}, + [1604] = {.lex_state = 7}, + [1605] = {.lex_state = 7}, + [1606] = {.lex_state = 8}, + [1607] = {.lex_state = 20}, + [1608] = {.lex_state = 7}, + [1609] = {.lex_state = 7}, + [1610] = {.lex_state = 20}, [1611] = {.lex_state = 20}, - [1612] = {.lex_state = 8}, - [1613] = {.lex_state = 14}, - [1614] = {.lex_state = 20}, - [1615] = {.lex_state = 7}, - [1616] = {.lex_state = 7}, - [1617] = {.lex_state = 20}, - [1618] = {.lex_state = 14}, + [1612] = {.lex_state = 7}, + [1613] = {.lex_state = 7}, + [1614] = {.lex_state = 8}, + [1615] = {.lex_state = 8}, + [1616] = {.lex_state = 8}, + [1617] = {.lex_state = 8}, + [1618] = {.lex_state = 8}, [1619] = {.lex_state = 7}, - [1620] = {.lex_state = 8}, + [1620] = {.lex_state = 7}, [1621] = {.lex_state = 8}, - [1622] = {.lex_state = 20}, - [1623] = {.lex_state = 20}, - [1624] = {.lex_state = 20}, - [1625] = {.lex_state = 7}, - [1626] = {.lex_state = 20}, - [1627] = {.lex_state = 7}, - [1628] = {.lex_state = 7}, + [1622] = {.lex_state = 8}, + [1623] = {.lex_state = 8}, + [1624] = {.lex_state = 7}, + [1625] = {.lex_state = 8}, + [1626] = {.lex_state = 8}, + [1627] = {.lex_state = 8}, + [1628] = {.lex_state = 9}, [1629] = {.lex_state = 7}, - [1630] = {.lex_state = 7}, - [1631] = {.lex_state = 8}, - [1632] = {.lex_state = 7}, - [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 7}, - [1635] = {.lex_state = 8}, - [1636] = {.lex_state = 7}, - [1637] = {.lex_state = 8}, - [1638] = {.lex_state = 7}, - [1639] = {.lex_state = 8}, - [1640] = {.lex_state = 8}, + [1630] = {.lex_state = 14}, + [1631] = {.lex_state = 7}, + [1632] = {.lex_state = 8}, + [1633] = {.lex_state = 20}, + [1634] = {.lex_state = 20}, + [1635] = {.lex_state = 20}, + [1636] = {.lex_state = 20}, + [1637] = {.lex_state = 20}, + [1638] = {.lex_state = 14}, + [1639] = {.lex_state = 20}, + [1640] = {.lex_state = 7}, [1641] = {.lex_state = 8}, [1642] = {.lex_state = 8}, [1643] = {.lex_state = 8}, @@ -11692,81 +11731,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1651] = {.lex_state = 8}, [1652] = {.lex_state = 8}, [1653] = {.lex_state = 8}, - [1654] = {.lex_state = 7}, + [1654] = {.lex_state = 8}, [1655] = {.lex_state = 8}, [1656] = {.lex_state = 8}, [1657] = {.lex_state = 8}, - [1658] = {.lex_state = 8}, + [1658] = {.lex_state = 7}, [1659] = {.lex_state = 8}, - [1660] = {.lex_state = 7}, + [1660] = {.lex_state = 8}, [1661] = {.lex_state = 8}, [1662] = {.lex_state = 8}, - [1663] = {.lex_state = 8}, - [1664] = {.lex_state = 8}, + [1663] = {.lex_state = 7}, + [1664] = {.lex_state = 7}, [1665] = {.lex_state = 8}, [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 8}, + [1667] = {.lex_state = 14}, [1668] = {.lex_state = 8}, [1669] = {.lex_state = 8}, [1670] = {.lex_state = 8}, - [1671] = {.lex_state = 7}, + [1671] = {.lex_state = 8}, [1672] = {.lex_state = 8}, [1673] = {.lex_state = 8}, - [1674] = {.lex_state = 7}, - [1675] = {.lex_state = 8}, + [1674] = {.lex_state = 8}, + [1675] = {.lex_state = 7}, [1676] = {.lex_state = 8}, [1677] = {.lex_state = 8}, [1678] = {.lex_state = 8}, - [1679] = {.lex_state = 8}, + [1679] = {.lex_state = 7}, [1680] = {.lex_state = 8}, [1681] = {.lex_state = 8}, - [1682] = {.lex_state = 7}, + [1682] = {.lex_state = 8}, [1683] = {.lex_state = 8}, [1684] = {.lex_state = 8}, [1685] = {.lex_state = 8}, [1686] = {.lex_state = 8}, - [1687] = {.lex_state = 8}, + [1687] = {.lex_state = 7}, [1688] = {.lex_state = 8}, [1689] = {.lex_state = 8}, - [1690] = {.lex_state = 7}, + [1690] = {.lex_state = 8}, [1691] = {.lex_state = 8}, [1692] = {.lex_state = 8}, [1693] = {.lex_state = 8}, [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 7}, + [1695] = {.lex_state = 8}, [1696] = {.lex_state = 8}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 7}, - [1699] = {.lex_state = 7}, + [1697] = {.lex_state = 8}, + [1698] = {.lex_state = 8}, + [1699] = {.lex_state = 8}, [1700] = {.lex_state = 8}, [1701] = {.lex_state = 8}, - [1702] = {.lex_state = 7}, - [1703] = {.lex_state = 7}, - [1704] = {.lex_state = 7}, - [1705] = {.lex_state = 8}, + [1702] = {.lex_state = 8}, + [1703] = {.lex_state = 8}, + [1704] = {.lex_state = 8}, + [1705] = {.lex_state = 7}, [1706] = {.lex_state = 8}, [1707] = {.lex_state = 8}, [1708] = {.lex_state = 8}, [1709] = {.lex_state = 8}, - [1710] = {.lex_state = 7}, - [1711] = {.lex_state = 7}, - [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 7}, - [1714] = {.lex_state = 7}, - [1715] = {.lex_state = 7}, - [1716] = {.lex_state = 7}, - [1717] = {.lex_state = 7}, - [1718] = {.lex_state = 7}, - [1719] = {.lex_state = 7}, - [1720] = {.lex_state = 7}, - [1721] = {.lex_state = 7}, - [1722] = {.lex_state = 7}, + [1710] = {.lex_state = 8}, + [1711] = {.lex_state = 8}, + [1712] = {.lex_state = 8}, + [1713] = {.lex_state = 8}, + [1714] = {.lex_state = 8}, + [1715] = {.lex_state = 8}, + [1716] = {.lex_state = 8}, + [1717] = {.lex_state = 8}, + [1718] = {.lex_state = 8}, + [1719] = {.lex_state = 8}, + [1720] = {.lex_state = 8}, + [1721] = {.lex_state = 8}, + [1722] = {.lex_state = 8}, [1723] = {.lex_state = 8}, [1724] = {.lex_state = 8}, [1725] = {.lex_state = 8}, [1726] = {.lex_state = 8}, - [1727] = {.lex_state = 7}, - [1728] = {.lex_state = 8}, + [1727] = {.lex_state = 8}, + [1728] = {.lex_state = 7}, [1729] = {.lex_state = 8}, [1730] = {.lex_state = 8}, [1731] = {.lex_state = 8}, @@ -11775,65 +11814,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1734] = {.lex_state = 8}, [1735] = {.lex_state = 8}, [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 8}, - [1738] = {.lex_state = 8}, + [1737] = {.lex_state = 7}, + [1738] = {.lex_state = 7}, [1739] = {.lex_state = 8}, - [1740] = {.lex_state = 7}, + [1740] = {.lex_state = 8}, [1741] = {.lex_state = 8}, - [1742] = {.lex_state = 8}, + [1742] = {.lex_state = 7}, [1743] = {.lex_state = 8}, [1744] = {.lex_state = 8}, - [1745] = {.lex_state = 8}, + [1745] = {.lex_state = 7}, [1746] = {.lex_state = 7}, - [1747] = {.lex_state = 8}, - [1748] = {.lex_state = 7}, + [1747] = {.lex_state = 7}, + [1748] = {.lex_state = 8}, [1749] = {.lex_state = 8}, - [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 7}, + [1750] = {.lex_state = 7}, + [1751] = {.lex_state = 8}, [1752] = {.lex_state = 8}, - [1753] = {.lex_state = 8}, + [1753] = {.lex_state = 7}, [1754] = {.lex_state = 8}, - [1755] = {.lex_state = 8}, - [1756] = {.lex_state = 8}, + [1755] = {.lex_state = 7}, + [1756] = {.lex_state = 7}, [1757] = {.lex_state = 8}, - [1758] = {.lex_state = 8}, - [1759] = {.lex_state = 8}, + [1758] = {.lex_state = 7}, + [1759] = {.lex_state = 7}, [1760] = {.lex_state = 8}, - [1761] = {.lex_state = 8}, + [1761] = {.lex_state = 7}, [1762] = {.lex_state = 8}, - [1763] = {.lex_state = 8}, - [1764] = {.lex_state = 8}, + [1763] = {.lex_state = 7}, + [1764] = {.lex_state = 7}, [1765] = {.lex_state = 8}, - [1766] = {.lex_state = 8}, - [1767] = {.lex_state = 8}, - [1768] = {.lex_state = 7}, - [1769] = {.lex_state = 8}, + [1766] = {.lex_state = 7}, + [1767] = {.lex_state = 7}, + [1768] = {.lex_state = 8}, + [1769] = {.lex_state = 7}, [1770] = {.lex_state = 8}, - [1771] = {.lex_state = 8}, - [1772] = {.lex_state = 8}, + [1771] = {.lex_state = 7}, + [1772] = {.lex_state = 7}, [1773] = {.lex_state = 8}, - [1774] = {.lex_state = 8}, - [1775] = {.lex_state = 8}, - [1776] = {.lex_state = 8}, - [1777] = {.lex_state = 8}, - [1778] = {.lex_state = 8}, - [1779] = {.lex_state = 8}, - [1780] = {.lex_state = 8}, - [1781] = {.lex_state = 8}, + [1774] = {.lex_state = 7}, + [1775] = {.lex_state = 7}, + [1776] = {.lex_state = 7}, + [1777] = {.lex_state = 7}, + [1778] = {.lex_state = 7}, + [1779] = {.lex_state = 7}, + [1780] = {.lex_state = 7}, + [1781] = {.lex_state = 7}, [1782] = {.lex_state = 7}, - [1783] = {.lex_state = 8}, - [1784] = {.lex_state = 8}, - [1785] = {.lex_state = 8}, + [1783] = {.lex_state = 7}, + [1784] = {.lex_state = 7}, + [1785] = {.lex_state = 7}, [1786] = {.lex_state = 7}, [1787] = {.lex_state = 8}, [1788] = {.lex_state = 8}, - [1789] = {.lex_state = 8}, - [1790] = {.lex_state = 8}, - [1791] = {.lex_state = 8}, - [1792] = {.lex_state = 8}, + [1789] = {.lex_state = 7}, + [1790] = {.lex_state = 7}, + [1791] = {.lex_state = 7}, + [1792] = {.lex_state = 7}, [1793] = {.lex_state = 7}, [1794] = {.lex_state = 7}, - [1795] = {.lex_state = 14}, + [1795] = {.lex_state = 7}, [1796] = {.lex_state = 7}, [1797] = {.lex_state = 7}, [1798] = {.lex_state = 7}, @@ -11844,7 +11883,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1803] = {.lex_state = 7}, [1804] = {.lex_state = 7}, [1805] = {.lex_state = 7}, - [1806] = {.lex_state = 7}, + [1806] = {.lex_state = 8}, [1807] = {.lex_state = 7}, [1808] = {.lex_state = 7}, [1809] = {.lex_state = 7}, @@ -11860,38 +11899,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1819] = {.lex_state = 7}, [1820] = {.lex_state = 7}, [1821] = {.lex_state = 7}, - [1822] = {.lex_state = 7}, - [1823] = {.lex_state = 7}, - [1824] = {.lex_state = 7}, - [1825] = {.lex_state = 7}, - [1826] = {.lex_state = 7}, - [1827] = {.lex_state = 7}, + [1822] = {.lex_state = 8}, + [1823] = {.lex_state = 8}, + [1824] = {.lex_state = 8}, + [1825] = {.lex_state = 8}, + [1826] = {.lex_state = 8}, + [1827] = {.lex_state = 8}, [1828] = {.lex_state = 7}, - [1829] = {.lex_state = 7}, + [1829] = {.lex_state = 8}, [1830] = {.lex_state = 7}, - [1831] = {.lex_state = 7}, - [1832] = {.lex_state = 7}, - [1833] = {.lex_state = 7}, + [1831] = {.lex_state = 8}, + [1832] = {.lex_state = 8}, + [1833] = {.lex_state = 8}, [1834] = {.lex_state = 7}, - [1835] = {.lex_state = 7}, - [1836] = {.lex_state = 7}, + [1835] = {.lex_state = 8}, + [1836] = {.lex_state = 8}, [1837] = {.lex_state = 7}, - [1838] = {.lex_state = 7}, - [1839] = {.lex_state = 7}, + [1838] = {.lex_state = 8}, + [1839] = {.lex_state = 8}, [1840] = {.lex_state = 7}, - [1841] = {.lex_state = 8}, - [1842] = {.lex_state = 7}, - [1843] = {.lex_state = 7}, - [1844] = {.lex_state = 7}, + [1841] = {.lex_state = 7}, + [1842] = {.lex_state = 8}, + [1843] = {.lex_state = 8}, + [1844] = {.lex_state = 8}, [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 14}, - [1847] = {.lex_state = 8}, + [1846] = {.lex_state = 7}, + [1847] = {.lex_state = 7}, [1848] = {.lex_state = 7}, - [1849] = {.lex_state = 7}, + [1849] = {.lex_state = 8}, [1850] = {.lex_state = 7}, [1851] = {.lex_state = 7}, [1852] = {.lex_state = 7}, - [1853] = {.lex_state = 7}, + [1853] = {.lex_state = 8}, [1854] = {.lex_state = 7}, [1855] = {.lex_state = 7}, [1856] = {.lex_state = 7}, @@ -11903,25 +11942,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1862] = {.lex_state = 7}, [1863] = {.lex_state = 7}, [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 8}, + [1865] = {.lex_state = 7}, [1866] = {.lex_state = 7}, [1867] = {.lex_state = 7}, - [1868] = {.lex_state = 7}, + [1868] = {.lex_state = 14}, [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 7}, + [1870] = {.lex_state = 8}, [1871] = {.lex_state = 7}, [1872] = {.lex_state = 7}, [1873] = {.lex_state = 7}, - [1874] = {.lex_state = 14}, - [1875] = {.lex_state = 8}, - [1876] = {.lex_state = 14}, - [1877] = {.lex_state = 14}, - [1878] = {.lex_state = 14}, - [1879] = {.lex_state = 14}, - [1880] = {.lex_state = 14}, - [1881] = {.lex_state = 14}, - [1882] = {.lex_state = 14}, - [1883] = {.lex_state = 14}, + [1874] = {.lex_state = 7}, + [1875] = {.lex_state = 14}, + [1876] = {.lex_state = 7}, + [1877] = {.lex_state = 7}, + [1878] = {.lex_state = 7}, + [1879] = {.lex_state = 7}, + [1880] = {.lex_state = 7}, + [1881] = {.lex_state = 8}, + [1882] = {.lex_state = 7}, + [1883] = {.lex_state = 7}, [1884] = {.lex_state = 14}, [1885] = {.lex_state = 14}, [1886] = {.lex_state = 14}, @@ -11940,130 +11979,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1899] = {.lex_state = 14}, [1900] = {.lex_state = 14}, [1901] = {.lex_state = 14}, - [1902] = {.lex_state = 27}, - [1903] = {.lex_state = 16}, - [1904] = {.lex_state = 27}, - [1905] = {.lex_state = 16}, - [1906] = {.lex_state = 16}, - [1907] = {.lex_state = 16}, - [1908] = {.lex_state = 16}, - [1909] = {.lex_state = 16}, - [1910] = {.lex_state = 16}, - [1911] = {.lex_state = 16}, + [1902] = {.lex_state = 14}, + [1903] = {.lex_state = 14}, + [1904] = {.lex_state = 14}, + [1905] = {.lex_state = 14}, + [1906] = {.lex_state = 14}, + [1907] = {.lex_state = 14}, + [1908] = {.lex_state = 14}, + [1909] = {.lex_state = 14}, + [1910] = {.lex_state = 27}, + [1911] = {.lex_state = 27}, [1912] = {.lex_state = 16}, [1913] = {.lex_state = 16}, - [1914] = {.lex_state = 27}, + [1914] = {.lex_state = 16}, [1915] = {.lex_state = 16}, - [1916] = {.lex_state = 27}, - [1917] = {.lex_state = 27}, + [1916] = {.lex_state = 16}, + [1917] = {.lex_state = 16}, [1918] = {.lex_state = 16}, [1919] = {.lex_state = 16}, - [1920] = {.lex_state = 27}, - [1921] = {.lex_state = 14}, - [1922] = {.lex_state = 14}, - [1923] = {.lex_state = 14}, - [1924] = {.lex_state = 14}, - [1925] = {.lex_state = 14}, - [1926] = {.lex_state = 27}, - [1927] = {.lex_state = 14}, - [1928] = {.lex_state = 14}, + [1920] = {.lex_state = 16}, + [1921] = {.lex_state = 16}, + [1922] = {.lex_state = 27}, + [1923] = {.lex_state = 27}, + [1924] = {.lex_state = 27}, + [1925] = {.lex_state = 16}, + [1926] = {.lex_state = 16}, + [1927] = {.lex_state = 16}, + [1928] = {.lex_state = 27}, [1929] = {.lex_state = 14}, [1930] = {.lex_state = 14}, [1931] = {.lex_state = 14}, [1932] = {.lex_state = 14}, [1933] = {.lex_state = 14}, [1934] = {.lex_state = 14}, - [1935] = {.lex_state = 16}, - [1936] = {.lex_state = 16}, - [1937] = {.lex_state = 16}, - [1938] = {.lex_state = 14}, - [1939] = {.lex_state = 27}, + [1935] = {.lex_state = 14}, + [1936] = {.lex_state = 14}, + [1937] = {.lex_state = 27}, + [1938] = {.lex_state = 16}, + [1939] = {.lex_state = 14}, [1940] = {.lex_state = 14}, - [1941] = {.lex_state = 27}, + [1941] = {.lex_state = 14}, [1942] = {.lex_state = 16}, - [1943] = {.lex_state = 27}, + [1943] = {.lex_state = 14}, [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 27}, + [1945] = {.lex_state = 16}, [1946] = {.lex_state = 27}, - [1947] = {.lex_state = 27}, + [1947] = {.lex_state = 14}, [1948] = {.lex_state = 27}, [1949] = {.lex_state = 14}, [1950] = {.lex_state = 27}, - [1951] = {.lex_state = 14}, + [1951] = {.lex_state = 27}, [1952] = {.lex_state = 14}, [1953] = {.lex_state = 27}, - [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 16}, + [1954] = {.lex_state = 16}, + [1955] = {.lex_state = 14}, [1956] = {.lex_state = 27}, [1957] = {.lex_state = 27}, [1958] = {.lex_state = 16}, [1959] = {.lex_state = 27}, - [1960] = {.lex_state = 27}, + [1960] = {.lex_state = 14}, [1961] = {.lex_state = 14}, [1962] = {.lex_state = 27}, - [1963] = {.lex_state = 27}, - [1964] = {.lex_state = 14}, + [1963] = {.lex_state = 14}, + [1964] = {.lex_state = 27}, [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 27}, + [1966] = {.lex_state = 16}, [1967] = {.lex_state = 27}, [1968] = {.lex_state = 27}, [1969] = {.lex_state = 27}, [1970] = {.lex_state = 27}, - [1971] = {.lex_state = 27}, + [1971] = {.lex_state = 14}, [1972] = {.lex_state = 27}, [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 14}, + [1974] = {.lex_state = 27}, [1975] = {.lex_state = 27}, [1976] = {.lex_state = 27}, - [1977] = {.lex_state = 14}, + [1977] = {.lex_state = 27}, [1978] = {.lex_state = 27}, [1979] = {.lex_state = 27}, - [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 16}, - [1982] = {.lex_state = 14}, + [1980] = {.lex_state = 16}, + [1981] = {.lex_state = 27}, + [1982] = {.lex_state = 27}, [1983] = {.lex_state = 27}, [1984] = {.lex_state = 27}, [1985] = {.lex_state = 27}, [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 14}, - [1988] = {.lex_state = 27}, - [1989] = {.lex_state = 27}, - [1990] = {.lex_state = 27}, + [1987] = {.lex_state = 27}, + [1988] = {.lex_state = 14}, + [1989] = {.lex_state = 14}, + [1990] = {.lex_state = 14}, [1991] = {.lex_state = 27}, [1992] = {.lex_state = 27}, [1993] = {.lex_state = 27}, [1994] = {.lex_state = 27}, - [1995] = {.lex_state = 27}, + [1995] = {.lex_state = 14}, [1996] = {.lex_state = 27}, [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 14}, - [1999] = {.lex_state = 14}, - [2000] = {.lex_state = 16}, - [2001] = {.lex_state = 27}, - [2002] = {.lex_state = 16}, - [2003] = {.lex_state = 16}, + [1998] = {.lex_state = 27}, + [1999] = {.lex_state = 27}, + [2000] = {.lex_state = 27}, + [2001] = {.lex_state = 14}, + [2002] = {.lex_state = 27}, + [2003] = {.lex_state = 27}, [2004] = {.lex_state = 27}, [2005] = {.lex_state = 27}, - [2006] = {.lex_state = 16}, - [2007] = {.lex_state = 17}, + [2006] = {.lex_state = 27}, + [2007] = {.lex_state = 14}, [2008] = {.lex_state = 16}, - [2009] = {.lex_state = 16}, + [2009] = {.lex_state = 14}, [2010] = {.lex_state = 16}, - [2011] = {.lex_state = 27}, + [2011] = {.lex_state = 16}, [2012] = {.lex_state = 16}, [2013] = {.lex_state = 16}, [2014] = {.lex_state = 16}, [2015] = {.lex_state = 16}, - [2016] = {.lex_state = 16}, - [2017] = {.lex_state = 16}, - [2018] = {.lex_state = 14}, - [2019] = {.lex_state = 14}, - [2020] = {.lex_state = 14}, - [2021] = {.lex_state = 14}, - [2022] = {.lex_state = 14}, - [2023] = {.lex_state = 14}, - [2024] = {.lex_state = 14}, - [2025] = {.lex_state = 14}, + [2016] = {.lex_state = 27}, + [2017] = {.lex_state = 27}, + [2018] = {.lex_state = 16}, + [2019] = {.lex_state = 27}, + [2020] = {.lex_state = 16}, + [2021] = {.lex_state = 16}, + [2022] = {.lex_state = 17}, + [2023] = {.lex_state = 16}, + [2024] = {.lex_state = 16}, + [2025] = {.lex_state = 16}, [2026] = {.lex_state = 14}, [2027] = {.lex_state = 14}, [2028] = {.lex_state = 14}, @@ -12072,163 +12111,163 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2031] = {.lex_state = 14}, [2032] = {.lex_state = 14}, [2033] = {.lex_state = 14}, - [2034] = {.lex_state = 16}, + [2034] = {.lex_state = 14}, [2035] = {.lex_state = 14}, [2036] = {.lex_state = 14}, - [2037] = {.lex_state = 16}, - [2038] = {.lex_state = 16}, - [2039] = {.lex_state = 27}, - [2040] = {.lex_state = 17}, + [2037] = {.lex_state = 14}, + [2038] = {.lex_state = 14}, + [2039] = {.lex_state = 14}, + [2040] = {.lex_state = 14}, [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 23}, + [2042] = {.lex_state = 27}, [2043] = {.lex_state = 14}, - [2044] = {.lex_state = 16}, - [2045] = {.lex_state = 17}, + [2044] = {.lex_state = 14}, + [2045] = {.lex_state = 14}, [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 27}, + [2047] = {.lex_state = 14}, [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 23}, - [2050] = {.lex_state = 21}, - [2051] = {.lex_state = 14}, - [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 27}, + [2049] = {.lex_state = 21}, + [2050] = {.lex_state = 16}, + [2051] = {.lex_state = 21}, + [2052] = {.lex_state = 27}, + [2053] = {.lex_state = 14}, [2054] = {.lex_state = 14}, - [2055] = {.lex_state = 14}, - [2056] = {.lex_state = 27}, + [2055] = {.lex_state = 16}, + [2056] = {.lex_state = 14}, [2057] = {.lex_state = 14}, - [2058] = {.lex_state = 16}, - [2059] = {.lex_state = 27}, - [2060] = {.lex_state = 14}, - [2061] = {.lex_state = 14}, - [2062] = {.lex_state = 14}, - [2063] = {.lex_state = 14}, - [2064] = {.lex_state = 21}, - [2065] = {.lex_state = 16}, - [2066] = {.lex_state = 17}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 21}, + [2058] = {.lex_state = 27}, + [2059] = {.lex_state = 14}, + [2060] = {.lex_state = 16}, + [2061] = {.lex_state = 17}, + [2062] = {.lex_state = 27}, + [2063] = {.lex_state = 17}, + [2064] = {.lex_state = 17}, + [2065] = {.lex_state = 14}, + [2066] = {.lex_state = 14}, + [2067] = {.lex_state = 14}, + [2068] = {.lex_state = 23}, [2069] = {.lex_state = 14}, [2070] = {.lex_state = 16}, - [2071] = {.lex_state = 21}, + [2071] = {.lex_state = 16}, [2072] = {.lex_state = 16}, - [2073] = {.lex_state = 16}, - [2074] = {.lex_state = 16}, + [2073] = {.lex_state = 27}, + [2074] = {.lex_state = 14}, [2075] = {.lex_state = 14}, - [2076] = {.lex_state = 27}, - [2077] = {.lex_state = 27}, - [2078] = {.lex_state = 27}, - [2079] = {.lex_state = 27}, - [2080] = {.lex_state = 27}, - [2081] = {.lex_state = 27}, - [2082] = {.lex_state = 27}, - [2083] = {.lex_state = 27}, - [2084] = {.lex_state = 27}, - [2085] = {.lex_state = 27}, + [2076] = {.lex_state = 21}, + [2077] = {.lex_state = 16}, + [2078] = {.lex_state = 21}, + [2079] = {.lex_state = 16}, + [2080] = {.lex_state = 16}, + [2081] = {.lex_state = 16}, + [2082] = {.lex_state = 23}, + [2083] = {.lex_state = 17}, + [2084] = {.lex_state = 16}, + [2085] = {.lex_state = 14}, [2086] = {.lex_state = 27}, - [2087] = {.lex_state = 23}, + [2087] = {.lex_state = 27}, [2088] = {.lex_state = 27}, - [2089] = {.lex_state = 14}, - [2090] = {.lex_state = 14}, + [2089] = {.lex_state = 27}, + [2090] = {.lex_state = 27}, [2091] = {.lex_state = 27}, [2092] = {.lex_state = 27}, [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 27}, + [2094] = {.lex_state = 16}, [2095] = {.lex_state = 27}, [2096] = {.lex_state = 27}, [2097] = {.lex_state = 27}, [2098] = {.lex_state = 27}, [2099] = {.lex_state = 27}, [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 27}, - [2102] = {.lex_state = 27}, + [2101] = {.lex_state = 14}, + [2102] = {.lex_state = 17}, [2103] = {.lex_state = 27}, - [2104] = {.lex_state = 27}, - [2105] = {.lex_state = 23}, + [2104] = {.lex_state = 23}, + [2105] = {.lex_state = 27}, [2106] = {.lex_state = 27}, [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 14}, - [2109] = {.lex_state = 14}, + [2108] = {.lex_state = 27}, + [2109] = {.lex_state = 27}, [2110] = {.lex_state = 27}, - [2111] = {.lex_state = 23}, + [2111] = {.lex_state = 27}, [2112] = {.lex_state = 27}, - [2113] = {.lex_state = 10}, - [2114] = {.lex_state = 27}, + [2113] = {.lex_state = 27}, + [2114] = {.lex_state = 23}, [2115] = {.lex_state = 27}, - [2116] = {.lex_state = 14}, - [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 16}, - [2119] = {.lex_state = 16}, - [2120] = {.lex_state = 16}, - [2121] = {.lex_state = 27}, - [2122] = {.lex_state = 27}, - [2123] = {.lex_state = 23}, - [2124] = {.lex_state = 16}, - [2125] = {.lex_state = 27}, - [2126] = {.lex_state = 27}, - [2127] = {.lex_state = 27}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 23}, - [2130] = {.lex_state = 17}, + [2116] = {.lex_state = 27}, + [2117] = {.lex_state = 27}, + [2118] = {.lex_state = 27}, + [2119] = {.lex_state = 27}, + [2120] = {.lex_state = 27}, + [2121] = {.lex_state = 16}, + [2122] = {.lex_state = 23}, + [2123] = {.lex_state = 27}, + [2124] = {.lex_state = 27}, + [2125] = {.lex_state = 14}, + [2126] = {.lex_state = 10}, + [2127] = {.lex_state = 14}, + [2128] = {.lex_state = 16}, + [2129] = {.lex_state = 27}, + [2130] = {.lex_state = 27}, [2131] = {.lex_state = 27}, [2132] = {.lex_state = 14}, - [2133] = {.lex_state = 14}, - [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 10}, + [2133] = {.lex_state = 27}, + [2134] = {.lex_state = 23}, + [2135] = {.lex_state = 27}, [2136] = {.lex_state = 10}, - [2137] = {.lex_state = 6}, - [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 14}, - [2140] = {.lex_state = 27}, + [2137] = {.lex_state = 17}, + [2138] = {.lex_state = 14}, + [2139] = {.lex_state = 16}, + [2140] = {.lex_state = 14}, [2141] = {.lex_state = 14}, [2142] = {.lex_state = 14}, [2143] = {.lex_state = 14}, [2144] = {.lex_state = 14}, - [2145] = {.lex_state = 14}, + [2145] = {.lex_state = 27}, [2146] = {.lex_state = 14}, - [2147] = {.lex_state = 27}, + [2147] = {.lex_state = 6}, [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 17}, - [2150] = {.lex_state = 16}, - [2151] = {.lex_state = 6}, - [2152] = {.lex_state = 10}, - [2153] = {.lex_state = 14}, - [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 70}, + [2149] = {.lex_state = 14}, + [2150] = {.lex_state = 14}, + [2151] = {.lex_state = 70}, + [2152] = {.lex_state = 14}, + [2153] = {.lex_state = 17}, + [2154] = {.lex_state = 10}, + [2155] = {.lex_state = 17}, [2156] = {.lex_state = 14}, - [2157] = {.lex_state = 10}, - [2158] = {.lex_state = 14}, + [2157] = {.lex_state = 14}, + [2158] = {.lex_state = 27}, [2159] = {.lex_state = 14}, - [2160] = {.lex_state = 14}, - [2161] = {.lex_state = 14}, - [2162] = {.lex_state = 6}, + [2160] = {.lex_state = 17}, + [2161] = {.lex_state = 6}, + [2162] = {.lex_state = 23}, [2163] = {.lex_state = 14}, [2164] = {.lex_state = 14}, - [2165] = {.lex_state = 27}, + [2165] = {.lex_state = 14}, [2166] = {.lex_state = 14}, [2167] = {.lex_state = 14}, - [2168] = {.lex_state = 27}, + [2168] = {.lex_state = 14}, [2169] = {.lex_state = 14}, - [2170] = {.lex_state = 27}, - [2171] = {.lex_state = 14}, - [2172] = {.lex_state = 27}, + [2170] = {.lex_state = 10}, + [2171] = {.lex_state = 27}, + [2172] = {.lex_state = 14}, [2173] = {.lex_state = 14}, [2174] = {.lex_state = 27}, [2175] = {.lex_state = 14}, - [2176] = {.lex_state = 23}, - [2177] = {.lex_state = 14}, - [2178] = {.lex_state = 14}, + [2176] = {.lex_state = 27}, + [2177] = {.lex_state = 27}, + [2178] = {.lex_state = 27}, [2179] = {.lex_state = 14}, - [2180] = {.lex_state = 14}, - [2181] = {.lex_state = 14}, - [2182] = {.lex_state = 23}, - [2183] = {.lex_state = 14}, + [2180] = {.lex_state = 10}, + [2181] = {.lex_state = 6}, + [2182] = {.lex_state = 27}, + [2183] = {.lex_state = 17}, [2184] = {.lex_state = 14}, [2185] = {.lex_state = 14}, [2186] = {.lex_state = 14}, [2187] = {.lex_state = 14}, [2188] = {.lex_state = 14}, [2189] = {.lex_state = 14}, - [2190] = {.lex_state = 14}, + [2190] = {.lex_state = 23}, [2191] = {.lex_state = 14}, [2192] = {.lex_state = 14}, [2193] = {.lex_state = 14}, @@ -12237,1026 +12276,1026 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2196] = {.lex_state = 14}, [2197] = {.lex_state = 14}, [2198] = {.lex_state = 23}, - [2199] = {.lex_state = 23}, + [2199] = {.lex_state = 14}, [2200] = {.lex_state = 23}, [2201] = {.lex_state = 14}, - [2202] = {.lex_state = 14}, - [2203] = {.lex_state = 14}, - [2204] = {.lex_state = 14}, + [2202] = {.lex_state = 23}, + [2203] = {.lex_state = 21}, + [2204] = {.lex_state = 10}, [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 14}, + [2206] = {.lex_state = 23}, [2207] = {.lex_state = 14}, [2208] = {.lex_state = 14}, [2209] = {.lex_state = 14}, [2210] = {.lex_state = 14}, - [2211] = {.lex_state = 23}, + [2211] = {.lex_state = 14}, [2212] = {.lex_state = 14}, - [2213] = {.lex_state = 21}, + [2213] = {.lex_state = 14}, [2214] = {.lex_state = 23}, [2215] = {.lex_state = 14}, - [2216] = {.lex_state = 10}, + [2216] = {.lex_state = 23}, [2217] = {.lex_state = 14}, - [2218] = {.lex_state = 14}, + [2218] = {.lex_state = 23}, [2219] = {.lex_state = 14}, [2220] = {.lex_state = 14}, - [2221] = {.lex_state = 23}, - [2222] = {.lex_state = 23}, + [2221] = {.lex_state = 14}, + [2222] = {.lex_state = 14}, [2223] = {.lex_state = 14}, [2224] = {.lex_state = 14}, [2225] = {.lex_state = 14}, [2226] = {.lex_state = 14}, [2227] = {.lex_state = 14}, [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 23}, + [2229] = {.lex_state = 14}, [2230] = {.lex_state = 23}, - [2231] = {.lex_state = 23}, - [2232] = {.lex_state = 10}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 27}, - [2235] = {.lex_state = 23}, - [2236] = {.lex_state = 27}, - [2237] = {.lex_state = 23}, - [2238] = {.lex_state = 70}, + [2231] = {.lex_state = 14}, + [2232] = {.lex_state = 23}, + [2233] = {.lex_state = 23}, + [2234] = {.lex_state = 23}, + [2235] = {.lex_state = 14}, + [2236] = {.lex_state = 14}, + [2237] = {.lex_state = 14}, + [2238] = {.lex_state = 14}, [2239] = {.lex_state = 14}, - [2240] = {.lex_state = 14}, + [2240] = {.lex_state = 70}, [2241] = {.lex_state = 70}, - [2242] = {.lex_state = 70}, - [2243] = {.lex_state = 70}, + [2242] = {.lex_state = 14}, + [2243] = {.lex_state = 23}, [2244] = {.lex_state = 70}, [2245] = {.lex_state = 70}, [2246] = {.lex_state = 70}, [2247] = {.lex_state = 70}, - [2248] = {.lex_state = 70}, - [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 23}, - [2251] = {.lex_state = 14}, - [2252] = {.lex_state = 70}, - [2253] = {.lex_state = 70}, + [2248] = {.lex_state = 14}, + [2249] = {.lex_state = 70}, + [2250] = {.lex_state = 70}, + [2251] = {.lex_state = 27}, + [2252] = {.lex_state = 10}, + [2253] = {.lex_state = 23}, [2254] = {.lex_state = 70}, [2255] = {.lex_state = 14}, [2256] = {.lex_state = 70}, - [2257] = {.lex_state = 3}, + [2257] = {.lex_state = 70}, [2258] = {.lex_state = 70}, [2259] = {.lex_state = 70}, - [2260] = {.lex_state = 14}, - [2261] = {.lex_state = 23}, - [2262] = {.lex_state = 23}, + [2260] = {.lex_state = 70}, + [2261] = {.lex_state = 3}, + [2262] = {.lex_state = 10}, [2263] = {.lex_state = 70}, - [2264] = {.lex_state = 23}, - [2265] = {.lex_state = 23}, - [2266] = {.lex_state = 14}, - [2267] = {.lex_state = 70}, - [2268] = {.lex_state = 70}, - [2269] = {.lex_state = 70}, + [2264] = {.lex_state = 70}, + [2265] = {.lex_state = 70}, + [2266] = {.lex_state = 3}, + [2267] = {.lex_state = 14}, + [2268] = {.lex_state = 23}, + [2269] = {.lex_state = 23}, [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 70}, - [2272] = {.lex_state = 14}, + [2271] = {.lex_state = 23}, + [2272] = {.lex_state = 70}, [2273] = {.lex_state = 70}, [2274] = {.lex_state = 70}, [2275] = {.lex_state = 70}, [2276] = {.lex_state = 70}, [2277] = {.lex_state = 70}, - [2278] = {.lex_state = 70}, + [2278] = {.lex_state = 27}, [2279] = {.lex_state = 70}, - [2280] = {.lex_state = 70}, - [2281] = {.lex_state = 3}, - [2282] = {.lex_state = 10}, - [2283] = {.lex_state = 14}, - [2284] = {.lex_state = 3}, - [2285] = {.lex_state = 10}, - [2286] = {.lex_state = 167}, + [2280] = {.lex_state = 14}, + [2281] = {.lex_state = 70}, + [2282] = {.lex_state = 14}, + [2283] = {.lex_state = 10}, + [2284] = {.lex_state = 23}, + [2285] = {.lex_state = 14}, + [2286] = {.lex_state = 23}, [2287] = {.lex_state = 14}, - [2288] = {.lex_state = 14}, + [2288] = {.lex_state = 3}, [2289] = {.lex_state = 70}, - [2290] = {.lex_state = 14}, + [2290] = {.lex_state = 17}, [2291] = {.lex_state = 14}, - [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 18}, - [2294] = {.lex_state = 27}, - [2295] = {.lex_state = 14}, - [2296] = {.lex_state = 14}, - [2297] = {.lex_state = 14}, - [2298] = {.lex_state = 27}, - [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 27}, - [2301] = {.lex_state = 27}, - [2302] = {.lex_state = 13}, - [2303] = {.lex_state = 27}, - [2304] = {.lex_state = 3}, + [2292] = {.lex_state = 70}, + [2293] = {.lex_state = 14}, + [2294] = {.lex_state = 167}, + [2295] = {.lex_state = 23}, + [2296] = {.lex_state = 70}, + [2297] = {.lex_state = 70}, + [2298] = {.lex_state = 14}, + [2299] = {.lex_state = 14}, + [2300] = {.lex_state = 14}, + [2301] = {.lex_state = 14}, + [2302] = {.lex_state = 14}, + [2303] = {.lex_state = 14}, + [2304] = {.lex_state = 14}, [2305] = {.lex_state = 14}, [2306] = {.lex_state = 27}, - [2307] = {.lex_state = 14}, - [2308] = {.lex_state = 14}, - [2309] = {.lex_state = 14}, - [2310] = {.lex_state = 18}, - [2311] = {.lex_state = 13}, - [2312] = {.lex_state = 14}, - [2313] = {.lex_state = 18}, + [2307] = {.lex_state = 17}, + [2308] = {.lex_state = 13}, + [2309] = {.lex_state = 27}, + [2310] = {.lex_state = 70}, + [2311] = {.lex_state = 17}, + [2312] = {.lex_state = 3}, + [2313] = {.lex_state = 14}, [2314] = {.lex_state = 14}, - [2315] = {.lex_state = 17}, + [2315] = {.lex_state = 14}, [2316] = {.lex_state = 14}, [2317] = {.lex_state = 14}, [2318] = {.lex_state = 14}, [2319] = {.lex_state = 14}, - [2320] = {.lex_state = 14}, - [2321] = {.lex_state = 14}, - [2322] = {.lex_state = 14}, - [2323] = {.lex_state = 14}, + [2320] = {.lex_state = 27}, + [2321] = {.lex_state = 19}, + [2322] = {.lex_state = 17}, + [2323] = {.lex_state = 19}, [2324] = {.lex_state = 14}, - [2325] = {.lex_state = 18}, - [2326] = {.lex_state = 27}, - [2327] = {.lex_state = 18}, + [2325] = {.lex_state = 19}, + [2326] = {.lex_state = 23}, + [2327] = {.lex_state = 3}, [2328] = {.lex_state = 14}, [2329] = {.lex_state = 14}, [2330] = {.lex_state = 14}, - [2331] = {.lex_state = 14}, - [2332] = {.lex_state = 14}, - [2333] = {.lex_state = 14}, - [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 14}, - [2336] = {.lex_state = 27}, - [2337] = {.lex_state = 23}, + [2331] = {.lex_state = 27}, + [2332] = {.lex_state = 27}, + [2333] = {.lex_state = 27}, + [2334] = {.lex_state = 27}, + [2335] = {.lex_state = 3}, + [2336] = {.lex_state = 14}, + [2337] = {.lex_state = 27}, [2338] = {.lex_state = 14}, - [2339] = {.lex_state = 14}, - [2340] = {.lex_state = 70}, + [2339] = {.lex_state = 27}, + [2340] = {.lex_state = 14}, [2341] = {.lex_state = 14}, - [2342] = {.lex_state = 3}, - [2343] = {.lex_state = 27}, - [2344] = {.lex_state = 27}, - [2345] = {.lex_state = 27}, - [2346] = {.lex_state = 27}, - [2347] = {.lex_state = 14}, + [2342] = {.lex_state = 19}, + [2343] = {.lex_state = 14}, + [2344] = {.lex_state = 14}, + [2345] = {.lex_state = 17}, + [2346] = {.lex_state = 17}, + [2347] = {.lex_state = 27}, [2348] = {.lex_state = 14}, [2349] = {.lex_state = 14}, [2350] = {.lex_state = 14}, - [2351] = {.lex_state = 14}, - [2352] = {.lex_state = 27}, - [2353] = {.lex_state = 27}, + [2351] = {.lex_state = 27}, + [2352] = {.lex_state = 14}, + [2353] = {.lex_state = 14}, [2354] = {.lex_state = 14}, - [2355] = {.lex_state = 14}, - [2356] = {.lex_state = 27}, + [2355] = {.lex_state = 27}, + [2356] = {.lex_state = 14}, [2357] = {.lex_state = 14}, [2358] = {.lex_state = 14}, - [2359] = {.lex_state = 14}, - [2360] = {.lex_state = 17}, - [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 17}, - [2363] = {.lex_state = 17}, + [2359] = {.lex_state = 13}, + [2360] = {.lex_state = 14}, + [2361] = {.lex_state = 14}, + [2362] = {.lex_state = 14}, + [2363] = {.lex_state = 14}, [2364] = {.lex_state = 14}, [2365] = {.lex_state = 70}, [2366] = {.lex_state = 14}, [2367] = {.lex_state = 14}, - [2368] = {.lex_state = 14}, + [2368] = {.lex_state = 17}, [2369] = {.lex_state = 14}, [2370] = {.lex_state = 14}, [2371] = {.lex_state = 14}, - [2372] = {.lex_state = 3}, - [2373] = {.lex_state = 27}, - [2374] = {.lex_state = 3}, + [2372] = {.lex_state = 14}, + [2373] = {.lex_state = 14}, + [2374] = {.lex_state = 27}, [2375] = {.lex_state = 14}, [2376] = {.lex_state = 14}, [2377] = {.lex_state = 14}, [2378] = {.lex_state = 14}, [2379] = {.lex_state = 14}, - [2380] = {.lex_state = 14}, - [2381] = {.lex_state = 14}, - [2382] = {.lex_state = 14}, - [2383] = {.lex_state = 27}, - [2384] = {.lex_state = 14}, + [2380] = {.lex_state = 19}, + [2381] = {.lex_state = 27}, + [2382] = {.lex_state = 27}, + [2383] = {.lex_state = 14}, + [2384] = {.lex_state = 27}, [2385] = {.lex_state = 14}, [2386] = {.lex_state = 14}, - [2387] = {.lex_state = 17}, - [2388] = {.lex_state = 18}, - [2389] = {.lex_state = 10}, - [2390] = {.lex_state = 27}, - [2391] = {.lex_state = 27}, - [2392] = {.lex_state = 3}, - [2393] = {.lex_state = 27}, - [2394] = {.lex_state = 10}, + [2387] = {.lex_state = 14}, + [2388] = {.lex_state = 27}, + [2389] = {.lex_state = 19}, + [2390] = {.lex_state = 3}, + [2391] = {.lex_state = 17}, + [2392] = {.lex_state = 27}, + [2393] = {.lex_state = 14}, + [2394] = {.lex_state = 14}, [2395] = {.lex_state = 14}, - [2396] = {.lex_state = 27}, - [2397] = {.lex_state = 10}, - [2398] = {.lex_state = 10}, - [2399] = {.lex_state = 10}, - [2400] = {.lex_state = 14}, - [2401] = {.lex_state = 27}, + [2396] = {.lex_state = 14}, + [2397] = {.lex_state = 14}, + [2398] = {.lex_state = 14}, + [2399] = {.lex_state = 27}, + [2400] = {.lex_state = 10}, + [2401] = {.lex_state = 6}, [2402] = {.lex_state = 10}, - [2403] = {.lex_state = 14}, + [2403] = {.lex_state = 10, .external_lex_state = 3}, [2404] = {.lex_state = 10}, - [2405] = {.lex_state = 6}, - [2406] = {.lex_state = 10}, + [2405] = {.lex_state = 27}, + [2406] = {.lex_state = 27}, [2407] = {.lex_state = 27}, - [2408] = {.lex_state = 10}, - [2409] = {.lex_state = 10}, - [2410] = {.lex_state = 10}, - [2411] = {.lex_state = 10}, - [2412] = {.lex_state = 10}, - [2413] = {.lex_state = 10}, + [2408] = {.lex_state = 27}, + [2409] = {.lex_state = 14}, + [2410] = {.lex_state = 14}, + [2411] = {.lex_state = 27}, + [2412] = {.lex_state = 27}, + [2413] = {.lex_state = 27}, [2414] = {.lex_state = 10}, - [2415] = {.lex_state = 14}, - [2416] = {.lex_state = 27}, - [2417] = {.lex_state = 27}, + [2415] = {.lex_state = 10}, + [2416] = {.lex_state = 14}, + [2417] = {.lex_state = 10}, [2418] = {.lex_state = 27}, - [2419] = {.lex_state = 10}, - [2420] = {.lex_state = 10}, - [2421] = {.lex_state = 27}, - [2422] = {.lex_state = 6}, - [2423] = {.lex_state = 6}, - [2424] = {.lex_state = 70}, + [2419] = {.lex_state = 27}, + [2420] = {.lex_state = 27}, + [2421] = {.lex_state = 14}, + [2422] = {.lex_state = 14}, + [2423] = {.lex_state = 14}, + [2424] = {.lex_state = 27}, [2425] = {.lex_state = 27}, - [2426] = {.lex_state = 27}, - [2427] = {.lex_state = 27}, - [2428] = {.lex_state = 10}, - [2429] = {.lex_state = 27}, + [2426] = {.lex_state = 14}, + [2427] = {.lex_state = 6}, + [2428] = {.lex_state = 27}, + [2429] = {.lex_state = 14}, [2430] = {.lex_state = 27}, - [2431] = {.lex_state = 10}, + [2431] = {.lex_state = 14}, [2432] = {.lex_state = 10}, - [2433] = {.lex_state = 27}, + [2433] = {.lex_state = 3}, [2434] = {.lex_state = 27}, - [2435] = {.lex_state = 14}, + [2435] = {.lex_state = 27}, [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 10}, - [2438] = {.lex_state = 10}, - [2439] = {.lex_state = 14}, - [2440] = {.lex_state = 27}, + [2437] = {.lex_state = 27}, + [2438] = {.lex_state = 27}, + [2439] = {.lex_state = 27}, + [2440] = {.lex_state = 10}, [2441] = {.lex_state = 27}, - [2442] = {.lex_state = 14}, - [2443] = {.lex_state = 14}, - [2444] = {.lex_state = 14}, - [2445] = {.lex_state = 10}, - [2446] = {.lex_state = 14}, - [2447] = {.lex_state = 27}, - [2448] = {.lex_state = 27}, - [2449] = {.lex_state = 27}, + [2442] = {.lex_state = 10}, + [2443] = {.lex_state = 3}, + [2444] = {.lex_state = 10}, + [2445] = {.lex_state = 27}, + [2446] = {.lex_state = 10}, + [2447] = {.lex_state = 10}, + [2448] = {.lex_state = 14}, + [2449] = {.lex_state = 10}, [2450] = {.lex_state = 10}, [2451] = {.lex_state = 14}, - [2452] = {.lex_state = 27}, - [2453] = {.lex_state = 27}, + [2452] = {.lex_state = 10}, + [2453] = {.lex_state = 70}, [2454] = {.lex_state = 27}, [2455] = {.lex_state = 27}, [2456] = {.lex_state = 27}, - [2457] = {.lex_state = 10}, - [2458] = {.lex_state = 14}, + [2457] = {.lex_state = 14}, + [2458] = {.lex_state = 10}, [2459] = {.lex_state = 10}, - [2460] = {.lex_state = 27}, - [2461] = {.lex_state = 14}, - [2462] = {.lex_state = 14}, - [2463] = {.lex_state = 27}, - [2464] = {.lex_state = 27}, + [2460] = {.lex_state = 10}, + [2461] = {.lex_state = 10}, + [2462] = {.lex_state = 10}, + [2463] = {.lex_state = 10}, + [2464] = {.lex_state = 10}, [2465] = {.lex_state = 10}, - [2466] = {.lex_state = 27}, - [2467] = {.lex_state = 10}, - [2468] = {.lex_state = 27}, - [2469] = {.lex_state = 3}, - [2470] = {.lex_state = 14}, + [2466] = {.lex_state = 14}, + [2467] = {.lex_state = 14}, + [2468] = {.lex_state = 10}, + [2469] = {.lex_state = 6}, + [2470] = {.lex_state = 27}, [2471] = {.lex_state = 27}, - [2472] = {.lex_state = 14}, + [2472] = {.lex_state = 27}, [2473] = {.lex_state = 27}, - [2474] = {.lex_state = 10}, - [2475] = {.lex_state = 70}, + [2474] = {.lex_state = 27}, + [2475] = {.lex_state = 14}, [2476] = {.lex_state = 14}, [2477] = {.lex_state = 14}, [2478] = {.lex_state = 14}, [2479] = {.lex_state = 14}, [2480] = {.lex_state = 27}, - [2481] = {.lex_state = 14}, - [2482] = {.lex_state = 27}, - [2483] = {.lex_state = 10, .external_lex_state = 3}, - [2484] = {.lex_state = 10}, - [2485] = {.lex_state = 27}, - [2486] = {.lex_state = 10}, - [2487] = {.lex_state = 27}, + [2481] = {.lex_state = 27}, + [2482] = {.lex_state = 6}, + [2483] = {.lex_state = 10}, + [2484] = {.lex_state = 27}, + [2485] = {.lex_state = 10}, + [2486] = {.lex_state = 27}, + [2487] = {.lex_state = 14}, [2488] = {.lex_state = 14}, [2489] = {.lex_state = 14}, [2490] = {.lex_state = 10}, - [2491] = {.lex_state = 6}, + [2491] = {.lex_state = 10}, [2492] = {.lex_state = 10}, - [2493] = {.lex_state = 14}, - [2494] = {.lex_state = 3}, - [2495] = {.lex_state = 10}, - [2496] = {.lex_state = 10, .external_lex_state = 4}, - [2497] = {.lex_state = 70}, - [2498] = {.lex_state = 6}, - [2499] = {.lex_state = 6}, - [2500] = {.lex_state = 70}, - [2501] = {.lex_state = 70}, - [2502] = {.lex_state = 6}, - [2503] = {.lex_state = 6}, - [2504] = {.lex_state = 10}, - [2505] = {.lex_state = 6}, - [2506] = {.lex_state = 70}, - [2507] = {.lex_state = 27}, - [2508] = {.lex_state = 27}, - [2509] = {.lex_state = 6}, - [2510] = {.lex_state = 10, .external_lex_state = 4}, - [2511] = {.lex_state = 14}, - [2512] = {.lex_state = 70}, - [2513] = {.lex_state = 14}, - [2514] = {.lex_state = 14}, - [2515] = {.lex_state = 14}, - [2516] = {.lex_state = 27}, - [2517] = {.lex_state = 70}, - [2518] = {.lex_state = 10}, - [2519] = {.lex_state = 10}, - [2520] = {.lex_state = 10, .external_lex_state = 4}, - [2521] = {.lex_state = 70}, - [2522] = {.lex_state = 6}, - [2523] = {.lex_state = 14}, - [2524] = {.lex_state = 70}, - [2525] = {.lex_state = 70}, - [2526] = {.lex_state = 70}, - [2527] = {.lex_state = 6}, - [2528] = {.lex_state = 6}, - [2529] = {.lex_state = 6}, + [2493] = {.lex_state = 27}, + [2494] = {.lex_state = 10}, + [2495] = {.lex_state = 14}, + [2496] = {.lex_state = 14}, + [2497] = {.lex_state = 10}, + [2498] = {.lex_state = 27}, + [2499] = {.lex_state = 27}, + [2500] = {.lex_state = 10}, + [2501] = {.lex_state = 14}, + [2502] = {.lex_state = 14}, + [2503] = {.lex_state = 27}, + [2504] = {.lex_state = 70}, + [2505] = {.lex_state = 10}, + [2506] = {.lex_state = 6}, + [2507] = {.lex_state = 10}, + [2508] = {.lex_state = 14}, + [2509] = {.lex_state = 17}, + [2510] = {.lex_state = 17}, + [2511] = {.lex_state = 17}, + [2512] = {.lex_state = 17}, + [2513] = {.lex_state = 70}, + [2514] = {.lex_state = 70}, + [2515] = {.lex_state = 17}, + [2516] = {.lex_state = 70}, + [2517] = {.lex_state = 6}, + [2518] = {.lex_state = 6}, + [2519] = {.lex_state = 17}, + [2520] = {.lex_state = 17}, + [2521] = {.lex_state = 27}, + [2522] = {.lex_state = 70}, + [2523] = {.lex_state = 17}, + [2524] = {.lex_state = 14}, + [2525] = {.lex_state = 14}, + [2526] = {.lex_state = 14}, + [2527] = {.lex_state = 14}, + [2528] = {.lex_state = 14}, + [2529] = {.lex_state = 10}, [2530] = {.lex_state = 14}, - [2531] = {.lex_state = 70}, - [2532] = {.lex_state = 27}, - [2533] = {.lex_state = 70}, - [2534] = {.lex_state = 70}, - [2535] = {.lex_state = 6}, - [2536] = {.lex_state = 14}, - [2537] = {.lex_state = 6}, + [2531] = {.lex_state = 10, .external_lex_state = 4}, + [2532] = {.lex_state = 14}, + [2533] = {.lex_state = 3}, + [2534] = {.lex_state = 6}, + [2535] = {.lex_state = 14}, + [2536] = {.lex_state = 10}, + [2537] = {.lex_state = 14}, [2538] = {.lex_state = 14}, - [2539] = {.lex_state = 6}, - [2540] = {.lex_state = 14}, + [2539] = {.lex_state = 70}, + [2540] = {.lex_state = 70}, [2541] = {.lex_state = 14}, - [2542] = {.lex_state = 14}, - [2543] = {.lex_state = 14}, - [2544] = {.lex_state = 14}, - [2545] = {.lex_state = 14}, + [2542] = {.lex_state = 10}, + [2543] = {.lex_state = 6}, + [2544] = {.lex_state = 6}, + [2545] = {.lex_state = 70}, [2546] = {.lex_state = 10}, - [2547] = {.lex_state = 10}, - [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 27}, - [2550] = {.lex_state = 29}, + [2547] = {.lex_state = 14}, + [2548] = {.lex_state = 6}, + [2549] = {.lex_state = 29}, + [2550] = {.lex_state = 14}, [2551] = {.lex_state = 14}, [2552] = {.lex_state = 70}, - [2553] = {.lex_state = 70}, - [2554] = {.lex_state = 70}, - [2555] = {.lex_state = 70}, - [2556] = {.lex_state = 6}, - [2557] = {.lex_state = 14}, - [2558] = {.lex_state = 14}, - [2559] = {.lex_state = 14}, + [2553] = {.lex_state = 14}, + [2554] = {.lex_state = 14}, + [2555] = {.lex_state = 14}, + [2556] = {.lex_state = 27}, + [2557] = {.lex_state = 70}, + [2558] = {.lex_state = 70}, + [2559] = {.lex_state = 10}, [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 14}, - [2562] = {.lex_state = 14}, - [2563] = {.lex_state = 10, .external_lex_state = 4}, - [2564] = {.lex_state = 27}, + [2561] = {.lex_state = 27}, + [2562] = {.lex_state = 70}, + [2563] = {.lex_state = 70}, + [2564] = {.lex_state = 14}, [2565] = {.lex_state = 27}, - [2566] = {.lex_state = 14}, - [2567] = {.lex_state = 10}, - [2568] = {.lex_state = 70}, - [2569] = {.lex_state = 27}, + [2566] = {.lex_state = 10}, + [2567] = {.lex_state = 6}, + [2568] = {.lex_state = 10}, + [2569] = {.lex_state = 10}, [2570] = {.lex_state = 14}, [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 6}, - [2573] = {.lex_state = 10}, - [2574] = {.lex_state = 14}, - [2575] = {.lex_state = 27}, - [2576] = {.lex_state = 70}, - [2577] = {.lex_state = 14}, - [2578] = {.lex_state = 6}, - [2579] = {.lex_state = 70}, - [2580] = {.lex_state = 70}, + [2572] = {.lex_state = 10}, + [2573] = {.lex_state = 27}, + [2574] = {.lex_state = 70}, + [2575] = {.lex_state = 10, .external_lex_state = 4}, + [2576] = {.lex_state = 6}, + [2577] = {.lex_state = 27}, + [2578] = {.lex_state = 70}, + [2579] = {.lex_state = 10}, + [2580] = {.lex_state = 10}, [2581] = {.lex_state = 27}, - [2582] = {.lex_state = 10}, - [2583] = {.lex_state = 10}, - [2584] = {.lex_state = 10, .external_lex_state = 4}, + [2582] = {.lex_state = 14}, + [2583] = {.lex_state = 27}, + [2584] = {.lex_state = 3}, [2585] = {.lex_state = 10}, [2586] = {.lex_state = 10}, - [2587] = {.lex_state = 29}, - [2588] = {.lex_state = 6}, - [2589] = {.lex_state = 70}, - [2590] = {.lex_state = 16}, - [2591] = {.lex_state = 10}, - [2592] = {.lex_state = 70}, + [2587] = {.lex_state = 10, .external_lex_state = 4}, + [2588] = {.lex_state = 70}, + [2589] = {.lex_state = 10}, + [2590] = {.lex_state = 10}, + [2591] = {.lex_state = 27}, + [2592] = {.lex_state = 16}, [2593] = {.lex_state = 10}, - [2594] = {.lex_state = 10}, - [2595] = {.lex_state = 10, .external_lex_state = 4}, - [2596] = {.lex_state = 70}, - [2597] = {.lex_state = 6}, - [2598] = {.lex_state = 6}, - [2599] = {.lex_state = 6}, + [2594] = {.lex_state = 70}, + [2595] = {.lex_state = 10}, + [2596] = {.lex_state = 10}, + [2597] = {.lex_state = 10}, + [2598] = {.lex_state = 10, .external_lex_state = 4}, + [2599] = {.lex_state = 70}, [2600] = {.lex_state = 6}, - [2601] = {.lex_state = 70}, - [2602] = {.lex_state = 10}, + [2601] = {.lex_state = 6}, + [2602] = {.lex_state = 6}, [2603] = {.lex_state = 6}, - [2604] = {.lex_state = 10}, - [2605] = {.lex_state = 27}, - [2606] = {.lex_state = 10}, - [2607] = {.lex_state = 10}, - [2608] = {.lex_state = 10}, - [2609] = {.lex_state = 10}, - [2610] = {.lex_state = 70}, - [2611] = {.lex_state = 14}, - [2612] = {.lex_state = 10}, - [2613] = {.lex_state = 16}, + [2604] = {.lex_state = 70}, + [2605] = {.lex_state = 70}, + [2606] = {.lex_state = 16}, + [2607] = {.lex_state = 6}, + [2608] = {.lex_state = 70}, + [2609] = {.lex_state = 27}, + [2610] = {.lex_state = 10}, + [2611] = {.lex_state = 70}, + [2612] = {.lex_state = 10, .external_lex_state = 4}, + [2613] = {.lex_state = 10}, [2614] = {.lex_state = 70}, [2615] = {.lex_state = 10}, [2616] = {.lex_state = 10}, - [2617] = {.lex_state = 10, .external_lex_state = 4}, - [2618] = {.lex_state = 10}, - [2619] = {.lex_state = 10}, + [2617] = {.lex_state = 70}, + [2618] = {.lex_state = 70}, + [2619] = {.lex_state = 6}, [2620] = {.lex_state = 70}, [2621] = {.lex_state = 10}, [2622] = {.lex_state = 70}, - [2623] = {.lex_state = 10, .external_lex_state = 4}, - [2624] = {.lex_state = 70}, - [2625] = {.lex_state = 6}, - [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 6}, + [2623] = {.lex_state = 10}, + [2624] = {.lex_state = 10}, + [2625] = {.lex_state = 10}, + [2626] = {.lex_state = 10}, + [2627] = {.lex_state = 10}, [2628] = {.lex_state = 10}, - [2629] = {.lex_state = 10}, - [2630] = {.lex_state = 10, .external_lex_state = 4}, + [2629] = {.lex_state = 10, .external_lex_state = 4}, + [2630] = {.lex_state = 10}, [2631] = {.lex_state = 10}, - [2632] = {.lex_state = 27}, - [2633] = {.lex_state = 70}, - [2634] = {.lex_state = 10, .external_lex_state = 4}, - [2635] = {.lex_state = 70}, - [2636] = {.lex_state = 6}, - [2637] = {.lex_state = 6}, + [2632] = {.lex_state = 70}, + [2633] = {.lex_state = 10}, + [2634] = {.lex_state = 10}, + [2635] = {.lex_state = 10}, + [2636] = {.lex_state = 10, .external_lex_state = 4}, + [2637] = {.lex_state = 70}, [2638] = {.lex_state = 10}, - [2639] = {.lex_state = 70}, - [2640] = {.lex_state = 70}, - [2641] = {.lex_state = 10, .external_lex_state = 4}, - [2642] = {.lex_state = 10, .external_lex_state = 4}, - [2643] = {.lex_state = 6}, - [2644] = {.lex_state = 6}, - [2645] = {.lex_state = 10}, - [2646] = {.lex_state = 14}, - [2647] = {.lex_state = 14}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 6}, - [2650] = {.lex_state = 6}, + [2639] = {.lex_state = 6}, + [2640] = {.lex_state = 6}, + [2641] = {.lex_state = 10}, + [2642] = {.lex_state = 10}, + [2643] = {.lex_state = 70}, + [2644] = {.lex_state = 10}, + [2645] = {.lex_state = 10, .external_lex_state = 4}, + [2646] = {.lex_state = 10}, + [2647] = {.lex_state = 70}, + [2648] = {.lex_state = 10, .external_lex_state = 4}, + [2649] = {.lex_state = 70}, + [2650] = {.lex_state = 70}, [2651] = {.lex_state = 6}, [2652] = {.lex_state = 6}, [2653] = {.lex_state = 6}, - [2654] = {.lex_state = 6}, + [2654] = {.lex_state = 14}, [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 6}, - [2657] = {.lex_state = 6}, - [2658] = {.lex_state = 6}, + [2656] = {.lex_state = 10, .external_lex_state = 4}, + [2657] = {.lex_state = 14}, + [2658] = {.lex_state = 10, .external_lex_state = 4}, [2659] = {.lex_state = 6}, - [2660] = {.lex_state = 14}, - [2661] = {.lex_state = 29}, - [2662] = {.lex_state = 10}, - [2663] = {.lex_state = 3}, - [2664] = {.lex_state = 70}, - [2665] = {.lex_state = 70}, - [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 14}, - [2668] = {.lex_state = 14}, - [2669] = {.lex_state = 14}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 70}, - [2672] = {.lex_state = 70}, - [2673] = {.lex_state = 10}, - [2674] = {.lex_state = 70}, - [2675] = {.lex_state = 10}, - [2676] = {.lex_state = 10}, - [2677] = {.lex_state = 6}, + [2660] = {.lex_state = 6}, + [2661] = {.lex_state = 27}, + [2662] = {.lex_state = 6}, + [2663] = {.lex_state = 70}, + [2664] = {.lex_state = 14}, + [2665] = {.lex_state = 6}, + [2666] = {.lex_state = 6}, + [2667] = {.lex_state = 6}, + [2668] = {.lex_state = 6}, + [2669] = {.lex_state = 6}, + [2670] = {.lex_state = 6}, + [2671] = {.lex_state = 6}, + [2672] = {.lex_state = 6}, + [2673] = {.lex_state = 6}, + [2674] = {.lex_state = 6}, + [2675] = {.lex_state = 6}, + [2676] = {.lex_state = 6}, + [2677] = {.lex_state = 29}, [2678] = {.lex_state = 70}, [2679] = {.lex_state = 70}, [2680] = {.lex_state = 70}, - [2681] = {.lex_state = 27}, - [2682] = {.lex_state = 17}, - [2683] = {.lex_state = 14}, - [2684] = {.lex_state = 10}, + [2681] = {.lex_state = 3}, + [2682] = {.lex_state = 70}, + [2683] = {.lex_state = 10}, + [2684] = {.lex_state = 14}, [2685] = {.lex_state = 14}, - [2686] = {.lex_state = 10}, - [2687] = {.lex_state = 10}, - [2688] = {.lex_state = 10, .external_lex_state = 4}, - [2689] = {.lex_state = 70}, + [2686] = {.lex_state = 16}, + [2687] = {.lex_state = 70}, + [2688] = {.lex_state = 6}, + [2689] = {.lex_state = 6}, [2690] = {.lex_state = 10}, - [2691] = {.lex_state = 29}, + [2691] = {.lex_state = 10}, [2692] = {.lex_state = 70}, [2693] = {.lex_state = 70}, [2694] = {.lex_state = 10}, [2695] = {.lex_state = 10}, - [2696] = {.lex_state = 17}, - [2697] = {.lex_state = 10}, - [2698] = {.lex_state = 70}, - [2699] = {.lex_state = 10}, - [2700] = {.lex_state = 10}, - [2701] = {.lex_state = 10}, + [2696] = {.lex_state = 70}, + [2697] = {.lex_state = 14}, + [2698] = {.lex_state = 14}, + [2699] = {.lex_state = 70}, + [2700] = {.lex_state = 6}, + [2701] = {.lex_state = 27}, [2702] = {.lex_state = 10}, - [2703] = {.lex_state = 10}, + [2703] = {.lex_state = 14}, [2704] = {.lex_state = 10}, - [2705] = {.lex_state = 70}, + [2705] = {.lex_state = 29}, [2706] = {.lex_state = 10}, - [2707] = {.lex_state = 3}, - [2708] = {.lex_state = 3}, - [2709] = {.lex_state = 14}, - [2710] = {.lex_state = 16}, - [2711] = {.lex_state = 14}, - [2712] = {.lex_state = 10}, - [2713] = {.lex_state = 3}, - [2714] = {.lex_state = 14}, + [2707] = {.lex_state = 70}, + [2708] = {.lex_state = 14}, + [2709] = {.lex_state = 6}, + [2710] = {.lex_state = 10}, + [2711] = {.lex_state = 10}, + [2712] = {.lex_state = 70}, + [2713] = {.lex_state = 6}, + [2714] = {.lex_state = 10}, [2715] = {.lex_state = 10}, - [2716] = {.lex_state = 17}, - [2717] = {.lex_state = 70}, - [2718] = {.lex_state = 17}, - [2719] = {.lex_state = 14}, - [2720] = {.lex_state = 6}, + [2716] = {.lex_state = 29}, + [2717] = {.lex_state = 14}, + [2718] = {.lex_state = 10}, + [2719] = {.lex_state = 70}, + [2720] = {.lex_state = 10}, [2721] = {.lex_state = 10}, [2722] = {.lex_state = 10}, - [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 6}, - [2725] = {.lex_state = 6}, - [2726] = {.lex_state = 17}, - [2727] = {.lex_state = 70}, - [2728] = {.lex_state = 6}, - [2729] = {.lex_state = 6}, - [2730] = {.lex_state = 10}, - [2731] = {.lex_state = 70}, - [2732] = {.lex_state = 70}, - [2733] = {.lex_state = 70}, - [2734] = {.lex_state = 70}, + [2723] = {.lex_state = 10}, + [2724] = {.lex_state = 3}, + [2725] = {.lex_state = 14}, + [2726] = {.lex_state = 70}, + [2727] = {.lex_state = 27}, + [2728] = {.lex_state = 70}, + [2729] = {.lex_state = 14}, + [2730] = {.lex_state = 70}, + [2731] = {.lex_state = 14}, + [2732] = {.lex_state = 3}, + [2733] = {.lex_state = 6}, + [2734] = {.lex_state = 14}, [2735] = {.lex_state = 70}, - [2736] = {.lex_state = 70}, - [2737] = {.lex_state = 70}, - [2738] = {.lex_state = 70}, - [2739] = {.lex_state = 70}, - [2740] = {.lex_state = 70}, - [2741] = {.lex_state = 70}, - [2742] = {.lex_state = 70}, - [2743] = {.lex_state = 70}, - [2744] = {.lex_state = 70}, - [2745] = {.lex_state = 70}, - [2746] = {.lex_state = 70}, + [2736] = {.lex_state = 10}, + [2737] = {.lex_state = 6}, + [2738] = {.lex_state = 14}, + [2739] = {.lex_state = 10}, + [2740] = {.lex_state = 6}, + [2741] = {.lex_state = 6}, + [2742] = {.lex_state = 6}, + [2743] = {.lex_state = 6}, + [2744] = {.lex_state = 10, .external_lex_state = 4}, + [2745] = {.lex_state = 14}, + [2746] = {.lex_state = 10, .external_lex_state = 4}, [2747] = {.lex_state = 70}, - [2748] = {.lex_state = 18}, + [2748] = {.lex_state = 70}, [2749] = {.lex_state = 70}, [2750] = {.lex_state = 70}, - [2751] = {.lex_state = 70}, + [2751] = {.lex_state = 17}, [2752] = {.lex_state = 70}, - [2753] = {.lex_state = 6}, + [2753] = {.lex_state = 70}, [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 70}, + [2755] = {.lex_state = 17}, [2756] = {.lex_state = 17}, - [2757] = {.lex_state = 14}, + [2757] = {.lex_state = 70}, [2758] = {.lex_state = 70}, - [2759] = {.lex_state = 70}, - [2760] = {.lex_state = 70}, - [2761] = {.lex_state = 17}, - [2762] = {.lex_state = 70}, + [2759] = {.lex_state = 17}, + [2760] = {.lex_state = 14}, + [2761] = {.lex_state = 70}, + [2762] = {.lex_state = 17}, [2763] = {.lex_state = 70}, - [2764] = {.lex_state = 70}, - [2765] = {.lex_state = 18}, - [2766] = {.lex_state = 17}, + [2764] = {.lex_state = 6}, + [2765] = {.lex_state = 70}, + [2766] = {.lex_state = 70}, [2767] = {.lex_state = 70}, - [2768] = {.lex_state = 18}, + [2768] = {.lex_state = 70}, [2769] = {.lex_state = 70}, - [2770] = {.lex_state = 70}, + [2770] = {.lex_state = 17}, [2771] = {.lex_state = 70}, [2772] = {.lex_state = 70}, - [2773] = {.lex_state = 70}, + [2773] = {.lex_state = 17}, [2774] = {.lex_state = 70}, - [2775] = {.lex_state = 70}, + [2775] = {.lex_state = 6}, [2776] = {.lex_state = 70}, [2777] = {.lex_state = 70}, - [2778] = {.lex_state = 70}, - [2779] = {.lex_state = 70}, - [2780] = {.lex_state = 70}, - [2781] = {.lex_state = 70}, - [2782] = {.lex_state = 14}, - [2783] = {.lex_state = 70}, - [2784] = {.lex_state = 6}, - [2785] = {.lex_state = 17}, - [2786] = {.lex_state = 70}, + [2778] = {.lex_state = 17}, + [2779] = {.lex_state = 17}, + [2780] = {.lex_state = 6}, + [2781] = {.lex_state = 17}, + [2782] = {.lex_state = 70}, + [2783] = {.lex_state = 17}, + [2784] = {.lex_state = 17}, + [2785] = {.lex_state = 70}, + [2786] = {.lex_state = 10}, [2787] = {.lex_state = 70}, - [2788] = {.lex_state = 70}, - [2789] = {.lex_state = 70}, + [2788] = {.lex_state = 14}, + [2789] = {.lex_state = 17}, [2790] = {.lex_state = 70}, - [2791] = {.lex_state = 70}, - [2792] = {.lex_state = 70}, - [2793] = {.lex_state = 14}, + [2791] = {.lex_state = 17}, + [2792] = {.lex_state = 6}, + [2793] = {.lex_state = 70}, [2794] = {.lex_state = 17}, [2795] = {.lex_state = 70}, - [2796] = {.lex_state = 70}, - [2797] = {.lex_state = 17}, + [2796] = {.lex_state = 17}, + [2797] = {.lex_state = 70}, [2798] = {.lex_state = 70}, - [2799] = {.lex_state = 70}, - [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 14}, - [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 17}, - [2804] = {.lex_state = 70}, + [2799] = {.lex_state = 14}, + [2800] = {.lex_state = 10, .external_lex_state = 4}, + [2801] = {.lex_state = 70}, + [2802] = {.lex_state = 70}, + [2803] = {.lex_state = 6}, + [2804] = {.lex_state = 14}, [2805] = {.lex_state = 70}, [2806] = {.lex_state = 70}, [2807] = {.lex_state = 70}, - [2808] = {.lex_state = 70}, + [2808] = {.lex_state = 10}, [2809] = {.lex_state = 70}, [2810] = {.lex_state = 70}, [2811] = {.lex_state = 70}, - [2812] = {.lex_state = 70}, - [2813] = {.lex_state = 14}, + [2812] = {.lex_state = 6}, + [2813] = {.lex_state = 70}, [2814] = {.lex_state = 70}, [2815] = {.lex_state = 70}, [2816] = {.lex_state = 70}, [2817] = {.lex_state = 70}, - [2818] = {.lex_state = 70}, - [2819] = {.lex_state = 14}, - [2820] = {.lex_state = 70}, - [2821] = {.lex_state = 70}, + [2818] = {.lex_state = 17}, + [2819] = {.lex_state = 70}, + [2820] = {.lex_state = 17}, + [2821] = {.lex_state = 17}, [2822] = {.lex_state = 70}, - [2823] = {.lex_state = 10}, - [2824] = {.lex_state = 14}, + [2823] = {.lex_state = 17}, + [2824] = {.lex_state = 70}, [2825] = {.lex_state = 70}, - [2826] = {.lex_state = 14}, - [2827] = {.lex_state = 18}, + [2826] = {.lex_state = 70}, + [2827] = {.lex_state = 70}, [2828] = {.lex_state = 70}, [2829] = {.lex_state = 70}, [2830] = {.lex_state = 70}, [2831] = {.lex_state = 70}, [2832] = {.lex_state = 70}, - [2833] = {.lex_state = 14}, - [2834] = {.lex_state = 14}, + [2833] = {.lex_state = 70}, + [2834] = {.lex_state = 70}, [2835] = {.lex_state = 70}, - [2836] = {.lex_state = 6}, + [2836] = {.lex_state = 70}, [2837] = {.lex_state = 70}, [2838] = {.lex_state = 70}, - [2839] = {.lex_state = 70}, + [2839] = {.lex_state = 14}, [2840] = {.lex_state = 70}, - [2841] = {.lex_state = 17}, + [2841] = {.lex_state = 70}, [2842] = {.lex_state = 70}, - [2843] = {.lex_state = 70}, + [2843] = {.lex_state = 17}, [2844] = {.lex_state = 70}, - [2845] = {.lex_state = 17}, + [2845] = {.lex_state = 70}, [2846] = {.lex_state = 70}, - [2847] = {.lex_state = 70}, - [2848] = {.lex_state = 70}, - [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 14}, + [2847] = {.lex_state = 19}, + [2848] = {.lex_state = 10}, + [2849] = {.lex_state = 17}, + [2850] = {.lex_state = 70}, [2851] = {.lex_state = 70}, [2852] = {.lex_state = 70}, [2853] = {.lex_state = 70}, [2854] = {.lex_state = 70}, - [2855] = {.lex_state = 70}, + [2855] = {.lex_state = 14}, [2856] = {.lex_state = 70}, [2857] = {.lex_state = 70}, - [2858] = {.lex_state = 10, .external_lex_state = 4}, + [2858] = {.lex_state = 70}, [2859] = {.lex_state = 70}, [2860] = {.lex_state = 70}, - [2861] = {.lex_state = 27}, - [2862] = {.lex_state = 14}, + [2861] = {.lex_state = 17}, + [2862] = {.lex_state = 70}, [2863] = {.lex_state = 70}, - [2864] = {.lex_state = 70}, - [2865] = {.lex_state = 6}, + [2864] = {.lex_state = 14}, + [2865] = {.lex_state = 19}, [2866] = {.lex_state = 70}, - [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 18}, + [2867] = {.lex_state = 6}, + [2868] = {.lex_state = 70}, [2869] = {.lex_state = 70}, [2870] = {.lex_state = 70}, - [2871] = {.lex_state = 17}, + [2871] = {.lex_state = 70}, [2872] = {.lex_state = 70}, [2873] = {.lex_state = 70}, [2874] = {.lex_state = 70}, - [2875] = {.lex_state = 14}, + [2875] = {.lex_state = 70}, [2876] = {.lex_state = 70}, - [2877] = {.lex_state = 17}, - [2878] = {.lex_state = 17}, + [2877] = {.lex_state = 70}, + [2878] = {.lex_state = 70}, [2879] = {.lex_state = 70}, [2880] = {.lex_state = 70}, [2881] = {.lex_state = 6}, - [2882] = {.lex_state = 17}, + [2882] = {.lex_state = 14}, [2883] = {.lex_state = 70}, [2884] = {.lex_state = 70}, [2885] = {.lex_state = 70}, [2886] = {.lex_state = 70}, - [2887] = {.lex_state = 10}, + [2887] = {.lex_state = 70}, [2888] = {.lex_state = 70}, [2889] = {.lex_state = 70}, [2890] = {.lex_state = 70}, [2891] = {.lex_state = 70}, [2892] = {.lex_state = 70}, [2893] = {.lex_state = 70}, - [2894] = {.lex_state = 17}, - [2895] = {.lex_state = 17}, + [2894] = {.lex_state = 70}, + [2895] = {.lex_state = 70}, [2896] = {.lex_state = 70}, - [2897] = {.lex_state = 17}, + [2897] = {.lex_state = 70}, [2898] = {.lex_state = 70}, - [2899] = {.lex_state = 17}, + [2899] = {.lex_state = 70}, [2900] = {.lex_state = 70}, [2901] = {.lex_state = 70}, - [2902] = {.lex_state = 70}, + [2902] = {.lex_state = 14}, [2903] = {.lex_state = 70}, [2904] = {.lex_state = 70}, - [2905] = {.lex_state = 70}, - [2906] = {.lex_state = 70}, + [2905] = {.lex_state = 19}, + [2906] = {.lex_state = 14}, [2907] = {.lex_state = 70}, - [2908] = {.lex_state = 6}, + [2908] = {.lex_state = 19}, [2909] = {.lex_state = 70}, [2910] = {.lex_state = 70}, [2911] = {.lex_state = 70}, - [2912] = {.lex_state = 17}, + [2912] = {.lex_state = 10}, [2913] = {.lex_state = 70}, - [2914] = {.lex_state = 70}, - [2915] = {.lex_state = 27}, + [2914] = {.lex_state = 14}, + [2915] = {.lex_state = 70}, [2916] = {.lex_state = 70}, - [2917] = {.lex_state = 70}, + [2917] = {.lex_state = 14}, [2918] = {.lex_state = 70}, - [2919] = {.lex_state = 17}, - [2920] = {.lex_state = 70}, + [2919] = {.lex_state = 70}, + [2920] = {.lex_state = 14}, [2921] = {.lex_state = 70}, [2922] = {.lex_state = 70}, - [2923] = {.lex_state = 17}, + [2923] = {.lex_state = 70}, [2924] = {.lex_state = 70}, [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 17}, - [2927] = {.lex_state = 70}, + [2926] = {.lex_state = 70}, + [2927] = {.lex_state = 14}, [2928] = {.lex_state = 70}, - [2929] = {.lex_state = 10}, + [2929] = {.lex_state = 70}, [2930] = {.lex_state = 70}, [2931] = {.lex_state = 70}, [2932] = {.lex_state = 70}, - [2933] = {.lex_state = 14}, + [2933] = {.lex_state = 70}, [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 14}, - [2936] = {.lex_state = 70}, + [2935] = {.lex_state = 6}, + [2936] = {.lex_state = 19}, [2937] = {.lex_state = 70}, [2938] = {.lex_state = 70}, - [2939] = {.lex_state = 10}, + [2939] = {.lex_state = 70}, [2940] = {.lex_state = 70}, [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 6}, + [2942] = {.lex_state = 70}, [2943] = {.lex_state = 70}, [2944] = {.lex_state = 70}, [2945] = {.lex_state = 70}, [2946] = {.lex_state = 70}, [2947] = {.lex_state = 70}, [2948] = {.lex_state = 70}, - [2949] = {.lex_state = 17}, + [2949] = {.lex_state = 70}, [2950] = {.lex_state = 70}, [2951] = {.lex_state = 70}, [2952] = {.lex_state = 70}, - [2953] = {.lex_state = 17}, + [2953] = {.lex_state = 70}, [2954] = {.lex_state = 70}, - [2955] = {.lex_state = 14}, + [2955] = {.lex_state = 70}, [2956] = {.lex_state = 70}, - [2957] = {.lex_state = 14}, - [2958] = {.lex_state = 17}, + [2957] = {.lex_state = 27}, + [2958] = {.lex_state = 70}, [2959] = {.lex_state = 70}, [2960] = {.lex_state = 70}, - [2961] = {.lex_state = 70}, - [2962] = {.lex_state = 17}, + [2961] = {.lex_state = 14}, + [2962] = {.lex_state = 70}, [2963] = {.lex_state = 70}, - [2964] = {.lex_state = 17}, + [2964] = {.lex_state = 70}, [2965] = {.lex_state = 70}, [2966] = {.lex_state = 70}, [2967] = {.lex_state = 70}, - [2968] = {.lex_state = 14}, + [2968] = {.lex_state = 70}, [2969] = {.lex_state = 70}, - [2970] = {.lex_state = 6}, - [2971] = {.lex_state = 17}, - [2972] = {.lex_state = 14}, - [2973] = {.lex_state = 17}, - [2974] = {.lex_state = 17}, - [2975] = {.lex_state = 70}, - [2976] = {.lex_state = 14}, + [2970] = {.lex_state = 70}, + [2971] = {.lex_state = 70}, + [2972] = {.lex_state = 70}, + [2973] = {.lex_state = 70}, + [2974] = {.lex_state = 70}, + [2975] = {.lex_state = 17}, + [2976] = {.lex_state = 70}, [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 17}, - [2979] = {.lex_state = 6}, + [2978] = {.lex_state = 70}, + [2979] = {.lex_state = 70}, [2980] = {.lex_state = 70}, - [2981] = {.lex_state = 70}, - [2982] = {.lex_state = 70}, - [2983] = {.lex_state = 17}, + [2981] = {.lex_state = 17}, + [2982] = {.lex_state = 14}, + [2983] = {.lex_state = 70}, [2984] = {.lex_state = 70}, - [2985] = {.lex_state = 14}, - [2986] = {.lex_state = 70}, + [2985] = {.lex_state = 70}, + [2986] = {.lex_state = 14}, [2987] = {.lex_state = 70}, [2988] = {.lex_state = 70}, - [2989] = {.lex_state = 70}, - [2990] = {.lex_state = 17}, - [2991] = {.lex_state = 70}, + [2989] = {.lex_state = 6}, + [2990] = {.lex_state = 70}, + [2991] = {.lex_state = 14}, [2992] = {.lex_state = 70}, [2993] = {.lex_state = 70}, - [2994] = {.lex_state = 70}, - [2995] = {.lex_state = 17}, + [2994] = {.lex_state = 14}, + [2995] = {.lex_state = 70}, [2996] = {.lex_state = 70}, [2997] = {.lex_state = 70}, [2998] = {.lex_state = 17}, [2999] = {.lex_state = 70}, - [3000] = {.lex_state = 70}, + [3000] = {.lex_state = 17}, [3001] = {.lex_state = 70}, - [3002] = {.lex_state = 14}, + [3002] = {.lex_state = 70}, [3003] = {.lex_state = 70}, - [3004] = {.lex_state = 70}, - [3005] = {.lex_state = 70}, + [3004] = {.lex_state = 27}, + [3005] = {.lex_state = 14}, [3006] = {.lex_state = 14}, [3007] = {.lex_state = 70}, - [3008] = {.lex_state = 14}, + [3008] = {.lex_state = 17}, [3009] = {.lex_state = 14}, [3010] = {.lex_state = 70}, - [3011] = {.lex_state = 70}, + [3011] = {.lex_state = 17}, [3012] = {.lex_state = 70}, - [3013] = {.lex_state = 6}, + [3013] = {.lex_state = 14}, [3014] = {.lex_state = 70}, [3015] = {.lex_state = 70}, - [3016] = {.lex_state = 70}, + [3016] = {.lex_state = 17}, [3017] = {.lex_state = 70}, - [3018] = {.lex_state = 70}, - [3019] = {.lex_state = 6}, - [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 6}, + [3018] = {.lex_state = 17}, + [3019] = {.lex_state = 17}, + [3020] = {.lex_state = 17}, + [3021] = {.lex_state = 70}, [3022] = {.lex_state = 70}, [3023] = {.lex_state = 70}, [3024] = {.lex_state = 70}, - [3025] = {.lex_state = 6}, + [3025] = {.lex_state = 70}, [3026] = {.lex_state = 70}, [3027] = {.lex_state = 70}, [3028] = {.lex_state = 14}, - [3029] = {.lex_state = 6}, + [3029] = {.lex_state = 70}, [3030] = {.lex_state = 70}, - [3031] = {.lex_state = 14}, + [3031] = {.lex_state = 17}, [3032] = {.lex_state = 17}, - [3033] = {.lex_state = 14}, - [3034] = {.lex_state = 14}, + [3033] = {.lex_state = 17}, + [3034] = {.lex_state = 6}, [3035] = {.lex_state = 70}, - [3036] = {.lex_state = 14}, - [3037] = {.lex_state = 14}, - [3038] = {.lex_state = 70}, - [3039] = {.lex_state = 14}, - [3040] = {.lex_state = 14}, - [3041] = {.lex_state = 10, .external_lex_state = 5}, - [3042] = {.lex_state = 14}, - [3043] = {.lex_state = 14}, - [3044] = {.lex_state = 70}, + [3036] = {.lex_state = 70}, + [3037] = {.lex_state = 70}, + [3038] = {.lex_state = 14}, + [3039] = {.lex_state = 6}, + [3040] = {.lex_state = 70}, + [3041] = {.lex_state = 6}, + [3042] = {.lex_state = 70}, + [3043] = {.lex_state = 6}, + [3044] = {.lex_state = 17}, [3045] = {.lex_state = 14}, - [3046] = {.lex_state = 70}, + [3046] = {.lex_state = 14}, [3047] = {.lex_state = 70}, - [3048] = {.lex_state = 27}, + [3048] = {.lex_state = 70}, [3049] = {.lex_state = 70}, - [3050] = {.lex_state = 14}, - [3051] = {.lex_state = 14}, + [3050] = {.lex_state = 70}, + [3051] = {.lex_state = 70}, [3052] = {.lex_state = 70}, [3053] = {.lex_state = 70}, [3054] = {.lex_state = 70}, - [3055] = {.lex_state = 70}, + [3055] = {.lex_state = 14}, [3056] = {.lex_state = 70}, - [3057] = {.lex_state = 70}, - [3058] = {.lex_state = 14}, - [3059] = {.lex_state = 27}, - [3060] = {.lex_state = 70}, - [3061] = {.lex_state = 27}, + [3057] = {.lex_state = 14}, + [3058] = {.lex_state = 70}, + [3059] = {.lex_state = 70}, + [3060] = {.lex_state = 14}, + [3061] = {.lex_state = 14}, [3062] = {.lex_state = 14}, - [3063] = {.lex_state = 14}, + [3063] = {.lex_state = 70}, [3064] = {.lex_state = 14}, [3065] = {.lex_state = 70}, - [3066] = {.lex_state = 14}, + [3066] = {.lex_state = 70}, [3067] = {.lex_state = 14}, - [3068] = {.lex_state = 14}, - [3069] = {.lex_state = 27}, - [3070] = {.lex_state = 70}, + [3068] = {.lex_state = 70}, + [3069] = {.lex_state = 70}, + [3070] = {.lex_state = 70, .external_lex_state = 5}, [3071] = {.lex_state = 70}, [3072] = {.lex_state = 14}, [3073] = {.lex_state = 70}, [3074] = {.lex_state = 70}, - [3075] = {.lex_state = 10}, - [3076] = {.lex_state = 10, .external_lex_state = 5}, + [3075] = {.lex_state = 14}, + [3076] = {.lex_state = 70}, [3077] = {.lex_state = 14}, - [3078] = {.lex_state = 70}, + [3078] = {.lex_state = 14}, [3079] = {.lex_state = 14}, - [3080] = {.lex_state = 70}, - [3081] = {.lex_state = 70}, + [3080] = {.lex_state = 14}, + [3081] = {.lex_state = 14}, [3082] = {.lex_state = 14}, [3083] = {.lex_state = 70}, - [3084] = {.lex_state = 70}, + [3084] = {.lex_state = 14}, [3085] = {.lex_state = 70}, - [3086] = {.lex_state = 14}, + [3086] = {.lex_state = 19}, [3087] = {.lex_state = 70}, [3088] = {.lex_state = 70}, [3089] = {.lex_state = 70}, [3090] = {.lex_state = 70}, - [3091] = {.lex_state = 70}, - [3092] = {.lex_state = 14}, - [3093] = {.lex_state = 70}, + [3091] = {.lex_state = 14}, + [3092] = {.lex_state = 70}, + [3093] = {.lex_state = 14}, [3094] = {.lex_state = 70}, [3095] = {.lex_state = 14}, - [3096] = {.lex_state = 14}, - [3097] = {.lex_state = 70}, + [3096] = {.lex_state = 70}, + [3097] = {.lex_state = 5}, [3098] = {.lex_state = 70}, [3099] = {.lex_state = 70}, - [3100] = {.lex_state = 70}, + [3100] = {.lex_state = 5}, [3101] = {.lex_state = 70}, - [3102] = {.lex_state = 14}, + [3102] = {.lex_state = 70}, [3103] = {.lex_state = 70}, [3104] = {.lex_state = 70}, [3105] = {.lex_state = 70}, [3106] = {.lex_state = 70}, - [3107] = {.lex_state = 70}, + [3107] = {.lex_state = 14}, [3108] = {.lex_state = 70}, [3109] = {.lex_state = 14}, - [3110] = {.lex_state = 14}, + [3110] = {.lex_state = 70}, [3111] = {.lex_state = 14}, - [3112] = {.lex_state = 14}, + [3112] = {.lex_state = 70}, [3113] = {.lex_state = 70}, [3114] = {.lex_state = 70}, [3115] = {.lex_state = 70}, [3116] = {.lex_state = 70}, - [3117] = {.lex_state = 70}, - [3118] = {.lex_state = 14}, - [3119] = {.lex_state = 70}, + [3117] = {.lex_state = 14}, + [3118] = {.lex_state = 10, .external_lex_state = 6}, + [3119] = {.lex_state = 14}, [3120] = {.lex_state = 70}, - [3121] = {.lex_state = 70}, + [3121] = {.lex_state = 14}, [3122] = {.lex_state = 70}, - [3123] = {.lex_state = 70}, - [3124] = {.lex_state = 14}, - [3125] = {.lex_state = 14}, - [3126] = {.lex_state = 14}, - [3127] = {.lex_state = 70}, + [3123] = {.lex_state = 14}, + [3124] = {.lex_state = 70}, + [3125] = {.lex_state = 70}, + [3126] = {.lex_state = 70}, + [3127] = {.lex_state = 14}, [3128] = {.lex_state = 70}, - [3129] = {.lex_state = 70}, + [3129] = {.lex_state = 14}, [3130] = {.lex_state = 14}, - [3131] = {.lex_state = 70, .external_lex_state = 6}, - [3132] = {.lex_state = 14}, + [3131] = {.lex_state = 14}, + [3132] = {.lex_state = 70}, [3133] = {.lex_state = 14}, - [3134] = {.lex_state = 14}, - [3135] = {.lex_state = 14}, + [3134] = {.lex_state = 70}, + [3135] = {.lex_state = 70}, [3136] = {.lex_state = 70}, [3137] = {.lex_state = 70}, - [3138] = {.lex_state = 70}, + [3138] = {.lex_state = 14}, [3139] = {.lex_state = 14}, [3140] = {.lex_state = 14}, - [3141] = {.lex_state = 70}, + [3141] = {.lex_state = 14}, [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 14}, + [3143] = {.lex_state = 70}, [3144] = {.lex_state = 70}, - [3145] = {.lex_state = 14}, - [3146] = {.lex_state = 14}, + [3145] = {.lex_state = 10, .external_lex_state = 6}, + [3146] = {.lex_state = 70}, [3147] = {.lex_state = 14}, - [3148] = {.lex_state = 70}, - [3149] = {.lex_state = 70}, + [3148] = {.lex_state = 14}, + [3149] = {.lex_state = 14}, [3150] = {.lex_state = 70}, [3151] = {.lex_state = 70}, - [3152] = {.lex_state = 6}, - [3153] = {.lex_state = 70}, - [3154] = {.lex_state = 70}, - [3155] = {.lex_state = 70}, - [3156] = {.lex_state = 70}, - [3157] = {.lex_state = 14}, - [3158] = {.lex_state = 14}, + [3152] = {.lex_state = 70}, + [3153] = {.lex_state = 14}, + [3154] = {.lex_state = 14}, + [3155] = {.lex_state = 14}, + [3156] = {.lex_state = 6}, + [3157] = {.lex_state = 70}, + [3158] = {.lex_state = 70}, [3159] = {.lex_state = 70}, [3160] = {.lex_state = 14}, [3161] = {.lex_state = 14}, - [3162] = {.lex_state = 70}, - [3163] = {.lex_state = 70}, - [3164] = {.lex_state = 14}, - [3165] = {.lex_state = 14}, - [3166] = {.lex_state = 27}, - [3167] = {.lex_state = 14}, - [3168] = {.lex_state = 14}, + [3162] = {.lex_state = 14}, + [3163] = {.lex_state = 14}, + [3164] = {.lex_state = 70}, + [3165] = {.lex_state = 70}, + [3166] = {.lex_state = 14}, + [3167] = {.lex_state = 70}, + [3168] = {.lex_state = 70}, [3169] = {.lex_state = 70}, - [3170] = {.lex_state = 14}, + [3170] = {.lex_state = 70}, [3171] = {.lex_state = 70}, [3172] = {.lex_state = 14}, [3173] = {.lex_state = 14}, [3174] = {.lex_state = 14}, [3175] = {.lex_state = 14}, - [3176] = {.lex_state = 14}, - [3177] = {.lex_state = 14}, - [3178] = {.lex_state = 14}, - [3179] = {.lex_state = 5}, + [3176] = {.lex_state = 70}, + [3177] = {.lex_state = 70}, + [3178] = {.lex_state = 70}, + [3179] = {.lex_state = 14}, [3180] = {.lex_state = 14}, - [3181] = {.lex_state = 5}, + [3181] = {.lex_state = 14}, [3182] = {.lex_state = 14}, [3183] = {.lex_state = 14}, - [3184] = {.lex_state = 70}, + [3184] = {.lex_state = 14}, [3185] = {.lex_state = 14}, [3186] = {.lex_state = 14}, [3187] = {.lex_state = 14}, [3188] = {.lex_state = 14}, - [3189] = {.lex_state = 70}, - [3190] = {.lex_state = 70}, + [3189] = {.lex_state = 14}, + [3190] = {.lex_state = 14}, [3191] = {.lex_state = 14}, - [3192] = {.lex_state = 70}, - [3193] = {.lex_state = 70}, - [3194] = {.lex_state = 18}, - [3195] = {.lex_state = 70}, - [3196] = {.lex_state = 70}, - [3197] = {.lex_state = 70}, - [3198] = {.lex_state = 70}, + [3192] = {.lex_state = 14}, + [3193] = {.lex_state = 14}, + [3194] = {.lex_state = 14}, + [3195] = {.lex_state = 14}, + [3196] = {.lex_state = 14}, + [3197] = {.lex_state = 14}, + [3198] = {.lex_state = 14}, [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 14}, - [3201] = {.lex_state = 70}, + [3200] = {.lex_state = 70}, + [3201] = {.lex_state = 14}, [3202] = {.lex_state = 70}, [3203] = {.lex_state = 70}, - [3204] = {.lex_state = 14}, - [3205] = {.lex_state = 14}, - [3206] = {.lex_state = 14}, + [3204] = {.lex_state = 10, .external_lex_state = 6}, + [3205] = {.lex_state = 70}, + [3206] = {.lex_state = 70}, [3207] = {.lex_state = 70}, - [3208] = {.lex_state = 70}, + [3208] = {.lex_state = 27}, [3209] = {.lex_state = 70}, - [3210] = {.lex_state = 70}, - [3211] = {.lex_state = 70}, + [3210] = {.lex_state = 14}, + [3211] = {.lex_state = 14}, [3212] = {.lex_state = 70}, - [3213] = {.lex_state = 6}, + [3213] = {.lex_state = 14}, [3214] = {.lex_state = 70}, [3215] = {.lex_state = 70}, [3216] = {.lex_state = 70}, - [3217] = {.lex_state = 70}, - [3218] = {.lex_state = 70}, + [3217] = {.lex_state = 14}, + [3218] = {.lex_state = 14}, [3219] = {.lex_state = 70}, [3220] = {.lex_state = 70}, [3221] = {.lex_state = 70}, @@ -13266,398 +13305,414 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3225] = {.lex_state = 70}, [3226] = {.lex_state = 70}, [3227] = {.lex_state = 14}, - [3228] = {.lex_state = 70}, + [3228] = {.lex_state = 14}, [3229] = {.lex_state = 70}, [3230] = {.lex_state = 70}, [3231] = {.lex_state = 70}, [3232] = {.lex_state = 70}, [3233] = {.lex_state = 70}, [3234] = {.lex_state = 70}, - [3235] = {.lex_state = 14}, - [3236] = {.lex_state = 14}, + [3235] = {.lex_state = 70}, + [3236] = {.lex_state = 70}, [3237] = {.lex_state = 70}, - [3238] = {.lex_state = 14}, - [3239] = {.lex_state = 14}, + [3238] = {.lex_state = 70}, + [3239] = {.lex_state = 70}, [3240] = {.lex_state = 70}, [3241] = {.lex_state = 70}, [3242] = {.lex_state = 70}, - [3243] = {.lex_state = 70}, + [3243] = {.lex_state = 14}, [3244] = {.lex_state = 70}, - [3245] = {.lex_state = 70}, - [3246] = {.lex_state = 14}, - [3247] = {.lex_state = 14}, + [3245] = {.lex_state = 14}, + [3246] = {.lex_state = 70}, + [3247] = {.lex_state = 70}, [3248] = {.lex_state = 70}, - [3249] = {.lex_state = 14}, - [3250] = {.lex_state = 70}, + [3249] = {.lex_state = 70}, + [3250] = {.lex_state = 14}, [3251] = {.lex_state = 70}, [3252] = {.lex_state = 70}, [3253] = {.lex_state = 70}, - [3254] = {.lex_state = 14}, + [3254] = {.lex_state = 70}, [3255] = {.lex_state = 70}, [3256] = {.lex_state = 70}, - [3257] = {.lex_state = 70}, + [3257] = {.lex_state = 14}, [3258] = {.lex_state = 70}, [3259] = {.lex_state = 70}, - [3260] = {.lex_state = 14}, + [3260] = {.lex_state = 70}, [3261] = {.lex_state = 14}, [3262] = {.lex_state = 70}, - [3263] = {.lex_state = 70, .external_lex_state = 6}, + [3263] = {.lex_state = 14}, [3264] = {.lex_state = 70}, - [3265] = {.lex_state = 10, .external_lex_state = 5}, - [3266] = {.lex_state = 70}, - [3267] = {.lex_state = 14}, + [3265] = {.lex_state = 70}, + [3266] = {.lex_state = 70, .external_lex_state = 5}, + [3267] = {.lex_state = 70}, [3268] = {.lex_state = 27}, - [3269] = {.lex_state = 70}, + [3269] = {.lex_state = 27}, [3270] = {.lex_state = 14}, - [3271] = {.lex_state = 70}, - [3272] = {.lex_state = 70}, + [3271] = {.lex_state = 14}, + [3272] = {.lex_state = 14}, [3273] = {.lex_state = 70}, [3274] = {.lex_state = 70}, - [3275] = {.lex_state = 70}, + [3275] = {.lex_state = 14}, [3276] = {.lex_state = 70}, [3277] = {.lex_state = 70}, - [3278] = {.lex_state = 70}, + [3278] = {.lex_state = 14}, [3279] = {.lex_state = 70}, - [3280] = {.lex_state = 70}, - [3281] = {.lex_state = 14}, + [3280] = {.lex_state = 27}, + [3281] = {.lex_state = 70}, [3282] = {.lex_state = 70}, - [3283] = {.lex_state = 14}, + [3283] = {.lex_state = 70}, [3284] = {.lex_state = 70}, - [3285] = {.lex_state = 14}, + [3285] = {.lex_state = 70}, [3286] = {.lex_state = 70}, - [3287] = {.lex_state = 14}, + [3287] = {.lex_state = 70}, [3288] = {.lex_state = 70}, - [3289] = {.lex_state = 14}, + [3289] = {.lex_state = 70}, [3290] = {.lex_state = 70}, [3291] = {.lex_state = 14}, - [3292] = {.lex_state = 14}, - [3293] = {.lex_state = 70}, - [3294] = {.lex_state = 14}, + [3292] = {.lex_state = 70}, + [3293] = {.lex_state = 14}, + [3294] = {.lex_state = 70}, [3295] = {.lex_state = 70}, [3296] = {.lex_state = 14}, - [3297] = {.lex_state = 14}, + [3297] = {.lex_state = 70}, [3298] = {.lex_state = 70}, [3299] = {.lex_state = 14}, - [3300] = {.lex_state = 14}, - [3301] = {.lex_state = 14}, - [3302] = {.lex_state = 14}, - [3303] = {.lex_state = 70}, - [3304] = {.lex_state = 14}, - [3305] = {.lex_state = 70}, + [3300] = {.lex_state = 70}, + [3301] = {.lex_state = 10}, + [3302] = {.lex_state = 6}, + [3303] = {.lex_state = 14}, + [3304] = {.lex_state = 10}, + [3305] = {.lex_state = 14}, [3306] = {.lex_state = 14}, - [3307] = {.lex_state = 10}, - [3308] = {.lex_state = 14}, + [3307] = {.lex_state = 14}, + [3308] = {.lex_state = 70}, [3309] = {.lex_state = 70}, [3310] = {.lex_state = 14}, - [3311] = {.lex_state = 14}, - [3312] = {.lex_state = 70}, - [3313] = {.lex_state = 71}, + [3311] = {.lex_state = 27}, + [3312] = {.lex_state = 27}, + [3313] = {.lex_state = 14}, [3314] = {.lex_state = 14}, - [3315] = {.lex_state = 14}, + [3315] = {.lex_state = 70}, [3316] = {.lex_state = 14}, [3317] = {.lex_state = 14}, - [3318] = {.lex_state = 18}, - [3319] = {.lex_state = 70, .external_lex_state = 7}, + [3318] = {.lex_state = 14}, + [3319] = {.lex_state = 14}, [3320] = {.lex_state = 70}, - [3321] = {.lex_state = 70}, + [3321] = {.lex_state = 14}, [3322] = {.lex_state = 70}, [3323] = {.lex_state = 70}, [3324] = {.lex_state = 70}, - [3325] = {.lex_state = 71}, + [3325] = {.lex_state = 14}, [3326] = {.lex_state = 70}, [3327] = {.lex_state = 70}, - [3328] = {.lex_state = 70}, + [3328] = {.lex_state = 14}, [3329] = {.lex_state = 70}, [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 18}, - [3332] = {.lex_state = 70}, - [3333] = {.lex_state = 70, .external_lex_state = 7}, - [3334] = {.lex_state = 70}, - [3335] = {.lex_state = 14}, - [3336] = {.lex_state = 70}, - [3337] = {.lex_state = 71}, - [3338] = {.lex_state = 14}, + [3331] = {.lex_state = 14}, + [3332] = {.lex_state = 14}, + [3333] = {.lex_state = 14}, + [3334] = {.lex_state = 165}, + [3335] = {.lex_state = 70}, + [3336] = {.lex_state = 14}, + [3337] = {.lex_state = 70}, + [3338] = {.lex_state = 70}, [3339] = {.lex_state = 70}, [3340] = {.lex_state = 70}, - [3341] = {.lex_state = 70, .external_lex_state = 7}, - [3342] = {.lex_state = 14}, + [3341] = {.lex_state = 14}, + [3342] = {.lex_state = 70}, [3343] = {.lex_state = 70}, - [3344] = {.lex_state = 14}, - [3345] = {.lex_state = 71}, - [3346] = {.lex_state = 70}, + [3344] = {.lex_state = 70}, + [3345] = {.lex_state = 70}, + [3346] = {.lex_state = 70, .external_lex_state = 7}, [3347] = {.lex_state = 70}, [3348] = {.lex_state = 70}, - [3349] = {.lex_state = 14}, + [3349] = {.lex_state = 70}, [3350] = {.lex_state = 70}, - [3351] = {.lex_state = 14}, - [3352] = {.lex_state = 14}, - [3353] = {.lex_state = 14}, + [3351] = {.lex_state = 70}, + [3352] = {.lex_state = 70}, + [3353] = {.lex_state = 70}, [3354] = {.lex_state = 14}, [3355] = {.lex_state = 14}, - [3356] = {.lex_state = 14}, - [3357] = {.lex_state = 70}, - [3358] = {.lex_state = 70}, + [3356] = {.lex_state = 70}, + [3357] = {.lex_state = 14}, + [3358] = {.lex_state = 14}, [3359] = {.lex_state = 70}, [3360] = {.lex_state = 14}, [3361] = {.lex_state = 70}, - [3362] = {.lex_state = 70}, + [3362] = {.lex_state = 14}, [3363] = {.lex_state = 70}, - [3364] = {.lex_state = 70}, - [3365] = {.lex_state = 70}, - [3366] = {.lex_state = 18}, + [3364] = {.lex_state = 14}, + [3365] = {.lex_state = 14}, + [3366] = {.lex_state = 70}, [3367] = {.lex_state = 14}, - [3368] = {.lex_state = 70}, - [3369] = {.lex_state = 70}, + [3368] = {.lex_state = 14}, + [3369] = {.lex_state = 14}, [3370] = {.lex_state = 14}, - [3371] = {.lex_state = 70}, + [3371] = {.lex_state = 14}, [3372] = {.lex_state = 70}, [3373] = {.lex_state = 70}, - [3374] = {.lex_state = 70}, + [3374] = {.lex_state = 19}, [3375] = {.lex_state = 70}, - [3376] = {.lex_state = 70, .external_lex_state = 8}, + [3376] = {.lex_state = 70}, [3377] = {.lex_state = 70}, [3378] = {.lex_state = 70}, - [3379] = {.lex_state = 70}, - [3380] = {.lex_state = 70, .external_lex_state = 9}, - [3381] = {.lex_state = 70}, - [3382] = {.lex_state = 70}, + [3379] = {.lex_state = 14}, + [3380] = {.lex_state = 70}, + [3381] = {.lex_state = 19}, + [3382] = {.lex_state = 14}, [3383] = {.lex_state = 70}, [3384] = {.lex_state = 70}, [3385] = {.lex_state = 70}, - [3386] = {.lex_state = 18}, + [3386] = {.lex_state = 70}, [3387] = {.lex_state = 14}, [3388] = {.lex_state = 70}, - [3389] = {.lex_state = 14}, - [3390] = {.lex_state = 14}, + [3389] = {.lex_state = 70}, + [3390] = {.lex_state = 70}, [3391] = {.lex_state = 70}, [3392] = {.lex_state = 70}, [3393] = {.lex_state = 70}, [3394] = {.lex_state = 70}, [3395] = {.lex_state = 14}, - [3396] = {.lex_state = 10}, + [3396] = {.lex_state = 70}, [3397] = {.lex_state = 70}, [3398] = {.lex_state = 70}, - [3399] = {.lex_state = 14}, + [3399] = {.lex_state = 70}, [3400] = {.lex_state = 70}, - [3401] = {.lex_state = 70}, - [3402] = {.lex_state = 165}, + [3401] = {.lex_state = 70, .external_lex_state = 7}, + [3402] = {.lex_state = 71}, [3403] = {.lex_state = 70}, [3404] = {.lex_state = 70}, - [3405] = {.lex_state = 70}, - [3406] = {.lex_state = 70}, + [3405] = {.lex_state = 14}, + [3406] = {.lex_state = 14}, [3407] = {.lex_state = 14}, [3408] = {.lex_state = 70}, - [3409] = {.lex_state = 14}, - [3410] = {.lex_state = 71}, + [3409] = {.lex_state = 70}, + [3410] = {.lex_state = 70}, [3411] = {.lex_state = 70}, - [3412] = {.lex_state = 18}, + [3412] = {.lex_state = 70, .external_lex_state = 8}, [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70}, - [3415] = {.lex_state = 70}, + [3414] = {.lex_state = 70, .external_lex_state = 7}, + [3415] = {.lex_state = 14}, [3416] = {.lex_state = 70}, - [3417] = {.lex_state = 70}, + [3417] = {.lex_state = 14}, [3418] = {.lex_state = 70}, - [3419] = {.lex_state = 10}, - [3420] = {.lex_state = 14}, + [3419] = {.lex_state = 70}, + [3420] = {.lex_state = 70}, [3421] = {.lex_state = 70}, [3422] = {.lex_state = 70}, - [3423] = {.lex_state = 71}, + [3423] = {.lex_state = 70}, [3424] = {.lex_state = 70}, [3425] = {.lex_state = 70}, [3426] = {.lex_state = 70}, - [3427] = {.lex_state = 14}, - [3428] = {.lex_state = 70}, - [3429] = {.lex_state = 70, .external_lex_state = 9}, + [3427] = {.lex_state = 70}, + [3428] = {.lex_state = 14}, + [3429] = {.lex_state = 19}, [3430] = {.lex_state = 70}, - [3431] = {.lex_state = 70}, - [3432] = {.lex_state = 70}, + [3431] = {.lex_state = 70, .external_lex_state = 8}, + [3432] = {.lex_state = 10}, [3433] = {.lex_state = 70}, - [3434] = {.lex_state = 14}, - [3435] = {.lex_state = 18}, + [3434] = {.lex_state = 10}, + [3435] = {.lex_state = 70}, [3436] = {.lex_state = 14}, [3437] = {.lex_state = 70}, [3438] = {.lex_state = 70}, [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 70}, - [3441] = {.lex_state = 70}, + [3440] = {.lex_state = 71}, + [3441] = {.lex_state = 19}, [3442] = {.lex_state = 70}, [3443] = {.lex_state = 70}, [3444] = {.lex_state = 14}, - [3445] = {.lex_state = 14}, - [3446] = {.lex_state = 70}, + [3445] = {.lex_state = 70}, + [3446] = {.lex_state = 14}, [3447] = {.lex_state = 70}, [3448] = {.lex_state = 14}, - [3449] = {.lex_state = 14}, - [3450] = {.lex_state = 70}, - [3451] = {.lex_state = 70, .external_lex_state = 9}, - [3452] = {.lex_state = 14}, + [3449] = {.lex_state = 70}, + [3450] = {.lex_state = 71}, + [3451] = {.lex_state = 70}, + [3452] = {.lex_state = 71}, [3453] = {.lex_state = 14}, - [3454] = {.lex_state = 70}, + [3454] = {.lex_state = 70, .external_lex_state = 7}, [3455] = {.lex_state = 70}, [3456] = {.lex_state = 70}, - [3457] = {.lex_state = 70}, - [3458] = {.lex_state = 14}, + [3457] = {.lex_state = 70, .external_lex_state = 8}, + [3458] = {.lex_state = 70}, [3459] = {.lex_state = 14}, - [3460] = {.lex_state = 14}, - [3461] = {.lex_state = 70, .external_lex_state = 8}, + [3460] = {.lex_state = 70}, + [3461] = {.lex_state = 70}, [3462] = {.lex_state = 70}, - [3463] = {.lex_state = 70}, - [3464] = {.lex_state = 70}, - [3465] = {.lex_state = 70}, + [3463] = {.lex_state = 70, .external_lex_state = 7}, + [3464] = {.lex_state = 14}, + [3465] = {.lex_state = 14}, [3466] = {.lex_state = 70}, [3467] = {.lex_state = 70}, - [3468] = {.lex_state = 70}, - [3469] = {.lex_state = 70}, - [3470] = {.lex_state = 14}, + [3468] = {.lex_state = 70, .external_lex_state = 9}, + [3469] = {.lex_state = 71}, + [3470] = {.lex_state = 70}, [3471] = {.lex_state = 70}, [3472] = {.lex_state = 70}, - [3473] = {.lex_state = 14}, + [3473] = {.lex_state = 70}, [3474] = {.lex_state = 70}, - [3475] = {.lex_state = 70}, + [3475] = {.lex_state = 19}, [3476] = {.lex_state = 70}, [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 70}, + [3478] = {.lex_state = 70, .external_lex_state = 9}, [3479] = {.lex_state = 70}, - [3480] = {.lex_state = 18}, + [3480] = {.lex_state = 70}, [3481] = {.lex_state = 70}, [3482] = {.lex_state = 70}, [3483] = {.lex_state = 70}, [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 18}, + [3485] = {.lex_state = 14}, [3486] = {.lex_state = 70}, [3487] = {.lex_state = 70}, [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 70, .external_lex_state = 7}, - [3490] = {.lex_state = 70}, + [3489] = {.lex_state = 70}, + [3490] = {.lex_state = 14}, [3491] = {.lex_state = 70}, [3492] = {.lex_state = 70}, - [3493] = {.lex_state = 14}, - [3494] = {.lex_state = 70, .external_lex_state = 8}, + [3493] = {.lex_state = 70}, + [3494] = {.lex_state = 70}, [3495] = {.lex_state = 70}, [3496] = {.lex_state = 70}, - [3497] = {.lex_state = 14}, + [3497] = {.lex_state = 70}, [3498] = {.lex_state = 70}, [3499] = {.lex_state = 70}, - [3500] = {.lex_state = 70}, - [3501] = {.lex_state = 70}, - [3502] = {.lex_state = 70, .external_lex_state = 7}, + [3500] = {.lex_state = 14}, + [3501] = {.lex_state = 71}, + [3502] = {.lex_state = 70}, [3503] = {.lex_state = 70}, [3504] = {.lex_state = 70}, [3505] = {.lex_state = 70}, - [3506] = {.lex_state = 70}, - [3507] = {.lex_state = 70}, - [3508] = {.lex_state = 70}, + [3506] = {.lex_state = 14}, + [3507] = {.lex_state = 14}, + [3508] = {.lex_state = 19}, [3509] = {.lex_state = 14}, - [3510] = {.lex_state = 18}, - [3511] = {.lex_state = 70}, - [3512] = {.lex_state = 70}, - [3513] = {.lex_state = 70, .external_lex_state = 8}, + [3510] = {.lex_state = 70}, + [3511] = {.lex_state = 70, .external_lex_state = 9}, + [3512] = {.lex_state = 14}, + [3513] = {.lex_state = 14}, [3514] = {.lex_state = 70}, [3515] = {.lex_state = 70}, - [3516] = {.lex_state = 70}, + [3516] = {.lex_state = 19}, [3517] = {.lex_state = 70}, [3518] = {.lex_state = 70}, - [3519] = {.lex_state = 70, .external_lex_state = 8}, + [3519] = {.lex_state = 14}, [3520] = {.lex_state = 70}, [3521] = {.lex_state = 70}, [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 70}, + [3523] = {.lex_state = 14}, [3524] = {.lex_state = 70}, [3525] = {.lex_state = 70}, [3526] = {.lex_state = 70}, [3527] = {.lex_state = 70}, - [3528] = {.lex_state = 70}, + [3528] = {.lex_state = 14}, [3529] = {.lex_state = 70}, - [3530] = {.lex_state = 70}, - [3531] = {.lex_state = 14}, - [3532] = {.lex_state = 70}, + [3530] = {.lex_state = 70, .external_lex_state = 9}, + [3531] = {.lex_state = 70}, + [3532] = {.lex_state = 70, .external_lex_state = 8}, [3533] = {.lex_state = 70}, - [3534] = {.lex_state = 14}, - [3535] = {.lex_state = 18}, - [3536] = {.lex_state = 70}, - [3537] = {.lex_state = 14}, + [3534] = {.lex_state = 70}, + [3535] = {.lex_state = 70}, + [3536] = {.lex_state = 70, .external_lex_state = 9}, + [3537] = {.lex_state = 70}, [3538] = {.lex_state = 70}, - [3539] = {.lex_state = 18}, - [3540] = {.lex_state = 18}, + [3539] = {.lex_state = 70}, + [3540] = {.lex_state = 70}, [3541] = {.lex_state = 70}, [3542] = {.lex_state = 70}, [3543] = {.lex_state = 70}, - [3544] = {.lex_state = 18}, - [3545] = {.lex_state = 18}, + [3544] = {.lex_state = 70}, + [3545] = {.lex_state = 70}, [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 14}, + [3547] = {.lex_state = 70}, [3548] = {.lex_state = 70}, - [3549] = {.lex_state = 14}, - [3550] = {.lex_state = 70, .external_lex_state = 9}, - [3551] = {.lex_state = 14}, - [3552] = {.lex_state = 70}, - [3553] = {.lex_state = 70, .external_lex_state = 9}, - [3554] = {.lex_state = 18}, - [3555] = {.lex_state = 18}, - [3556] = {.lex_state = 70}, - [3557] = {.lex_state = 14}, + [3549] = {.lex_state = 70}, + [3550] = {.lex_state = 70}, + [3551] = {.lex_state = 19}, + [3552] = {.lex_state = 19}, + [3553] = {.lex_state = 70}, + [3554] = {.lex_state = 14}, + [3555] = {.lex_state = 70}, + [3556] = {.lex_state = 19}, + [3557] = {.lex_state = 19}, [3558] = {.lex_state = 14}, - [3559] = {.lex_state = 18}, - [3560] = {.lex_state = 14}, - [3561] = {.lex_state = 70, .external_lex_state = 9}, - [3562] = {.lex_state = 14}, - [3563] = {.lex_state = 70}, + [3559] = {.lex_state = 70}, + [3560] = {.lex_state = 70}, + [3561] = {.lex_state = 70}, + [3562] = {.lex_state = 19}, + [3563] = {.lex_state = 14}, [3564] = {.lex_state = 14}, - [3565] = {.lex_state = 18}, + [3565] = {.lex_state = 70}, [3566] = {.lex_state = 14}, [3567] = {.lex_state = 70}, [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 14}, - [3570] = {.lex_state = 70}, + [3569] = {.lex_state = 19}, + [3570] = {.lex_state = 14}, [3571] = {.lex_state = 70}, - [3572] = {.lex_state = 70}, - [3573] = {.lex_state = 70}, - [3574] = {.lex_state = 70}, - [3575] = {.lex_state = 70}, - [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 18}, + [3572] = {.lex_state = 19}, + [3573] = {.lex_state = 19}, + [3574] = {.lex_state = 71}, + [3575] = {.lex_state = 14}, + [3576] = {.lex_state = 19}, + [3577] = {.lex_state = 19}, [3578] = {.lex_state = 70}, - [3579] = {.lex_state = 18}, + [3579] = {.lex_state = 70}, [3580] = {.lex_state = 70}, - [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 18}, + [3581] = {.lex_state = 70, .external_lex_state = 7}, + [3582] = {.lex_state = 19}, [3583] = {.lex_state = 70}, [3584] = {.lex_state = 70}, - [3585] = {.lex_state = 18}, - [3586] = {.lex_state = 18}, - [3587] = {.lex_state = 14}, - [3588] = {.lex_state = 18}, - [3589] = {.lex_state = 18}, - [3590] = {.lex_state = 18}, - [3591] = {.lex_state = 18}, - [3592] = {.lex_state = 18}, - [3593] = {.lex_state = 14}, - [3594] = {.lex_state = 71}, - [3595] = {.lex_state = 14}, - [3596] = {.lex_state = 14}, + [3585] = {.lex_state = 70}, + [3586] = {.lex_state = 70}, + [3587] = {.lex_state = 70}, + [3588] = {.lex_state = 70}, + [3589] = {.lex_state = 70}, + [3590] = {.lex_state = 71}, + [3591] = {.lex_state = 14}, + [3592] = {.lex_state = 70}, + [3593] = {.lex_state = 19}, + [3594] = {.lex_state = 70}, + [3595] = {.lex_state = 19}, + [3596] = {.lex_state = 70}, [3597] = {.lex_state = 70}, - [3598] = {.lex_state = 70}, + [3598] = {.lex_state = 19}, [3599] = {.lex_state = 14}, [3600] = {.lex_state = 14}, - [3601] = {.lex_state = 70, .external_lex_state = 8}, - [3602] = {.lex_state = 14}, - [3603] = {.lex_state = 14}, - [3604] = {.lex_state = 14}, - [3605] = {.lex_state = 71}, - [3606] = {.lex_state = 70}, - [3607] = {.lex_state = 14}, + [3601] = {.lex_state = 19}, + [3602] = {.lex_state = 19}, + [3603] = {.lex_state = 70, .external_lex_state = 8}, + [3604] = {.lex_state = 70}, + [3605] = {.lex_state = 19}, + [3606] = {.lex_state = 19}, + [3607] = {.lex_state = 19}, [3608] = {.lex_state = 70}, - [3609] = {.lex_state = 70}, + [3609] = {.lex_state = 14}, [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 14}, - [3612] = {.lex_state = 70}, - [3613] = {(TSStateId)(-1)}, - [3614] = {(TSStateId)(-1)}, - [3615] = {(TSStateId)(-1)}, - [3616] = {(TSStateId)(-1)}, - [3617] = {(TSStateId)(-1)}, - [3618] = {(TSStateId)(-1)}, - [3619] = {(TSStateId)(-1)}, + [3611] = {.lex_state = 70}, + [3612] = {.lex_state = 14}, + [3613] = {.lex_state = 19}, + [3614] = {.lex_state = 70, .external_lex_state = 9}, + [3615] = {.lex_state = 14}, + [3616] = {.lex_state = 14}, + [3617] = {.lex_state = 70}, + [3618] = {.lex_state = 14}, + [3619] = {.lex_state = 14}, + [3620] = {.lex_state = 14}, + [3621] = {.lex_state = 70}, + [3622] = {.lex_state = 70}, + [3623] = {.lex_state = 14}, + [3624] = {.lex_state = 14}, + [3625] = {.lex_state = 70}, + [3626] = {.lex_state = 70}, + [3627] = {.lex_state = 70}, + [3628] = {.lex_state = 19}, + [3629] = {(TSStateId)(-1)}, + [3630] = {(TSStateId)(-1)}, + [3631] = {(TSStateId)(-1)}, + [3632] = {(TSStateId)(-1)}, + [3633] = {(TSStateId)(-1)}, + [3634] = {(TSStateId)(-1)}, + [3635] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13759,6 +13814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1), [anon_sym_fn] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), + [anon_sym_gen] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_impl] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), @@ -13814,82 +13870,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3512), - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_source_file] = STATE(3505), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -13932,124 +13989,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_shebang] = ACTIONS(105), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_shebang] = ACTIONS(107), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [2] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14075,7 +14134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14085,123 +14144,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [3] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14227,7 +14288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14237,123 +14298,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [4] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14379,7 +14442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14389,123 +14452,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [5] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14531,7 +14596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14541,123 +14606,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [6] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1660), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14683,7 +14750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14693,123 +14760,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [7] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [ts_builtin_sym_end] = ACTIONS(129), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [8] = { + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14835,7 +15058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14845,275 +15068,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [8] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [9] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(289), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15139,7 +15212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15149,123 +15222,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [10] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(291), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15291,7 +15366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15301,123 +15376,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [11] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(290), + [anon_sym_RBRACE] = ACTIONS(293), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15443,7 +15520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15453,123 +15530,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [12] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(402), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [13] = { + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(292), + [anon_sym_RBRACE] = ACTIONS(295), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15595,7 +15828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15605,275 +15838,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [13] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(404), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [14] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(297), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15899,7 +15982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15909,123 +15992,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [15] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(296), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16051,7 +16136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16061,123 +16146,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [16] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16203,7 +16290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16213,123 +16300,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [17] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16355,7 +16444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16365,123 +16454,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [18] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16507,7 +16598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16517,123 +16608,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [19] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(304), + [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16659,7 +16752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16669,123 +16762,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [20] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16811,7 +16906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16821,123 +16916,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [21] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(308), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16963,7 +17060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16973,123 +17070,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [22] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17115,7 +17214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17125,123 +17224,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [23] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17267,7 +17368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17277,123 +17378,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [24] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17419,7 +17522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17429,123 +17532,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [25] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17571,7 +17676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17581,123 +17686,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [26] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17723,7 +17830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17733,123 +17840,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [27] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17875,7 +17984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17885,123 +17994,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [28] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18027,7 +18138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18037,123 +18148,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [29] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18179,7 +18292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18189,123 +18302,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [30] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18331,7 +18446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18341,123 +18456,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [31] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18483,7 +18600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18493,123 +18610,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [32] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(330), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18635,7 +18754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18645,123 +18764,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [33] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18787,7 +18908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18797,123 +18918,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [34] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(659), + [sym_empty_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_macro_definition] = STATE(660), + [sym_attribute_item] = STATE(660), + [sym_inner_attribute_item] = STATE(660), + [sym_mod_item] = STATE(660), + [sym_foreign_mod_item] = STATE(660), + [sym_struct_item] = STATE(660), + [sym_union_item] = STATE(660), + [sym_enum_item] = STATE(660), + [sym_extern_crate_declaration] = STATE(660), + [sym_const_item] = STATE(660), + [sym_static_item] = STATE(660), + [sym_type_item] = STATE(660), + [sym_function_item] = STATE(660), + [sym_function_signature_item] = STATE(660), + [sym_function_modifiers] = STATE(3528), + [sym_impl_item] = STATE(660), + [sym_trait_item] = STATE(660), + [sym_associated_type] = STATE(660), + [sym_let_declaration] = STATE(660), + [sym_use_declaration] = STATE(660), + [sym_extern_modifier] = STATE(2165), + [sym_visibility_modifier] = STATE(1941), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(387), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(377), + [sym_match_expression] = STATE(377), + [sym_while_expression] = STATE(377), + [sym_loop_expression] = STATE(377), + [sym_for_expression] = STATE(377), + [sym_const_block] = STATE(377), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3441), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(377), + [sym_async_block] = STATE(377), + [sym_gen_block] = STATE(377), + [sym_try_block] = STATE(377), + [sym_block] = STATE(377), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18939,7 +19062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18949,101 +19072,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [35] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1483), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1510), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_RPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_RPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_RBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19061,134 +19186,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COMMA] = ACTIONS(341), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [36] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1506), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19206,134 +19333,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [37] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1499), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1504), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(372), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19351,134 +19480,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(383), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [38] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19496,134 +19627,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(385), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(386), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(387), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [39] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1504), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19641,134 +19774,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(386), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(383), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [40] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(368), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(389), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(389), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19786,134 +19921,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(391), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [41] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19931,134 +20068,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COMMA] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COMMA] = ACTIONS(385), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(390), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(387), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [42] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1489), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1499), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(394), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20076,12313 +20215,12088 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [43] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [44] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1613), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [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_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [45] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1641), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1475), [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [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_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [46] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [47] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1662), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(490), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [48] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [49] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [50] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [51] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [52] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(342), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [53] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(44), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [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_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [54] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(401), + [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_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [55] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [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_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(383), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [56] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_label] = STATE(45), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [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_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [57] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(401), + [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_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [58] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(389), + [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_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [59] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(389), + [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_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [60] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [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_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(387), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [61] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [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_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [62] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [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_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(387), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [63] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [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_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [64] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(390), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(385), + [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_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [65] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [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_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(383), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [66] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(381), + [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_DASH] = ACTIONS(383), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [67] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_EQ_GT] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(517), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(531), - [anon_sym_CARET] = ACTIONS(531), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(531), - [anon_sym_GT_GT] = ACTIONS(531), - [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_CARET_EQ] = ACTIONS(517), - [anon_sym_AMP_EQ] = ACTIONS(517), - [anon_sym_PIPE_EQ] = ACTIONS(517), - [anon_sym_LT_LT_EQ] = ACTIONS(517), - [anon_sym_GT_GT_EQ] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym__] = ACTIONS(531), - [anon_sym_DOT] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(517), - [anon_sym_COMMA] = ACTIONS(517), - [anon_sym_COLON_COLON] = ACTIONS(517), - [anon_sym_DASH_GT] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(517), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_as] = ACTIONS(514), - [anon_sym_async] = ACTIONS(514), - [anon_sym_await] = ACTIONS(514), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_fn] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_impl] = ACTIONS(514), - [anon_sym_let] = ACTIONS(514), - [anon_sym_loop] = ACTIONS(514), - [anon_sym_match] = ACTIONS(514), - [anon_sym_mod] = ACTIONS(514), - [anon_sym_pub] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_trait] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_unsafe] = ACTIONS(514), - [anon_sym_use] = ACTIONS(514), - [anon_sym_where] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [sym_mutable_specifier] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(537), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(537), - [anon_sym_true] = ACTIONS(543), - [anon_sym_false] = ACTIONS(543), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(546), - [sym__raw_string_literal_start] = ACTIONS(549), - [sym_float_literal] = ACTIONS(537), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(523), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(529), + [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_RBRACK] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_EQ_GT] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(540), + [anon_sym_DOLLAR] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_QMARK] = ACTIONS(526), + [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_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_PERCENT] = ACTIONS(540), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(540), + [anon_sym_PIPE] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(526), + [anon_sym_PIPE_PIPE] = ACTIONS(526), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(526), + [anon_sym_DASH_EQ] = ACTIONS(526), + [anon_sym_STAR_EQ] = ACTIONS(526), + [anon_sym_SLASH_EQ] = ACTIONS(526), + [anon_sym_PERCENT_EQ] = ACTIONS(526), + [anon_sym_CARET_EQ] = ACTIONS(526), + [anon_sym_AMP_EQ] = ACTIONS(526), + [anon_sym_PIPE_EQ] = ACTIONS(526), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_GT_GT_EQ] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(526), + [anon_sym__] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DASH_GT] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(523), + [anon_sym_as] = ACTIONS(523), + [anon_sym_async] = ACTIONS(523), + [anon_sym_await] = 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_gen] = 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_where] = ACTIONS(523), + [anon_sym_while] = ACTIONS(523), + [sym_mutable_specifier] = ACTIONS(523), + [sym_integer_literal] = ACTIONS(546), + [aux_sym_string_literal_token1] = ACTIONS(549), + [sym_char_literal] = ACTIONS(546), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(523), + [sym_super] = ACTIONS(523), + [sym_crate] = ACTIONS(523), + [sym_metavariable] = ACTIONS(555), + [sym__raw_string_literal_start] = ACTIONS(558), + [sym_float_literal] = ACTIONS(546), }, [68] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [69] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [70] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [71] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [72] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [73] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_EQ_GT] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(591), + [anon_sym_i8] = ACTIONS(591), + [anon_sym_u16] = ACTIONS(591), + [anon_sym_i16] = ACTIONS(591), + [anon_sym_u32] = ACTIONS(591), + [anon_sym_i32] = ACTIONS(591), + [anon_sym_u64] = ACTIONS(591), + [anon_sym_i64] = ACTIONS(591), + [anon_sym_u128] = ACTIONS(591), + [anon_sym_i128] = ACTIONS(591), + [anon_sym_isize] = ACTIONS(591), + [anon_sym_usize] = ACTIONS(591), + [anon_sym_f32] = ACTIONS(591), + [anon_sym_f64] = ACTIONS(591), + [anon_sym_bool] = ACTIONS(591), + [anon_sym_str] = ACTIONS(591), + [anon_sym_char] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(608), + [anon_sym_PERCENT] = ACTIONS(608), + [anon_sym_CARET] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(594), + [anon_sym__] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(594), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym_DASH_GT] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(591), + [anon_sym_as] = ACTIONS(591), + [anon_sym_async] = ACTIONS(591), + [anon_sym_await] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_const] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_default] = ACTIONS(591), + [anon_sym_enum] = ACTIONS(591), + [anon_sym_fn] = ACTIONS(591), + [anon_sym_for] = ACTIONS(591), + [anon_sym_gen] = ACTIONS(591), + [anon_sym_if] = ACTIONS(591), + [anon_sym_impl] = ACTIONS(591), + [anon_sym_let] = ACTIONS(591), + [anon_sym_loop] = ACTIONS(591), + [anon_sym_match] = ACTIONS(591), + [anon_sym_mod] = ACTIONS(591), + [anon_sym_pub] = ACTIONS(591), + [anon_sym_return] = ACTIONS(591), + [anon_sym_static] = ACTIONS(591), + [anon_sym_struct] = ACTIONS(591), + [anon_sym_trait] = ACTIONS(591), + [anon_sym_type] = ACTIONS(591), + [anon_sym_union] = ACTIONS(591), + [anon_sym_unsafe] = ACTIONS(591), + [anon_sym_use] = ACTIONS(591), + [anon_sym_where] = ACTIONS(591), + [anon_sym_while] = ACTIONS(591), + [sym_mutable_specifier] = ACTIONS(591), + [sym_integer_literal] = ACTIONS(614), + [aux_sym_string_literal_token1] = ACTIONS(617), + [sym_char_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(620), + [anon_sym_false] = ACTIONS(620), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(591), + [sym_super] = ACTIONS(591), + [sym_crate] = ACTIONS(591), + [sym_metavariable] = ACTIONS(623), + [sym__raw_string_literal_start] = ACTIONS(626), + [sym_float_literal] = ACTIONS(614), }, [74] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [75] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [76] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [77] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [78] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [79] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [80] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [81] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [82] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_EQ_GT] = ACTIONS(591), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(591), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym__] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_COLON_COLON] = ACTIONS(591), - [anon_sym_DASH_GT] = ACTIONS(591), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_await] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_where] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(611), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(611), - [anon_sym_true] = ACTIONS(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(620), - [sym__raw_string_literal_start] = ACTIONS(623), - [sym_float_literal] = ACTIONS(611), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_RBRACK] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_EQ_GT] = ACTIONS(636), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(633), + [anon_sym_i8] = ACTIONS(633), + [anon_sym_u16] = ACTIONS(633), + [anon_sym_i16] = ACTIONS(633), + [anon_sym_u32] = ACTIONS(633), + [anon_sym_i32] = ACTIONS(633), + [anon_sym_u64] = ACTIONS(633), + [anon_sym_i64] = ACTIONS(633), + [anon_sym_u128] = ACTIONS(633), + [anon_sym_i128] = ACTIONS(633), + [anon_sym_isize] = ACTIONS(633), + [anon_sym_usize] = ACTIONS(633), + [anon_sym_f32] = ACTIONS(633), + [anon_sym_f64] = ACTIONS(633), + [anon_sym_bool] = ACTIONS(633), + [anon_sym_str] = ACTIONS(633), + [anon_sym_char] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_AT] = ACTIONS(636), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym_DASH_GT] = ACTIONS(636), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_SQUOTE] = ACTIONS(633), + [anon_sym_as] = ACTIONS(633), + [anon_sym_async] = ACTIONS(633), + [anon_sym_await] = ACTIONS(633), + [anon_sym_break] = ACTIONS(633), + [anon_sym_const] = ACTIONS(633), + [anon_sym_continue] = ACTIONS(633), + [anon_sym_default] = ACTIONS(633), + [anon_sym_enum] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(633), + [anon_sym_for] = ACTIONS(633), + [anon_sym_gen] = ACTIONS(633), + [anon_sym_if] = ACTIONS(633), + [anon_sym_impl] = ACTIONS(633), + [anon_sym_let] = ACTIONS(633), + [anon_sym_loop] = ACTIONS(633), + [anon_sym_match] = ACTIONS(633), + [anon_sym_mod] = ACTIONS(633), + [anon_sym_pub] = ACTIONS(633), + [anon_sym_return] = ACTIONS(633), + [anon_sym_static] = ACTIONS(633), + [anon_sym_struct] = ACTIONS(633), + [anon_sym_trait] = ACTIONS(633), + [anon_sym_type] = ACTIONS(633), + [anon_sym_union] = ACTIONS(633), + [anon_sym_unsafe] = ACTIONS(633), + [anon_sym_use] = ACTIONS(633), + [anon_sym_where] = ACTIONS(633), + [anon_sym_while] = ACTIONS(633), + [sym_mutable_specifier] = ACTIONS(633), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(659), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(633), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym__raw_string_literal_start] = ACTIONS(665), + [sym_float_literal] = ACTIONS(656), }, [83] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym__token_pattern] = STATE(181), + [sym_token_tree_pattern] = STATE(179), + [sym_token_binding_pattern] = STATE(179), + [sym_token_repetition_pattern] = STATE(179), + [sym__literal] = STATE(179), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_RBRACK] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(635), - [anon_sym_EQ_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_SLASH] = ACTIONS(643), - [anon_sym_PERCENT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(643), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(629), - [anon_sym_DASH_EQ] = ACTIONS(629), - [anon_sym_STAR_EQ] = ACTIONS(629), - [anon_sym_SLASH_EQ] = ACTIONS(629), - [anon_sym_PERCENT_EQ] = ACTIONS(629), - [anon_sym_CARET_EQ] = ACTIONS(629), - [anon_sym_AMP_EQ] = ACTIONS(629), - [anon_sym_PIPE_EQ] = ACTIONS(629), - [anon_sym_LT_LT_EQ] = ACTIONS(629), - [anon_sym_GT_GT_EQ] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym__] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(629), - [anon_sym_POUND] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_await] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_where] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [sym_mutable_specifier] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(649), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(649), - [anon_sym_true] = ACTIONS(655), - [anon_sym_false] = ACTIONS(655), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym__raw_string_literal_start] = ACTIONS(658), - [sym_float_literal] = ACTIONS(649), + [aux_sym_token_tree_pattern_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [84] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [85] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_repeat1] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [86] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [87] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [88] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [89] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [90] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_RBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [91] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [92] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [93] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_RBRACK] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [94] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [95] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [96] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_RBRACK] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [97] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(701), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [98] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [99] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [100] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [101] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [102] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [103] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [104] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [105] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [106] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [107] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [108] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [109] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [110] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [111] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [112] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [113] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(132), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [114] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [115] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [116] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [117] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [118] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [119] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [120] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [121] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [122] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [123] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [124] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [125] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [126] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [127] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [128] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [129] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [130] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym_token_tree_repeat1] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(88), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [131] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(173), + [aux_sym_delim_token_tree_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [132] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(197), + [sym_token_repetition] = STATE(197), + [sym__literal] = STATE(197), + [sym_string_literal] = STATE(162), + [sym_raw_string_literal] = STATE(162), + [sym_boolean_literal] = STATE(162), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [133] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(203), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(173), [aux_sym_delim_token_tree_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [134] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(733), - [anon_sym_COLON] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(738), - [anon_sym_QMARK] = ACTIONS(733), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(738), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_PERCENT] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(738), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym__] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_DASH_GT] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(736), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), + [aux_sym_enum_variant_list_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [135] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(763), + [anon_sym_i8] = ACTIONS(763), + [anon_sym_u16] = ACTIONS(763), + [anon_sym_i16] = ACTIONS(763), + [anon_sym_u32] = ACTIONS(763), + [anon_sym_i32] = ACTIONS(763), + [anon_sym_u64] = ACTIONS(763), + [anon_sym_i64] = ACTIONS(763), + [anon_sym_u128] = ACTIONS(763), + [anon_sym_i128] = ACTIONS(763), + [anon_sym_isize] = ACTIONS(763), + [anon_sym_usize] = ACTIONS(763), + [anon_sym_f32] = ACTIONS(763), + [anon_sym_f64] = ACTIONS(763), + [anon_sym_bool] = ACTIONS(763), + [anon_sym_str] = ACTIONS(763), + [anon_sym_char] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(778), + [anon_sym_POUND] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(784), + [anon_sym_async] = ACTIONS(787), + [anon_sym_break] = ACTIONS(790), + [anon_sym_const] = ACTIONS(793), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_default] = ACTIONS(799), + [anon_sym_for] = ACTIONS(802), + [anon_sym_gen] = ACTIONS(805), + [anon_sym_if] = ACTIONS(808), + [anon_sym_loop] = ACTIONS(811), + [anon_sym_match] = ACTIONS(814), + [anon_sym_return] = ACTIONS(817), + [anon_sym_static] = ACTIONS(820), + [anon_sym_union] = ACTIONS(799), + [anon_sym_unsafe] = ACTIONS(823), + [anon_sym_while] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(829), + [anon_sym_move] = ACTIONS(832), + [anon_sym_try] = ACTIONS(835), + [sym_integer_literal] = ACTIONS(838), + [aux_sym_string_literal_token1] = ACTIONS(841), + [sym_char_literal] = ACTIONS(838), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(847), + [sym_super] = ACTIONS(850), + [sym_crate] = ACTIONS(850), + [sym_metavariable] = ACTIONS(853), + [sym__raw_string_literal_start] = ACTIONS(856), + [sym_float_literal] = ACTIONS(838), }, [136] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_isize] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_f32] = ACTIONS(745), - [anon_sym_f64] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_str] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_as] = ACTIONS(745), - [anon_sym_async] = ACTIONS(745), - [anon_sym_await] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_fn] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_impl] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_pub] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(745), - [anon_sym_trait] = ACTIONS(745), - [anon_sym_type] = ACTIONS(745), - [anon_sym_union] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(745), - [sym_integer_literal] = ACTIONS(747), - [aux_sym_string_literal_token1] = ACTIONS(747), - [sym_char_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_crate] = ACTIONS(745), - [sym_metavariable] = ACTIONS(747), - [sym__raw_string_literal_start] = ACTIONS(747), - [sym_float_literal] = ACTIONS(747), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(763), + [anon_sym_i8] = ACTIONS(763), + [anon_sym_u16] = ACTIONS(763), + [anon_sym_i16] = ACTIONS(763), + [anon_sym_u32] = ACTIONS(763), + [anon_sym_i32] = ACTIONS(763), + [anon_sym_u64] = ACTIONS(763), + [anon_sym_i64] = ACTIONS(763), + [anon_sym_u128] = ACTIONS(763), + [anon_sym_i128] = ACTIONS(763), + [anon_sym_isize] = ACTIONS(763), + [anon_sym_usize] = ACTIONS(763), + [anon_sym_f32] = ACTIONS(763), + [anon_sym_f64] = ACTIONS(763), + [anon_sym_bool] = ACTIONS(763), + [anon_sym_str] = ACTIONS(763), + [anon_sym_char] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(778), + [anon_sym_POUND] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(784), + [anon_sym_async] = ACTIONS(787), + [anon_sym_break] = ACTIONS(790), + [anon_sym_const] = ACTIONS(793), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_default] = ACTIONS(799), + [anon_sym_for] = ACTIONS(802), + [anon_sym_gen] = ACTIONS(805), + [anon_sym_if] = ACTIONS(808), + [anon_sym_loop] = ACTIONS(811), + [anon_sym_match] = ACTIONS(814), + [anon_sym_return] = ACTIONS(817), + [anon_sym_static] = ACTIONS(820), + [anon_sym_union] = ACTIONS(799), + [anon_sym_unsafe] = ACTIONS(823), + [anon_sym_while] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(829), + [anon_sym_move] = ACTIONS(832), + [anon_sym_try] = ACTIONS(835), + [sym_integer_literal] = ACTIONS(838), + [aux_sym_string_literal_token1] = ACTIONS(841), + [sym_char_literal] = ACTIONS(838), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(847), + [sym_super] = ACTIONS(850), + [sym_crate] = ACTIONS(850), + [sym_metavariable] = ACTIONS(853), + [sym__raw_string_literal_start] = ACTIONS(856), + [sym_float_literal] = ACTIONS(838), }, [137] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1608), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym_metavariable] = ACTIONS(751), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), - }, - [138] = { - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym_metavariable] = ACTIONS(755), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), - }, - [139] = { - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [sym_identifier] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_EQ_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(757), - [anon_sym_i8] = ACTIONS(757), - [anon_sym_u16] = ACTIONS(757), - [anon_sym_i16] = ACTIONS(757), - [anon_sym_u32] = ACTIONS(757), - [anon_sym_i32] = ACTIONS(757), - [anon_sym_u64] = ACTIONS(757), - [anon_sym_i64] = ACTIONS(757), - [anon_sym_u128] = ACTIONS(757), - [anon_sym_i128] = ACTIONS(757), - [anon_sym_isize] = ACTIONS(757), - [anon_sym_usize] = ACTIONS(757), - [anon_sym_f32] = ACTIONS(757), - [anon_sym_f64] = ACTIONS(757), - [anon_sym_bool] = ACTIONS(757), - [anon_sym_str] = ACTIONS(757), - [anon_sym_char] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_LT_LT] = ACTIONS(757), - [anon_sym_GT_GT] = ACTIONS(757), - [anon_sym_PLUS_EQ] = ACTIONS(759), - [anon_sym_DASH_EQ] = ACTIONS(759), - [anon_sym_STAR_EQ] = ACTIONS(759), - [anon_sym_SLASH_EQ] = ACTIONS(759), - [anon_sym_PERCENT_EQ] = ACTIONS(759), - [anon_sym_CARET_EQ] = ACTIONS(759), - [anon_sym_AMP_EQ] = ACTIONS(759), - [anon_sym_PIPE_EQ] = ACTIONS(759), - [anon_sym_LT_LT_EQ] = ACTIONS(759), - [anon_sym_GT_GT_EQ] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [anon_sym__] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_as] = ACTIONS(757), - [anon_sym_async] = ACTIONS(757), - [anon_sym_await] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_fn] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_impl] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_pub] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_struct] = ACTIONS(757), - [anon_sym_trait] = ACTIONS(757), - [anon_sym_type] = ACTIONS(757), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [sym_mutable_specifier] = ACTIONS(757), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(757), - [sym_super] = ACTIONS(757), - [sym_crate] = ACTIONS(757), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), - }, - [140] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32407,557 +32321,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(861), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [141] = { - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym_metavariable] = ACTIONS(769), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), - }, - [142] = { - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym_metavariable] = ACTIONS(773), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), - }, - [143] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_EQ_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u128] = ACTIONS(775), - [anon_sym_i128] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_str] = ACTIONS(775), - [anon_sym_char] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(777), - [anon_sym_DASH_EQ] = ACTIONS(777), - [anon_sym_STAR_EQ] = ACTIONS(777), - [anon_sym_SLASH_EQ] = ACTIONS(777), - [anon_sym_PERCENT_EQ] = ACTIONS(777), - [anon_sym_CARET_EQ] = ACTIONS(777), - [anon_sym_AMP_EQ] = ACTIONS(777), - [anon_sym_PIPE_EQ] = ACTIONS(777), - [anon_sym_LT_LT_EQ] = ACTIONS(777), - [anon_sym_GT_GT_EQ] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [anon_sym__] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_COLON_COLON] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_as] = ACTIONS(775), - [anon_sym_async] = ACTIONS(775), - [anon_sym_await] = ACTIONS(775), - [anon_sym_break] = ACTIONS(775), - [anon_sym_const] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_default] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_impl] = ACTIONS(775), - [anon_sym_let] = ACTIONS(775), - [anon_sym_loop] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(775), - [anon_sym_pub] = ACTIONS(775), - [anon_sym_return] = ACTIONS(775), - [anon_sym_static] = ACTIONS(775), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_trait] = ACTIONS(775), - [anon_sym_type] = ACTIONS(775), - [anon_sym_union] = ACTIONS(775), - [anon_sym_unsafe] = ACTIONS(775), - [anon_sym_use] = ACTIONS(775), - [anon_sym_where] = ACTIONS(775), - [anon_sym_while] = ACTIONS(775), - [sym_mutable_specifier] = ACTIONS(775), - [sym_integer_literal] = ACTIONS(777), - [aux_sym_string_literal_token1] = ACTIONS(777), - [sym_char_literal] = ACTIONS(777), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(775), - [sym_super] = ACTIONS(775), - [sym_crate] = ACTIONS(775), - [sym_metavariable] = ACTIONS(777), - [sym__raw_string_literal_start] = ACTIONS(777), - [sym_float_literal] = ACTIONS(777), - }, - [144] = { - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [sym_identifier] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_EQ_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(779), - [anon_sym_i8] = ACTIONS(779), - [anon_sym_u16] = ACTIONS(779), - [anon_sym_i16] = ACTIONS(779), - [anon_sym_u32] = ACTIONS(779), - [anon_sym_i32] = ACTIONS(779), - [anon_sym_u64] = ACTIONS(779), - [anon_sym_i64] = ACTIONS(779), - [anon_sym_u128] = ACTIONS(779), - [anon_sym_i128] = ACTIONS(779), - [anon_sym_isize] = ACTIONS(779), - [anon_sym_usize] = ACTIONS(779), - [anon_sym_f32] = ACTIONS(779), - [anon_sym_f64] = ACTIONS(779), - [anon_sym_bool] = ACTIONS(779), - [anon_sym_str] = ACTIONS(779), - [anon_sym_char] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_LT_LT] = ACTIONS(779), - [anon_sym_GT_GT] = ACTIONS(779), - [anon_sym_PLUS_EQ] = ACTIONS(781), - [anon_sym_DASH_EQ] = ACTIONS(781), - [anon_sym_STAR_EQ] = ACTIONS(781), - [anon_sym_SLASH_EQ] = ACTIONS(781), - [anon_sym_PERCENT_EQ] = ACTIONS(781), - [anon_sym_CARET_EQ] = ACTIONS(781), - [anon_sym_AMP_EQ] = ACTIONS(781), - [anon_sym_PIPE_EQ] = ACTIONS(781), - [anon_sym_LT_LT_EQ] = ACTIONS(781), - [anon_sym_GT_GT_EQ] = ACTIONS(781), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym__] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_as] = ACTIONS(779), - [anon_sym_async] = ACTIONS(779), - [anon_sym_await] = ACTIONS(779), - [anon_sym_break] = ACTIONS(779), - [anon_sym_const] = ACTIONS(779), - [anon_sym_continue] = ACTIONS(779), - [anon_sym_default] = ACTIONS(779), - [anon_sym_enum] = ACTIONS(779), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_impl] = ACTIONS(779), - [anon_sym_let] = ACTIONS(779), - [anon_sym_loop] = ACTIONS(779), - [anon_sym_match] = ACTIONS(779), - [anon_sym_mod] = ACTIONS(779), - [anon_sym_pub] = ACTIONS(779), - [anon_sym_return] = ACTIONS(779), - [anon_sym_static] = ACTIONS(779), - [anon_sym_struct] = ACTIONS(779), - [anon_sym_trait] = ACTIONS(779), - [anon_sym_type] = ACTIONS(779), - [anon_sym_union] = ACTIONS(779), - [anon_sym_unsafe] = ACTIONS(779), - [anon_sym_use] = ACTIONS(779), - [anon_sym_where] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [sym_mutable_specifier] = ACTIONS(779), - [sym_integer_literal] = ACTIONS(781), - [aux_sym_string_literal_token1] = ACTIONS(781), - [sym_char_literal] = ACTIONS(781), - [anon_sym_true] = ACTIONS(779), - [anon_sym_false] = ACTIONS(779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(779), - [sym_super] = ACTIONS(779), - [sym_crate] = ACTIONS(779), - [sym_metavariable] = ACTIONS(781), - [sym__raw_string_literal_start] = ACTIONS(781), - [sym_float_literal] = ACTIONS(781), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [145] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(334), + [138] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32982,159 +32438,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(865), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [146] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), + [139] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1559), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [147] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), + [140] = { + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_RBRACK] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(871), + [anon_sym_i8] = ACTIONS(871), + [anon_sym_u16] = ACTIONS(871), + [anon_sym_i16] = ACTIONS(871), + [anon_sym_u32] = ACTIONS(871), + [anon_sym_i32] = ACTIONS(871), + [anon_sym_u64] = ACTIONS(871), + [anon_sym_i64] = ACTIONS(871), + [anon_sym_u128] = ACTIONS(871), + [anon_sym_i128] = ACTIONS(871), + [anon_sym_isize] = ACTIONS(871), + [anon_sym_usize] = ACTIONS(871), + [anon_sym_f32] = ACTIONS(871), + [anon_sym_f64] = ACTIONS(871), + [anon_sym_bool] = ACTIONS(871), + [anon_sym_str] = ACTIONS(871), + [anon_sym_char] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(871), + [anon_sym_as] = ACTIONS(871), + [anon_sym_async] = ACTIONS(871), + [anon_sym_await] = ACTIONS(871), + [anon_sym_break] = ACTIONS(871), + [anon_sym_const] = ACTIONS(871), + [anon_sym_continue] = ACTIONS(871), + [anon_sym_default] = ACTIONS(871), + [anon_sym_enum] = ACTIONS(871), + [anon_sym_fn] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_gen] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_impl] = ACTIONS(871), + [anon_sym_let] = ACTIONS(871), + [anon_sym_loop] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mod] = ACTIONS(871), + [anon_sym_pub] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_static] = ACTIONS(871), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_trait] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_union] = ACTIONS(871), + [anon_sym_unsafe] = ACTIONS(871), + [anon_sym_use] = ACTIONS(871), + [anon_sym_where] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [sym_mutable_specifier] = ACTIONS(871), + [sym_integer_literal] = ACTIONS(873), + [aux_sym_string_literal_token1] = ACTIONS(873), + [sym_char_literal] = ACTIONS(873), + [anon_sym_true] = ACTIONS(871), + [anon_sym_false] = ACTIONS(871), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(871), + [sym_super] = ACTIONS(871), + [sym_crate] = ACTIONS(871), + [sym_metavariable] = ACTIONS(873), + [sym__raw_string_literal_start] = ACTIONS(873), + [sym_float_literal] = ACTIONS(873), + }, + [141] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [142] = { + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(879), + [anon_sym_i8] = ACTIONS(879), + [anon_sym_u16] = ACTIONS(879), + [anon_sym_i16] = ACTIONS(879), + [anon_sym_u32] = ACTIONS(879), + [anon_sym_i32] = ACTIONS(879), + [anon_sym_u64] = ACTIONS(879), + [anon_sym_i64] = ACTIONS(879), + [anon_sym_u128] = ACTIONS(879), + [anon_sym_i128] = ACTIONS(879), + [anon_sym_isize] = ACTIONS(879), + [anon_sym_usize] = ACTIONS(879), + [anon_sym_f32] = ACTIONS(879), + [anon_sym_f64] = ACTIONS(879), + [anon_sym_bool] = ACTIONS(879), + [anon_sym_str] = ACTIONS(879), + [anon_sym_char] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(879), + [anon_sym_as] = ACTIONS(879), + [anon_sym_async] = ACTIONS(879), + [anon_sym_await] = ACTIONS(879), + [anon_sym_break] = ACTIONS(879), + [anon_sym_const] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_default] = ACTIONS(879), + [anon_sym_enum] = ACTIONS(879), + [anon_sym_fn] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_gen] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_impl] = ACTIONS(879), + [anon_sym_let] = ACTIONS(879), + [anon_sym_loop] = ACTIONS(879), + [anon_sym_match] = ACTIONS(879), + [anon_sym_mod] = ACTIONS(879), + [anon_sym_pub] = ACTIONS(879), + [anon_sym_return] = ACTIONS(879), + [anon_sym_static] = ACTIONS(879), + [anon_sym_struct] = ACTIONS(879), + [anon_sym_trait] = ACTIONS(879), + [anon_sym_type] = ACTIONS(879), + [anon_sym_union] = ACTIONS(879), + [anon_sym_unsafe] = ACTIONS(879), + [anon_sym_use] = ACTIONS(879), + [anon_sym_where] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [sym_mutable_specifier] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(881), + [aux_sym_string_literal_token1] = ACTIONS(881), + [sym_char_literal] = ACTIONS(881), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(879), + [sym_super] = ACTIONS(879), + [sym_crate] = ACTIONS(879), + [sym_metavariable] = ACTIONS(881), + [sym__raw_string_literal_start] = ACTIONS(881), + [sym_float_literal] = ACTIONS(881), + }, + [143] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1561), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [144] = { + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(889), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_u8] = ACTIONS(887), + [anon_sym_i8] = ACTIONS(887), + [anon_sym_u16] = ACTIONS(887), + [anon_sym_i16] = ACTIONS(887), + [anon_sym_u32] = ACTIONS(887), + [anon_sym_i32] = ACTIONS(887), + [anon_sym_u64] = ACTIONS(887), + [anon_sym_i64] = ACTIONS(887), + [anon_sym_u128] = ACTIONS(887), + [anon_sym_i128] = ACTIONS(887), + [anon_sym_isize] = ACTIONS(887), + [anon_sym_usize] = ACTIONS(887), + [anon_sym_f32] = ACTIONS(887), + [anon_sym_f64] = ACTIONS(887), + [anon_sym_bool] = ACTIONS(887), + [anon_sym_str] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_PERCENT] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), + [anon_sym__] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_COLON_COLON] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_as] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_await] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_fn] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_gen] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_impl] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_loop] = ACTIONS(887), + [anon_sym_match] = ACTIONS(887), + [anon_sym_mod] = ACTIONS(887), + [anon_sym_pub] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_struct] = ACTIONS(887), + [anon_sym_trait] = ACTIONS(887), + [anon_sym_type] = ACTIONS(887), + [anon_sym_union] = ACTIONS(887), + [anon_sym_unsafe] = ACTIONS(887), + [anon_sym_use] = ACTIONS(887), + [anon_sym_where] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [sym_mutable_specifier] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(887), + [anon_sym_false] = ACTIONS(887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_crate] = ACTIONS(887), + [sym_metavariable] = ACTIONS(892), + [sym__raw_string_literal_start] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), + }, + [145] = { + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), [sym_identifier] = ACTIONS(897), [anon_sym_SEMI] = ACTIONS(899), [anon_sym_LPAREN] = ACTIONS(899), @@ -33215,6 +33259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(897), [anon_sym_fn] = ACTIONS(897), [anon_sym_for] = ACTIONS(897), + [anon_sym_gen] = ACTIONS(897), [anon_sym_if] = ACTIONS(897), [anon_sym_impl] = ACTIONS(897), [anon_sym_let] = ACTIONS(897), @@ -33238,8 +33283,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(899), [anon_sym_true] = ACTIONS(897), [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(897), [sym_super] = ACTIONS(897), [sym_crate] = ACTIONS(897), @@ -33247,282 +33292,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(899), [sym_float_literal] = ACTIONS(899), }, + [146] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [147] = { + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_RBRACK] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_COLON] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(903), + [anon_sym_i8] = ACTIONS(903), + [anon_sym_u16] = ACTIONS(903), + [anon_sym_i16] = ACTIONS(903), + [anon_sym_u32] = ACTIONS(903), + [anon_sym_i32] = ACTIONS(903), + [anon_sym_u64] = ACTIONS(903), + [anon_sym_i64] = ACTIONS(903), + [anon_sym_u128] = ACTIONS(903), + [anon_sym_i128] = ACTIONS(903), + [anon_sym_isize] = ACTIONS(903), + [anon_sym_usize] = ACTIONS(903), + [anon_sym_f32] = ACTIONS(903), + [anon_sym_f64] = ACTIONS(903), + [anon_sym_bool] = ACTIONS(903), + [anon_sym_str] = ACTIONS(903), + [anon_sym_char] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(903), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), + [anon_sym_STAR_EQ] = ACTIONS(905), + [anon_sym_SLASH_EQ] = ACTIONS(905), + [anon_sym_PERCENT_EQ] = ACTIONS(905), + [anon_sym_CARET_EQ] = ACTIONS(905), + [anon_sym_AMP_EQ] = ACTIONS(905), + [anon_sym_PIPE_EQ] = ACTIONS(905), + [anon_sym_LT_LT_EQ] = ACTIONS(905), + [anon_sym_GT_GT_EQ] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(905), + [anon_sym__] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(905), + [anon_sym_DASH_GT] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(905), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_async] = ACTIONS(903), + [anon_sym_await] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [anon_sym_enum] = ACTIONS(903), + [anon_sym_fn] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_gen] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_impl] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_pub] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_static] = ACTIONS(903), + [anon_sym_struct] = ACTIONS(903), + [anon_sym_trait] = ACTIONS(903), + [anon_sym_type] = ACTIONS(903), + [anon_sym_union] = ACTIONS(903), + [anon_sym_unsafe] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [sym_mutable_specifier] = ACTIONS(903), + [sym_integer_literal] = ACTIONS(905), + [aux_sym_string_literal_token1] = ACTIONS(905), + [sym_char_literal] = ACTIONS(905), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(903), + [sym_super] = ACTIONS(903), + [sym_crate] = ACTIONS(903), + [sym_metavariable] = ACTIONS(905), + [sym__raw_string_literal_start] = ACTIONS(905), + [sym_float_literal] = ACTIONS(905), + }, [148] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_u8] = ACTIONS(901), - [anon_sym_i8] = ACTIONS(901), - [anon_sym_u16] = ACTIONS(901), - [anon_sym_i16] = ACTIONS(901), - [anon_sym_u32] = ACTIONS(901), - [anon_sym_i32] = ACTIONS(901), - [anon_sym_u64] = ACTIONS(901), - [anon_sym_i64] = ACTIONS(901), - [anon_sym_u128] = ACTIONS(901), - [anon_sym_i128] = ACTIONS(901), - [anon_sym_isize] = ACTIONS(901), - [anon_sym_usize] = ACTIONS(901), - [anon_sym_f32] = ACTIONS(901), - [anon_sym_f64] = ACTIONS(901), - [anon_sym_bool] = ACTIONS(901), - [anon_sym_str] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_PERCENT] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym__] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_COLON_COLON] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_SQUOTE] = ACTIONS(901), - [anon_sym_as] = ACTIONS(901), - [anon_sym_async] = ACTIONS(901), - [anon_sym_await] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_fn] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_impl] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_pub] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(901), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_type] = ACTIONS(901), - [anon_sym_union] = ACTIONS(901), - [anon_sym_unsafe] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [sym_mutable_specifier] = ACTIONS(901), - [sym_integer_literal] = ACTIONS(903), - [aux_sym_string_literal_token1] = ACTIONS(903), - [sym_char_literal] = ACTIONS(903), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(901), - [sym_super] = ACTIONS(901), - [sym_crate] = ACTIONS(901), - [sym_metavariable] = ACTIONS(903), - [sym__raw_string_literal_start] = ACTIONS(903), - [sym_float_literal] = ACTIONS(903), - }, - [149] = { - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_EQ_GT] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_QMARK] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(905), - [anon_sym_i8] = ACTIONS(905), - [anon_sym_u16] = ACTIONS(905), - [anon_sym_i16] = ACTIONS(905), - [anon_sym_u32] = ACTIONS(905), - [anon_sym_i32] = ACTIONS(905), - [anon_sym_u64] = ACTIONS(905), - [anon_sym_i64] = ACTIONS(905), - [anon_sym_u128] = ACTIONS(905), - [anon_sym_i128] = ACTIONS(905), - [anon_sym_isize] = ACTIONS(905), - [anon_sym_usize] = ACTIONS(905), - [anon_sym_f32] = ACTIONS(905), - [anon_sym_f64] = ACTIONS(905), - [anon_sym_bool] = ACTIONS(905), - [anon_sym_str] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(905), - [anon_sym_PERCENT] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - [anon_sym_STAR_EQ] = ACTIONS(907), - [anon_sym_SLASH_EQ] = ACTIONS(907), - [anon_sym_PERCENT_EQ] = ACTIONS(907), - [anon_sym_CARET_EQ] = ACTIONS(907), - [anon_sym_AMP_EQ] = ACTIONS(907), - [anon_sym_PIPE_EQ] = ACTIONS(907), - [anon_sym_LT_LT_EQ] = ACTIONS(907), - [anon_sym_GT_GT_EQ] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), - [anon_sym__] = ACTIONS(905), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(907), - [anon_sym_DASH_GT] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(907), - [anon_sym_SQUOTE] = ACTIONS(905), - [anon_sym_as] = ACTIONS(905), - [anon_sym_async] = ACTIONS(905), - [anon_sym_await] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_const] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_fn] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_impl] = ACTIONS(905), - [anon_sym_let] = ACTIONS(905), - [anon_sym_loop] = ACTIONS(905), - [anon_sym_match] = ACTIONS(905), - [anon_sym_mod] = ACTIONS(905), - [anon_sym_pub] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_struct] = ACTIONS(905), - [anon_sym_trait] = ACTIONS(905), - [anon_sym_type] = ACTIONS(905), - [anon_sym_union] = ACTIONS(905), - [anon_sym_unsafe] = ACTIONS(905), - [anon_sym_use] = ACTIONS(905), - [anon_sym_where] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [sym_mutable_specifier] = ACTIONS(905), - [sym_integer_literal] = ACTIONS(907), - [aux_sym_string_literal_token1] = ACTIONS(907), - [sym_char_literal] = ACTIONS(907), - [anon_sym_true] = ACTIONS(905), - [anon_sym_false] = ACTIONS(905), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(905), - [sym_super] = ACTIONS(905), - [sym_crate] = ACTIONS(905), - [sym_metavariable] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(907), - [sym_float_literal] = ACTIONS(907), - }, - [150] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym__non_special_token_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(731), + [sym_identifier] = ACTIONS(907), [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(912), - [anon_sym_CARET] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_u8] = ACTIONS(907), + [anon_sym_i8] = ACTIONS(907), + [anon_sym_u16] = ACTIONS(907), + [anon_sym_i16] = ACTIONS(907), + [anon_sym_u32] = ACTIONS(907), + [anon_sym_i32] = ACTIONS(907), + [anon_sym_u64] = ACTIONS(907), + [anon_sym_i64] = ACTIONS(907), + [anon_sym_u128] = ACTIONS(907), + [anon_sym_i128] = ACTIONS(907), + [anon_sym_isize] = ACTIONS(907), + [anon_sym_usize] = ACTIONS(907), + [anon_sym_f32] = ACTIONS(907), + [anon_sym_f64] = ACTIONS(907), + [anon_sym_bool] = ACTIONS(907), + [anon_sym_str] = ACTIONS(907), + [anon_sym_char] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), [anon_sym_AMP_AMP] = ACTIONS(909), [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), [anon_sym_PLUS_EQ] = ACTIONS(909), [anon_sym_DASH_EQ] = ACTIONS(909), [anon_sym_STAR_EQ] = ACTIONS(909), @@ -33533,183 +33579,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(909), [anon_sym_LT_LT_EQ] = ACTIONS(909), [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(907), [anon_sym_EQ_EQ] = ACTIONS(909), [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), [anon_sym_GT_EQ] = ACTIONS(909), [anon_sym_LT_EQ] = ACTIONS(909), [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), + [anon_sym__] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), [anon_sym_DOT_DOT_DOT] = ACTIONS(909), [anon_sym_DOT_DOT_EQ] = ACTIONS(909), [anon_sym_COMMA] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(909), [anon_sym_DASH_GT] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_as] = ACTIONS(907), + [anon_sym_async] = ACTIONS(907), + [anon_sym_await] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_default] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(907), + [anon_sym_fn] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_gen] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_impl] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_pub] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_static] = ACTIONS(907), + [anon_sym_struct] = ACTIONS(907), + [anon_sym_trait] = ACTIONS(907), + [anon_sym_type] = ACTIONS(907), + [anon_sym_union] = ACTIONS(907), + [anon_sym_unsafe] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [sym_mutable_specifier] = ACTIONS(907), + [sym_integer_literal] = ACTIONS(909), + [aux_sym_string_literal_token1] = ACTIONS(909), + [sym_char_literal] = ACTIONS(909), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(907), + [sym_super] = ACTIONS(907), + [sym_crate] = ACTIONS(907), + [sym_metavariable] = ACTIONS(909), + [sym__raw_string_literal_start] = ACTIONS(909), + [sym_float_literal] = ACTIONS(909), }, - [151] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(334), + [149] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2644), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [152] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), + [150] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), [sym_identifier] = ACTIONS(919), [anon_sym_SEMI] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(921), @@ -33790,6 +33839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(919), [anon_sym_fn] = ACTIONS(919), [anon_sym_for] = ACTIONS(919), + [anon_sym_gen] = ACTIONS(919), [anon_sym_if] = ACTIONS(919), [anon_sym_impl] = ACTIONS(919), [anon_sym_let] = ACTIONS(919), @@ -33813,8 +33863,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(921), [anon_sym_true] = ACTIONS(919), [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(919), [sym_super] = ACTIONS(919), [sym_crate] = ACTIONS(919), @@ -33822,9 +33872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(921), [sym_float_literal] = ACTIONS(921), }, - [153] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), + [151] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), [sym_identifier] = ACTIONS(923), [anon_sym_SEMI] = ACTIONS(925), [anon_sym_LPAREN] = ACTIONS(925), @@ -33905,6 +33955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(923), [anon_sym_fn] = ACTIONS(923), [anon_sym_for] = ACTIONS(923), + [anon_sym_gen] = ACTIONS(923), [anon_sym_if] = ACTIONS(923), [anon_sym_impl] = ACTIONS(923), [anon_sym_let] = ACTIONS(923), @@ -33928,8 +33979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(925), [anon_sym_true] = ACTIONS(923), [anon_sym_false] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(923), [sym_super] = ACTIONS(923), [sym_crate] = ACTIONS(923), @@ -33937,9 +33988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(925), [sym_float_literal] = ACTIONS(925), }, - [154] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), + [152] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), [sym_identifier] = ACTIONS(927), [anon_sym_SEMI] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(929), @@ -34020,6 +34071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(927), [anon_sym_fn] = ACTIONS(927), [anon_sym_for] = ACTIONS(927), + [anon_sym_gen] = ACTIONS(927), [anon_sym_if] = ACTIONS(927), [anon_sym_impl] = ACTIONS(927), [anon_sym_let] = ACTIONS(927), @@ -34043,8 +34095,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(929), [anon_sym_true] = ACTIONS(927), [anon_sym_false] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(927), [sym_super] = ACTIONS(927), [sym_crate] = ACTIONS(927), @@ -34052,124 +34104,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(929), [sym_float_literal] = ACTIONS(929), }, - [155] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [153] = { + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym_identifier] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_EQ_GT] = ACTIONS(933), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(931), + [anon_sym_i8] = ACTIONS(931), + [anon_sym_u16] = ACTIONS(931), + [anon_sym_i16] = ACTIONS(931), + [anon_sym_u32] = ACTIONS(931), + [anon_sym_i32] = ACTIONS(931), + [anon_sym_u64] = ACTIONS(931), + [anon_sym_i64] = ACTIONS(931), + [anon_sym_u128] = ACTIONS(931), + [anon_sym_i128] = ACTIONS(931), + [anon_sym_isize] = ACTIONS(931), + [anon_sym_usize] = ACTIONS(931), + [anon_sym_f32] = ACTIONS(931), + [anon_sym_f64] = ACTIONS(931), + [anon_sym_bool] = ACTIONS(931), + [anon_sym_str] = ACTIONS(931), + [anon_sym_char] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_STAR_EQ] = ACTIONS(933), + [anon_sym_SLASH_EQ] = ACTIONS(933), + [anon_sym_PERCENT_EQ] = ACTIONS(933), + [anon_sym_CARET_EQ] = ACTIONS(933), + [anon_sym_AMP_EQ] = ACTIONS(933), + [anon_sym_PIPE_EQ] = ACTIONS(933), + [anon_sym_LT_LT_EQ] = ACTIONS(933), + [anon_sym_GT_GT_EQ] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), + [anon_sym__] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT_EQ] = ACTIONS(933), [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_COLON_COLON] = ACTIONS(933), + [anon_sym_DASH_GT] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_as] = ACTIONS(931), + [anon_sym_async] = ACTIONS(931), + [anon_sym_await] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_default] = ACTIONS(931), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_fn] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_gen] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_impl] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mod] = ACTIONS(931), + [anon_sym_pub] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_static] = ACTIONS(931), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_trait] = ACTIONS(931), + [anon_sym_type] = ACTIONS(931), + [anon_sym_union] = ACTIONS(931), + [anon_sym_unsafe] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_where] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [sym_mutable_specifier] = ACTIONS(931), + [sym_integer_literal] = ACTIONS(933), + [aux_sym_string_literal_token1] = ACTIONS(933), + [sym_char_literal] = ACTIONS(933), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(931), + [sym_super] = ACTIONS(931), + [sym_crate] = ACTIONS(931), + [sym_metavariable] = ACTIONS(933), + [sym__raw_string_literal_start] = ACTIONS(933), + [sym_float_literal] = ACTIONS(933), }, - [156] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), + [154] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), [sym_identifier] = ACTIONS(935), [anon_sym_SEMI] = ACTIONS(937), [anon_sym_LPAREN] = ACTIONS(937), @@ -34250,6 +34303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(935), [anon_sym_fn] = ACTIONS(935), [anon_sym_for] = ACTIONS(935), + [anon_sym_gen] = ACTIONS(935), [anon_sym_if] = ACTIONS(935), [anon_sym_impl] = ACTIONS(935), [anon_sym_let] = ACTIONS(935), @@ -34273,8 +34327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(937), [anon_sym_true] = ACTIONS(935), [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(935), [sym_super] = ACTIONS(935), [sym_crate] = ACTIONS(935), @@ -34282,177 +34336,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(937), [sym_float_literal] = ACTIONS(937), }, - [157] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(747), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(747), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_isize] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_f32] = ACTIONS(745), - [anon_sym_f64] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_str] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT_LT] = ACTIONS(745), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_PLUS_EQ] = ACTIONS(747), - [anon_sym_DASH_EQ] = ACTIONS(747), - [anon_sym_STAR_EQ] = ACTIONS(747), - [anon_sym_SLASH_EQ] = ACTIONS(747), - [anon_sym_PERCENT_EQ] = ACTIONS(747), - [anon_sym_CARET_EQ] = ACTIONS(747), - [anon_sym_AMP_EQ] = ACTIONS(747), - [anon_sym_PIPE_EQ] = ACTIONS(747), - [anon_sym_LT_LT_EQ] = ACTIONS(747), - [anon_sym_GT_GT_EQ] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(747), - [anon_sym_BANG_EQ] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(747), - [anon_sym__] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ] = ACTIONS(747), - [anon_sym_COMMA] = ACTIONS(747), - [anon_sym_COLON_COLON] = ACTIONS(747), - [anon_sym_DASH_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_as] = ACTIONS(745), - [anon_sym_async] = ACTIONS(745), - [anon_sym_await] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_fn] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_impl] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_pub] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(745), - [anon_sym_trait] = ACTIONS(745), - [anon_sym_type] = ACTIONS(745), - [anon_sym_union] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(745), - [sym_integer_literal] = ACTIONS(747), - [aux_sym_string_literal_token1] = ACTIONS(747), - [sym_char_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_crate] = ACTIONS(745), - [sym_metavariable] = ACTIONS(747), - [sym__raw_string_literal_start] = ACTIONS(747), - [sym_float_literal] = ACTIONS(747), + [155] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym_identifier] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_u8] = ACTIONS(939), + [anon_sym_i8] = ACTIONS(939), + [anon_sym_u16] = ACTIONS(939), + [anon_sym_i16] = ACTIONS(939), + [anon_sym_u32] = ACTIONS(939), + [anon_sym_i32] = ACTIONS(939), + [anon_sym_u64] = ACTIONS(939), + [anon_sym_i64] = ACTIONS(939), + [anon_sym_u128] = ACTIONS(939), + [anon_sym_i128] = ACTIONS(939), + [anon_sym_isize] = ACTIONS(939), + [anon_sym_usize] = ACTIONS(939), + [anon_sym_f32] = ACTIONS(939), + [anon_sym_f64] = ACTIONS(939), + [anon_sym_bool] = ACTIONS(939), + [anon_sym_str] = ACTIONS(939), + [anon_sym_char] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(941), + [anon_sym_DASH_EQ] = ACTIONS(941), + [anon_sym_STAR_EQ] = ACTIONS(941), + [anon_sym_SLASH_EQ] = ACTIONS(941), + [anon_sym_PERCENT_EQ] = ACTIONS(941), + [anon_sym_CARET_EQ] = ACTIONS(941), + [anon_sym_AMP_EQ] = ACTIONS(941), + [anon_sym_PIPE_EQ] = ACTIONS(941), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_GT_GT_EQ] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(941), + [anon_sym__] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_COLON_COLON] = ACTIONS(941), + [anon_sym_DASH_GT] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_as] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_await] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_fn] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_gen] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_impl] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_pub] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_static] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(939), + [anon_sym_trait] = ACTIONS(939), + [anon_sym_type] = ACTIONS(939), + [anon_sym_union] = ACTIONS(939), + [anon_sym_unsafe] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [sym_mutable_specifier] = ACTIONS(939), + [sym_integer_literal] = ACTIONS(941), + [aux_sym_string_literal_token1] = ACTIONS(941), + [sym_char_literal] = ACTIONS(941), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_crate] = ACTIONS(939), + [sym_metavariable] = ACTIONS(941), + [sym__raw_string_literal_start] = ACTIONS(941), + [sym_float_literal] = ACTIONS(941), }, - [158] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(334), + [156] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34477,1475 +34533,1374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(941), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [157] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_u8] = ACTIONS(945), + [anon_sym_i8] = ACTIONS(945), + [anon_sym_u16] = ACTIONS(945), + [anon_sym_i16] = ACTIONS(945), + [anon_sym_u32] = ACTIONS(945), + [anon_sym_i32] = ACTIONS(945), + [anon_sym_u64] = ACTIONS(945), + [anon_sym_i64] = ACTIONS(945), + [anon_sym_u128] = ACTIONS(945), + [anon_sym_i128] = ACTIONS(945), + [anon_sym_isize] = ACTIONS(945), + [anon_sym_usize] = ACTIONS(945), + [anon_sym_f32] = ACTIONS(945), + [anon_sym_f64] = ACTIONS(945), + [anon_sym_bool] = ACTIONS(945), + [anon_sym_str] = ACTIONS(945), + [anon_sym_char] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PERCENT_EQ] = ACTIONS(947), + [anon_sym_CARET_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(947), + [anon_sym__] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_COLON_COLON] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_async] = ACTIONS(945), + [anon_sym_await] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_fn] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_gen] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_impl] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_mod] = ACTIONS(945), + [anon_sym_pub] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_static] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_unsafe] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_where] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [sym_mutable_specifier] = ACTIONS(945), + [sym_integer_literal] = ACTIONS(947), + [aux_sym_string_literal_token1] = ACTIONS(947), + [sym_char_literal] = ACTIONS(947), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(945), + [sym_super] = ACTIONS(945), + [sym_crate] = ACTIONS(945), + [sym_metavariable] = ACTIONS(947), + [sym__raw_string_literal_start] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), + }, + [158] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(951), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_u8] = ACTIONS(949), + [anon_sym_i8] = ACTIONS(949), + [anon_sym_u16] = ACTIONS(949), + [anon_sym_i16] = ACTIONS(949), + [anon_sym_u32] = ACTIONS(949), + [anon_sym_i32] = ACTIONS(949), + [anon_sym_u64] = ACTIONS(949), + [anon_sym_i64] = ACTIONS(949), + [anon_sym_u128] = ACTIONS(949), + [anon_sym_i128] = ACTIONS(949), + [anon_sym_isize] = ACTIONS(949), + [anon_sym_usize] = ACTIONS(949), + [anon_sym_f32] = ACTIONS(949), + [anon_sym_f64] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_str] = ACTIONS(949), + [anon_sym_char] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(951), + [anon_sym__] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_COLON_COLON] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_default] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_gen] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_pub] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_trait] = ACTIONS(949), + [anon_sym_type] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [sym_mutable_specifier] = ACTIONS(949), + [sym_integer_literal] = ACTIONS(951), + [aux_sym_string_literal_token1] = ACTIONS(951), + [sym_char_literal] = ACTIONS(951), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_crate] = ACTIONS(949), + [sym_metavariable] = ACTIONS(951), + [sym__raw_string_literal_start] = ACTIONS(951), + [sym_float_literal] = ACTIONS(951), }, [159] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_RBRACK] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_STAR] = ACTIONS(943), - [anon_sym_QMARK] = ACTIONS(945), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u128] = ACTIONS(943), - [anon_sym_i128] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_str] = ACTIONS(943), - [anon_sym_char] = ACTIONS(943), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(943), - [anon_sym_PERCENT] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_AMP] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_AMP_AMP] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(945), - [anon_sym_LT_LT] = ACTIONS(943), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_PERCENT_EQ] = ACTIONS(945), - [anon_sym_CARET_EQ] = ACTIONS(945), - [anon_sym_AMP_EQ] = ACTIONS(945), - [anon_sym_PIPE_EQ] = ACTIONS(945), - [anon_sym_LT_LT_EQ] = ACTIONS(945), - [anon_sym_GT_GT_EQ] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(945), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(945), - [anon_sym__] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_COLON_COLON] = ACTIONS(945), - [anon_sym_DASH_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(945), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_async] = ACTIONS(943), - [anon_sym_await] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_default] = ACTIONS(943), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_fn] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_impl] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_mod] = ACTIONS(943), - [anon_sym_pub] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_static] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(943), - [anon_sym_type] = ACTIONS(943), - [anon_sym_union] = ACTIONS(943), - [anon_sym_unsafe] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_where] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [sym_mutable_specifier] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(945), - [aux_sym_string_literal_token1] = ACTIONS(945), - [sym_char_literal] = ACTIONS(945), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(943), - [sym_super] = ACTIONS(943), - [sym_crate] = ACTIONS(943), - [sym_metavariable] = ACTIONS(945), - [sym__raw_string_literal_start] = ACTIONS(945), - [sym_float_literal] = ACTIONS(945), + [sym_identifier] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_RPAREN] = ACTIONS(955), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_EQ_GT] = ACTIONS(955), + [anon_sym_COLON] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(955), + [anon_sym_u8] = ACTIONS(953), + [anon_sym_i8] = ACTIONS(953), + [anon_sym_u16] = ACTIONS(953), + [anon_sym_i16] = ACTIONS(953), + [anon_sym_u32] = ACTIONS(953), + [anon_sym_i32] = ACTIONS(953), + [anon_sym_u64] = ACTIONS(953), + [anon_sym_i64] = ACTIONS(953), + [anon_sym_u128] = ACTIONS(953), + [anon_sym_i128] = ACTIONS(953), + [anon_sym_isize] = ACTIONS(953), + [anon_sym_usize] = ACTIONS(953), + [anon_sym_f32] = ACTIONS(953), + [anon_sym_f64] = ACTIONS(953), + [anon_sym_bool] = ACTIONS(953), + [anon_sym_str] = ACTIONS(953), + [anon_sym_char] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(953), + [anon_sym_PERCENT] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_AMP_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(955), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(955), + [anon_sym_DASH_EQ] = ACTIONS(955), + [anon_sym_STAR_EQ] = ACTIONS(955), + [anon_sym_SLASH_EQ] = ACTIONS(955), + [anon_sym_PERCENT_EQ] = ACTIONS(955), + [anon_sym_CARET_EQ] = ACTIONS(955), + [anon_sym_AMP_EQ] = ACTIONS(955), + [anon_sym_PIPE_EQ] = ACTIONS(955), + [anon_sym_LT_LT_EQ] = ACTIONS(955), + [anon_sym_GT_GT_EQ] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(955), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_AT] = ACTIONS(955), + [anon_sym__] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_COLON_COLON] = ACTIONS(955), + [anon_sym_DASH_GT] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(953), + [anon_sym_as] = ACTIONS(953), + [anon_sym_async] = ACTIONS(953), + [anon_sym_await] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_gen] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_impl] = ACTIONS(953), + [anon_sym_let] = ACTIONS(953), + [anon_sym_loop] = ACTIONS(953), + [anon_sym_match] = ACTIONS(953), + [anon_sym_mod] = ACTIONS(953), + [anon_sym_pub] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_static] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_trait] = ACTIONS(953), + [anon_sym_type] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_unsafe] = ACTIONS(953), + [anon_sym_use] = ACTIONS(953), + [anon_sym_where] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [sym_mutable_specifier] = ACTIONS(953), + [sym_integer_literal] = ACTIONS(955), + [aux_sym_string_literal_token1] = ACTIONS(955), + [sym_char_literal] = ACTIONS(955), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(953), + [sym_super] = ACTIONS(953), + [sym_crate] = ACTIONS(953), + [sym_metavariable] = ACTIONS(955), + [sym__raw_string_literal_start] = ACTIONS(955), + [sym_float_literal] = ACTIONS(955), }, [160] = { [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [aux_sym__non_special_token_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u128] = ACTIONS(947), - [anon_sym_i128] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_str] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_as] = ACTIONS(947), - [anon_sym_async] = ACTIONS(947), - [anon_sym_await] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_const] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_default] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_impl] = ACTIONS(947), - [anon_sym_let] = ACTIONS(947), - [anon_sym_loop] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_mod] = ACTIONS(947), - [anon_sym_pub] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_trait] = ACTIONS(947), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [anon_sym_unsafe] = ACTIONS(947), - [anon_sym_use] = ACTIONS(947), - [anon_sym_where] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [sym_mutable_specifier] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(949), - [aux_sym_string_literal_token1] = ACTIONS(949), - [sym_char_literal] = ACTIONS(949), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), + [sym_identifier] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_EQ_GT] = ACTIONS(959), + [anon_sym_COLON] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_u8] = ACTIONS(957), + [anon_sym_i8] = ACTIONS(957), + [anon_sym_u16] = ACTIONS(957), + [anon_sym_i16] = ACTIONS(957), + [anon_sym_u32] = ACTIONS(957), + [anon_sym_i32] = ACTIONS(957), + [anon_sym_u64] = ACTIONS(957), + [anon_sym_i64] = ACTIONS(957), + [anon_sym_u128] = ACTIONS(957), + [anon_sym_i128] = ACTIONS(957), + [anon_sym_isize] = ACTIONS(957), + [anon_sym_usize] = ACTIONS(957), + [anon_sym_f32] = ACTIONS(957), + [anon_sym_f64] = ACTIONS(957), + [anon_sym_bool] = ACTIONS(957), + [anon_sym_str] = ACTIONS(957), + [anon_sym_char] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_PLUS_EQ] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(959), + [anon_sym_STAR_EQ] = ACTIONS(959), + [anon_sym_SLASH_EQ] = ACTIONS(959), + [anon_sym_PERCENT_EQ] = ACTIONS(959), + [anon_sym_CARET_EQ] = ACTIONS(959), + [anon_sym_AMP_EQ] = ACTIONS(959), + [anon_sym_PIPE_EQ] = ACTIONS(959), + [anon_sym_LT_LT_EQ] = ACTIONS(959), + [anon_sym_GT_GT_EQ] = ACTIONS(959), + [anon_sym_EQ] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(959), + [anon_sym__] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_DASH_GT] = ACTIONS(959), + [anon_sym_POUND] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_as] = ACTIONS(957), + [anon_sym_async] = ACTIONS(957), + [anon_sym_await] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_default] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(957), + [anon_sym_fn] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_gen] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_impl] = ACTIONS(957), + [anon_sym_let] = ACTIONS(957), + [anon_sym_loop] = ACTIONS(957), + [anon_sym_match] = ACTIONS(957), + [anon_sym_mod] = ACTIONS(957), + [anon_sym_pub] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_static] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_trait] = ACTIONS(957), + [anon_sym_type] = ACTIONS(957), + [anon_sym_union] = ACTIONS(957), + [anon_sym_unsafe] = ACTIONS(957), + [anon_sym_use] = ACTIONS(957), + [anon_sym_where] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [sym_mutable_specifier] = ACTIONS(957), + [sym_integer_literal] = ACTIONS(959), + [aux_sym_string_literal_token1] = ACTIONS(959), + [sym_char_literal] = ACTIONS(959), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(957), + [sym_super] = ACTIONS(957), + [sym_crate] = ACTIONS(957), + [sym_metavariable] = ACTIONS(959), + [sym__raw_string_literal_start] = ACTIONS(959), + [sym_float_literal] = ACTIONS(959), }, [161] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2568), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [162] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_mod] = ACTIONS(951), - [anon_sym_pub] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_trait] = ACTIONS(951), - [anon_sym_type] = ACTIONS(951), - [anon_sym_union] = ACTIONS(951), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_where] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [sym_mutable_specifier] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(953), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_crate] = ACTIONS(951), - [sym_metavariable] = ACTIONS(953), - [sym__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym__] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_DASH_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym_metavariable] = ACTIONS(963), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), }, [163] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [aux_sym_enum_variant_list_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_as] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_gen] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_loop] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_where] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [sym_mutable_specifier] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_crate] = ACTIONS(965), + [sym_metavariable] = ACTIONS(967), + [sym__raw_string_literal_start] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), }, [164] = { [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(959), - [anon_sym_i8] = ACTIONS(959), - [anon_sym_u16] = ACTIONS(959), - [anon_sym_i16] = ACTIONS(959), - [anon_sym_u32] = ACTIONS(959), - [anon_sym_i32] = ACTIONS(959), - [anon_sym_u64] = ACTIONS(959), - [anon_sym_i64] = ACTIONS(959), - [anon_sym_u128] = ACTIONS(959), - [anon_sym_i128] = ACTIONS(959), - [anon_sym_isize] = ACTIONS(959), - [anon_sym_usize] = ACTIONS(959), - [anon_sym_f32] = ACTIONS(959), - [anon_sym_f64] = ACTIONS(959), - [anon_sym_bool] = ACTIONS(959), - [anon_sym_str] = ACTIONS(959), - [anon_sym_char] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_COLON_COLON] = ACTIONS(961), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_default] = ACTIONS(959), - [anon_sym_enum] = ACTIONS(959), - [anon_sym_fn] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_impl] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_pub] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(959), - [anon_sym_type] = ACTIONS(959), - [anon_sym_union] = ACTIONS(959), - [anon_sym_unsafe] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [sym_mutable_specifier] = ACTIONS(959), - [sym_integer_literal] = ACTIONS(961), - [aux_sym_string_literal_token1] = ACTIONS(961), - [sym_char_literal] = ACTIONS(961), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_crate] = ACTIONS(959), - [sym_metavariable] = ACTIONS(961), - [sym__raw_string_literal_start] = ACTIONS(961), - [sym_float_literal] = ACTIONS(961), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_COLON] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u128] = ACTIONS(969), + [anon_sym_i128] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_str] = ACTIONS(969), + [anon_sym_char] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_PERCENT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PERCENT_EQ] = ACTIONS(971), + [anon_sym_CARET_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(971), + [anon_sym__] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(971), + [anon_sym_DASH_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_async] = ACTIONS(969), + [anon_sym_await] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_gen] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_impl] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_mod] = ACTIONS(969), + [anon_sym_pub] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_static] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_trait] = ACTIONS(969), + [anon_sym_type] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_unsafe] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_where] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [sym_mutable_specifier] = ACTIONS(969), + [sym_integer_literal] = ACTIONS(971), + [aux_sym_string_literal_token1] = ACTIONS(971), + [sym_char_literal] = ACTIONS(971), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(969), + [sym_super] = ACTIONS(969), + [sym_crate] = ACTIONS(969), + [sym_metavariable] = ACTIONS(971), + [sym__raw_string_literal_start] = ACTIONS(971), + [sym_float_literal] = ACTIONS(971), }, [165] = { [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(965), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_EQ_GT] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_PERCENT_EQ] = ACTIONS(965), - [anon_sym_CARET_EQ] = ACTIONS(965), - [anon_sym_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_EQ] = ACTIONS(965), - [anon_sym_LT_LT_EQ] = ACTIONS(965), - [anon_sym_GT_GT_EQ] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym__] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(965), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_COLON_COLON] = ACTIONS(965), - [anon_sym_DASH_GT] = ACTIONS(965), - [anon_sym_POUND] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_as] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_await] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_default] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [anon_sym_fn] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_impl] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_loop] = ACTIONS(963), - [anon_sym_match] = ACTIONS(963), - [anon_sym_mod] = ACTIONS(963), - [anon_sym_pub] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_static] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_trait] = ACTIONS(963), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(963), - [anon_sym_unsafe] = ACTIONS(963), - [anon_sym_use] = ACTIONS(963), - [anon_sym_where] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [sym_mutable_specifier] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(965), - [aux_sym_string_literal_token1] = ACTIONS(965), - [sym_char_literal] = ACTIONS(965), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), - [sym__raw_string_literal_start] = ACTIONS(965), - [sym_float_literal] = ACTIONS(965), + [sym_identifier] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_RBRACK] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(975), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_QMARK] = ACTIONS(975), + [anon_sym_u8] = ACTIONS(973), + [anon_sym_i8] = ACTIONS(973), + [anon_sym_u16] = ACTIONS(973), + [anon_sym_i16] = ACTIONS(973), + [anon_sym_u32] = ACTIONS(973), + [anon_sym_i32] = ACTIONS(973), + [anon_sym_u64] = ACTIONS(973), + [anon_sym_i64] = ACTIONS(973), + [anon_sym_u128] = ACTIONS(973), + [anon_sym_i128] = ACTIONS(973), + [anon_sym_isize] = ACTIONS(973), + [anon_sym_usize] = ACTIONS(973), + [anon_sym_f32] = ACTIONS(973), + [anon_sym_f64] = ACTIONS(973), + [anon_sym_bool] = ACTIONS(973), + [anon_sym_str] = ACTIONS(973), + [anon_sym_char] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(975), + [anon_sym_DASH_EQ] = ACTIONS(975), + [anon_sym_STAR_EQ] = ACTIONS(975), + [anon_sym_SLASH_EQ] = ACTIONS(975), + [anon_sym_PERCENT_EQ] = ACTIONS(975), + [anon_sym_CARET_EQ] = ACTIONS(975), + [anon_sym_AMP_EQ] = ACTIONS(975), + [anon_sym_PIPE_EQ] = ACTIONS(975), + [anon_sym_LT_LT_EQ] = ACTIONS(975), + [anon_sym_GT_GT_EQ] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_AT] = ACTIONS(975), + [anon_sym__] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_DASH_GT] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_async] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_default] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_fn] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_gen] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_pub] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_static] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(973), + [anon_sym_type] = ACTIONS(973), + [anon_sym_union] = ACTIONS(973), + [anon_sym_unsafe] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [sym_mutable_specifier] = ACTIONS(973), + [sym_integer_literal] = ACTIONS(975), + [aux_sym_string_literal_token1] = ACTIONS(975), + [sym_char_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(973), + [sym_super] = ACTIONS(973), + [sym_crate] = ACTIONS(973), + [sym_metavariable] = ACTIONS(975), + [sym__raw_string_literal_start] = ACTIONS(975), + [sym_float_literal] = ACTIONS(975), }, [166] = { [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [sym_identifier] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u128] = ACTIONS(977), + [anon_sym_i128] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_str] = ACTIONS(977), + [anon_sym_char] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_PERCENT_EQ] = ACTIONS(979), + [anon_sym_CARET_EQ] = ACTIONS(979), + [anon_sym_AMP_EQ] = ACTIONS(979), + [anon_sym_PIPE_EQ] = ACTIONS(979), + [anon_sym_LT_LT_EQ] = ACTIONS(979), + [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym__] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_COLON_COLON] = ACTIONS(979), + [anon_sym_DASH_GT] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_as] = ACTIONS(977), + [anon_sym_async] = ACTIONS(977), + [anon_sym_await] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_gen] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_impl] = ACTIONS(977), + [anon_sym_let] = ACTIONS(977), + [anon_sym_loop] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_mod] = ACTIONS(977), + [anon_sym_pub] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_static] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_trait] = ACTIONS(977), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_unsafe] = ACTIONS(977), + [anon_sym_use] = ACTIONS(977), + [anon_sym_where] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [sym_mutable_specifier] = ACTIONS(977), + [sym_integer_literal] = ACTIONS(979), + [aux_sym_string_literal_token1] = ACTIONS(979), + [sym_char_literal] = ACTIONS(979), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(977), + [sym_metavariable] = ACTIONS(979), + [sym__raw_string_literal_start] = ACTIONS(979), + [sym_float_literal] = ACTIONS(979), }, [167] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2559), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [168] = { - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), - }, - [169] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2593), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [170] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2730), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [171] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), + [168] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), [aux_sym_enum_variant_list_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(981), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35971,893 +35926,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [172] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2504), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [173] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), - }, - [174] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2573), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [175] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), - }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), - }, - [178] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [179] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [169] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36883,779 +36042,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [180] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), - }, - [181] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, - [182] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2629), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [183] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(949), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u128] = ACTIONS(947), - [anon_sym_i128] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_str] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(949), - [anon_sym_DASH_EQ] = ACTIONS(949), - [anon_sym_STAR_EQ] = ACTIONS(949), - [anon_sym_SLASH_EQ] = ACTIONS(949), - [anon_sym_PERCENT_EQ] = ACTIONS(949), - [anon_sym_CARET_EQ] = ACTIONS(949), - [anon_sym_AMP_EQ] = ACTIONS(949), - [anon_sym_PIPE_EQ] = ACTIONS(949), - [anon_sym_LT_LT_EQ] = ACTIONS(949), - [anon_sym_GT_GT_EQ] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(949), - [anon_sym__] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_COLON_COLON] = ACTIONS(949), - [anon_sym_DASH_GT] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_as] = ACTIONS(947), - [anon_sym_async] = ACTIONS(947), - [anon_sym_await] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_const] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_default] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_impl] = ACTIONS(947), - [anon_sym_let] = ACTIONS(947), - [anon_sym_loop] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_mod] = ACTIONS(947), - [anon_sym_pub] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_trait] = ACTIONS(947), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [anon_sym_unsafe] = ACTIONS(947), - [anon_sym_use] = ACTIONS(947), - [anon_sym_where] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [sym_mutable_specifier] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(949), - [aux_sym_string_literal_token1] = ACTIONS(949), - [sym_char_literal] = ACTIONS(949), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), - }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(995), - [anon_sym_DASH_GT] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_as] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_await] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_loop] = ACTIONS(993), - [anon_sym_match] = ACTIONS(993), - [anon_sym_mod] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_trait] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_union] = ACTIONS(993), - [anon_sym_unsafe] = ACTIONS(993), - [anon_sym_use] = ACTIONS(993), - [anon_sym_where] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [sym_mutable_specifier] = ACTIONS(993), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(995), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(993), - [anon_sym_false] = ACTIONS(993), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_crate] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), - }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [186] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(334), + [170] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1001), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37681,95 +36158,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [187] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [171] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37795,95 +36274,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [188] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [172] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(989), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37909,209 +36390,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [189] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2548), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [173] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(991), + [anon_sym_i8] = ACTIONS(991), + [anon_sym_u16] = ACTIONS(991), + [anon_sym_i16] = ACTIONS(991), + [anon_sym_u32] = ACTIONS(991), + [anon_sym_i32] = ACTIONS(991), + [anon_sym_u64] = ACTIONS(991), + [anon_sym_i64] = ACTIONS(991), + [anon_sym_u128] = ACTIONS(991), + [anon_sym_i128] = ACTIONS(991), + [anon_sym_isize] = ACTIONS(991), + [anon_sym_usize] = ACTIONS(991), + [anon_sym_f32] = ACTIONS(991), + [anon_sym_f64] = ACTIONS(991), + [anon_sym_bool] = ACTIONS(991), + [anon_sym_str] = ACTIONS(991), + [anon_sym_char] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_as] = ACTIONS(991), + [anon_sym_async] = ACTIONS(991), + [anon_sym_await] = ACTIONS(991), + [anon_sym_break] = ACTIONS(991), + [anon_sym_const] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(991), + [anon_sym_default] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(991), + [anon_sym_fn] = ACTIONS(991), + [anon_sym_for] = ACTIONS(991), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(991), + [anon_sym_impl] = ACTIONS(991), + [anon_sym_let] = ACTIONS(991), + [anon_sym_loop] = ACTIONS(991), + [anon_sym_match] = ACTIONS(991), + [anon_sym_mod] = ACTIONS(991), + [anon_sym_pub] = ACTIONS(991), + [anon_sym_return] = ACTIONS(991), + [anon_sym_static] = ACTIONS(991), + [anon_sym_struct] = ACTIONS(991), + [anon_sym_trait] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_union] = ACTIONS(991), + [anon_sym_unsafe] = ACTIONS(991), + [anon_sym_use] = ACTIONS(991), + [anon_sym_where] = ACTIONS(991), + [anon_sym_while] = ACTIONS(991), + [sym_mutable_specifier] = ACTIONS(991), + [sym_integer_literal] = ACTIONS(993), + [aux_sym_string_literal_token1] = ACTIONS(993), + [sym_char_literal] = ACTIONS(993), + [anon_sym_true] = ACTIONS(991), + [anon_sym_false] = ACTIONS(991), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(991), + [sym__raw_string_literal_start] = ACTIONS(993), + [sym_float_literal] = ACTIONS(993), }, - [190] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [174] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38137,95 +36622,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [191] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [175] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(997), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38251,95 +36738,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [192] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [176] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38365,95 +36854,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [193] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [177] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1001), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38479,95 +36970,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [194] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [178] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38593,209 +37086,561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [195] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [179] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym_identifier] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_RBRACK] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_EQ_GT] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_QMARK] = ACTIONS(873), + [anon_sym_u8] = ACTIONS(871), + [anon_sym_i8] = ACTIONS(871), + [anon_sym_u16] = ACTIONS(871), + [anon_sym_i16] = ACTIONS(871), + [anon_sym_u32] = ACTIONS(871), + [anon_sym_i32] = ACTIONS(871), + [anon_sym_u64] = ACTIONS(871), + [anon_sym_i64] = ACTIONS(871), + [anon_sym_u128] = ACTIONS(871), + [anon_sym_i128] = ACTIONS(871), + [anon_sym_isize] = ACTIONS(871), + [anon_sym_usize] = ACTIONS(871), + [anon_sym_f32] = ACTIONS(871), + [anon_sym_f64] = ACTIONS(871), + [anon_sym_bool] = ACTIONS(871), + [anon_sym_str] = ACTIONS(871), + [anon_sym_char] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(871), + [anon_sym_PERCENT] = ACTIONS(871), + [anon_sym_CARET] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_AMP] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(871), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PLUS_EQ] = ACTIONS(873), + [anon_sym_DASH_EQ] = ACTIONS(873), + [anon_sym_STAR_EQ] = ACTIONS(873), + [anon_sym_SLASH_EQ] = ACTIONS(873), + [anon_sym_PERCENT_EQ] = ACTIONS(873), + [anon_sym_CARET_EQ] = ACTIONS(873), + [anon_sym_AMP_EQ] = ACTIONS(873), + [anon_sym_PIPE_EQ] = ACTIONS(873), + [anon_sym_LT_LT_EQ] = ACTIONS(873), + [anon_sym_GT_GT_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(871), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(871), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_AT] = ACTIONS(873), + [anon_sym__] = ACTIONS(871), + [anon_sym_DOT] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_COLON_COLON] = ACTIONS(873), + [anon_sym_DASH_GT] = ACTIONS(873), + [anon_sym_POUND] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(871), + [anon_sym_as] = ACTIONS(871), + [anon_sym_async] = ACTIONS(871), + [anon_sym_await] = ACTIONS(871), + [anon_sym_break] = ACTIONS(871), + [anon_sym_const] = ACTIONS(871), + [anon_sym_continue] = ACTIONS(871), + [anon_sym_default] = ACTIONS(871), + [anon_sym_enum] = ACTIONS(871), + [anon_sym_fn] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_gen] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_impl] = ACTIONS(871), + [anon_sym_let] = ACTIONS(871), + [anon_sym_loop] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mod] = ACTIONS(871), + [anon_sym_pub] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_static] = ACTIONS(871), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_trait] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_union] = ACTIONS(871), + [anon_sym_unsafe] = ACTIONS(871), + [anon_sym_use] = ACTIONS(871), + [anon_sym_where] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [sym_mutable_specifier] = ACTIONS(871), + [sym_integer_literal] = ACTIONS(873), + [aux_sym_string_literal_token1] = ACTIONS(873), + [sym_char_literal] = ACTIONS(873), + [anon_sym_true] = ACTIONS(871), + [anon_sym_false] = ACTIONS(871), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(871), + [sym_super] = ACTIONS(871), + [sym_crate] = ACTIONS(871), + [sym_metavariable] = ACTIONS(873), + [sym__raw_string_literal_start] = ACTIONS(873), + [sym_float_literal] = ACTIONS(873), + }, + [180] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_identifier] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_RBRACK] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_EQ_GT] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_QMARK] = ACTIONS(873), + [anon_sym_u8] = ACTIONS(871), + [anon_sym_i8] = ACTIONS(871), + [anon_sym_u16] = ACTIONS(871), + [anon_sym_i16] = ACTIONS(871), + [anon_sym_u32] = ACTIONS(871), + [anon_sym_i32] = ACTIONS(871), + [anon_sym_u64] = ACTIONS(871), + [anon_sym_i64] = ACTIONS(871), + [anon_sym_u128] = ACTIONS(871), + [anon_sym_i128] = ACTIONS(871), + [anon_sym_isize] = ACTIONS(871), + [anon_sym_usize] = ACTIONS(871), + [anon_sym_f32] = ACTIONS(871), + [anon_sym_f64] = ACTIONS(871), + [anon_sym_bool] = ACTIONS(871), + [anon_sym_str] = ACTIONS(871), + [anon_sym_char] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(871), + [anon_sym_PERCENT] = ACTIONS(871), + [anon_sym_CARET] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_AMP] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(871), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_PLUS_EQ] = ACTIONS(873), + [anon_sym_DASH_EQ] = ACTIONS(873), + [anon_sym_STAR_EQ] = ACTIONS(873), + [anon_sym_SLASH_EQ] = ACTIONS(873), + [anon_sym_PERCENT_EQ] = ACTIONS(873), + [anon_sym_CARET_EQ] = ACTIONS(873), + [anon_sym_AMP_EQ] = ACTIONS(873), + [anon_sym_PIPE_EQ] = ACTIONS(873), + [anon_sym_LT_LT_EQ] = ACTIONS(873), + [anon_sym_GT_GT_EQ] = ACTIONS(873), + [anon_sym_EQ] = ACTIONS(871), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(871), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_AT] = ACTIONS(873), + [anon_sym__] = ACTIONS(871), + [anon_sym_DOT] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_COLON_COLON] = ACTIONS(873), + [anon_sym_DASH_GT] = ACTIONS(873), + [anon_sym_POUND] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(871), + [anon_sym_as] = ACTIONS(871), + [anon_sym_async] = ACTIONS(871), + [anon_sym_await] = ACTIONS(871), + [anon_sym_break] = ACTIONS(871), + [anon_sym_const] = ACTIONS(871), + [anon_sym_continue] = ACTIONS(871), + [anon_sym_default] = ACTIONS(871), + [anon_sym_enum] = ACTIONS(871), + [anon_sym_fn] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_gen] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_impl] = ACTIONS(871), + [anon_sym_let] = ACTIONS(871), + [anon_sym_loop] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_mod] = ACTIONS(871), + [anon_sym_pub] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_static] = ACTIONS(871), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_trait] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_union] = ACTIONS(871), + [anon_sym_unsafe] = ACTIONS(871), + [anon_sym_use] = ACTIONS(871), + [anon_sym_where] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [sym_mutable_specifier] = ACTIONS(871), + [sym_integer_literal] = ACTIONS(873), + [aux_sym_string_literal_token1] = ACTIONS(873), + [sym_char_literal] = ACTIONS(873), + [anon_sym_true] = ACTIONS(871), + [anon_sym_false] = ACTIONS(871), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(871), + [sym_super] = ACTIONS(871), + [sym_crate] = ACTIONS(871), + [sym_metavariable] = ACTIONS(873), + [sym__raw_string_literal_start] = ACTIONS(873), + [sym_float_literal] = ACTIONS(873), + }, + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_identifier] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_RBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_EQ_GT] = ACTIONS(1009), + [anon_sym_COLON] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_u8] = ACTIONS(1007), + [anon_sym_i8] = ACTIONS(1007), + [anon_sym_u16] = ACTIONS(1007), + [anon_sym_i16] = ACTIONS(1007), + [anon_sym_u32] = ACTIONS(1007), + [anon_sym_i32] = ACTIONS(1007), + [anon_sym_u64] = ACTIONS(1007), + [anon_sym_i64] = ACTIONS(1007), + [anon_sym_u128] = ACTIONS(1007), + [anon_sym_i128] = ACTIONS(1007), + [anon_sym_isize] = ACTIONS(1007), + [anon_sym_usize] = ACTIONS(1007), + [anon_sym_f32] = ACTIONS(1007), + [anon_sym_f64] = ACTIONS(1007), + [anon_sym_bool] = ACTIONS(1007), + [anon_sym_str] = ACTIONS(1007), + [anon_sym_char] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_PLUS_EQ] = ACTIONS(1009), + [anon_sym_DASH_EQ] = ACTIONS(1009), + [anon_sym_STAR_EQ] = ACTIONS(1009), + [anon_sym_SLASH_EQ] = ACTIONS(1009), + [anon_sym_PERCENT_EQ] = ACTIONS(1009), + [anon_sym_CARET_EQ] = ACTIONS(1009), + [anon_sym_AMP_EQ] = ACTIONS(1009), + [anon_sym_PIPE_EQ] = ACTIONS(1009), + [anon_sym_LT_LT_EQ] = ACTIONS(1009), + [anon_sym_GT_GT_EQ] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_BANG_EQ] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT_EQ] = ACTIONS(1009), + [anon_sym_LT_EQ] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1009), + [anon_sym__] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), + [anon_sym_COMMA] = ACTIONS(1009), + [anon_sym_COLON_COLON] = ACTIONS(1009), + [anon_sym_DASH_GT] = ACTIONS(1009), + [anon_sym_POUND] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_as] = ACTIONS(1007), + [anon_sym_async] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1007), + [anon_sym_break] = ACTIONS(1007), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_continue] = ACTIONS(1007), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_fn] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_gen] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1007), + [anon_sym_loop] = ACTIONS(1007), + [anon_sym_match] = ACTIONS(1007), + [anon_sym_mod] = ACTIONS(1007), + [anon_sym_pub] = ACTIONS(1007), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1007), + [anon_sym_struct] = ACTIONS(1007), + [anon_sym_trait] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1007), + [anon_sym_union] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_use] = ACTIONS(1007), + [anon_sym_where] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1007), + [sym_mutable_specifier] = ACTIONS(1007), + [sym_integer_literal] = ACTIONS(1009), + [aux_sym_string_literal_token1] = ACTIONS(1009), + [sym_char_literal] = ACTIONS(1009), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1007), + [sym_super] = ACTIONS(1007), + [sym_crate] = ACTIONS(1007), + [sym_metavariable] = ACTIONS(1009), + [sym__raw_string_literal_start] = ACTIONS(1009), + [sym_float_literal] = ACTIONS(1009), + }, + [182] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2624), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [196] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [183] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38821,209 +37666,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [197] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(3179), - [sym__let_chain] = STATE(3181), - [sym__condition] = STATE(3594), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(1013), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_QMARK] = ACTIONS(1013), + [anon_sym_u8] = ACTIONS(887), + [anon_sym_i8] = ACTIONS(887), + [anon_sym_u16] = ACTIONS(887), + [anon_sym_i16] = ACTIONS(887), + [anon_sym_u32] = ACTIONS(887), + [anon_sym_i32] = ACTIONS(887), + [anon_sym_u64] = ACTIONS(887), + [anon_sym_i64] = ACTIONS(887), + [anon_sym_u128] = ACTIONS(887), + [anon_sym_i128] = ACTIONS(887), + [anon_sym_isize] = ACTIONS(887), + [anon_sym_usize] = ACTIONS(887), + [anon_sym_f32] = ACTIONS(887), + [anon_sym_f64] = ACTIONS(887), + [anon_sym_bool] = ACTIONS(887), + [anon_sym_str] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_CARET] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_LT_LT] = ACTIONS(1016), + [anon_sym_GT_GT] = ACTIONS(1016), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PERCENT_EQ] = ACTIONS(1013), + [anon_sym_CARET_EQ] = ACTIONS(1013), + [anon_sym_AMP_EQ] = ACTIONS(1013), + [anon_sym_PIPE_EQ] = ACTIONS(1013), + [anon_sym_LT_LT_EQ] = ACTIONS(1013), + [anon_sym_GT_GT_EQ] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ_EQ] = ACTIONS(1013), + [anon_sym_BANG_EQ] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1013), + [anon_sym_LT_EQ] = ACTIONS(1013), + [anon_sym_AT] = ACTIONS(1013), + [anon_sym__] = ACTIONS(1016), + [anon_sym_DOT] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_COMMA] = ACTIONS(1013), + [anon_sym_COLON_COLON] = ACTIONS(1013), + [anon_sym_DASH_GT] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(1013), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_as] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_await] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_fn] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_gen] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_impl] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_loop] = ACTIONS(887), + [anon_sym_match] = ACTIONS(887), + [anon_sym_mod] = ACTIONS(887), + [anon_sym_pub] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_struct] = ACTIONS(887), + [anon_sym_trait] = ACTIONS(887), + [anon_sym_type] = ACTIONS(887), + [anon_sym_union] = ACTIONS(887), + [anon_sym_unsafe] = ACTIONS(887), + [anon_sym_use] = ACTIONS(887), + [anon_sym_where] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [sym_mutable_specifier] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(887), + [anon_sym_false] = ACTIONS(887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_crate] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), + }, + [185] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_let_condition] = STATE(3097), + [sym__let_chain] = STATE(3100), + [sym__condition] = STATE(3450), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [198] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [186] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1027), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39049,95 +38014,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [199] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [187] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39163,437 +38130,909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [200] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [188] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2623), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [201] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2722), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(456), + [189] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2626), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [202] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2495), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(456), + [190] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2536), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [203] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [191] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2596), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [192] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2597), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [193] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2616), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [194] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2634), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [195] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39619,664 +39058,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [204] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2547), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [205] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2594), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(456), + [196] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2808), + [sym__let_chain] = STATE(2848), + [sym__condition] = STATE(2635), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [206] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2612), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [197] = { + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym_identifier] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(881), + [anon_sym_u8] = ACTIONS(879), + [anon_sym_i8] = ACTIONS(879), + [anon_sym_u16] = ACTIONS(879), + [anon_sym_i16] = ACTIONS(879), + [anon_sym_u32] = ACTIONS(879), + [anon_sym_i32] = ACTIONS(879), + [anon_sym_u64] = ACTIONS(879), + [anon_sym_i64] = ACTIONS(879), + [anon_sym_u128] = ACTIONS(879), + [anon_sym_i128] = ACTIONS(879), + [anon_sym_isize] = ACTIONS(879), + [anon_sym_usize] = ACTIONS(879), + [anon_sym_f32] = ACTIONS(879), + [anon_sym_f64] = ACTIONS(879), + [anon_sym_bool] = ACTIONS(879), + [anon_sym_str] = ACTIONS(879), + [anon_sym_char] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_PIPE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(881), + [anon_sym_PIPE_PIPE] = ACTIONS(881), + [anon_sym_LT_LT] = ACTIONS(879), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_PLUS_EQ] = ACTIONS(881), + [anon_sym_DASH_EQ] = ACTIONS(881), + [anon_sym_STAR_EQ] = ACTIONS(881), + [anon_sym_SLASH_EQ] = ACTIONS(881), + [anon_sym_PERCENT_EQ] = ACTIONS(881), + [anon_sym_CARET_EQ] = ACTIONS(881), + [anon_sym_AMP_EQ] = ACTIONS(881), + [anon_sym_PIPE_EQ] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(881), + [anon_sym_GT_GT_EQ] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(881), + [anon_sym__] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_COLON_COLON] = ACTIONS(881), + [anon_sym_DASH_GT] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(881), + [anon_sym_SQUOTE] = ACTIONS(879), + [anon_sym_as] = ACTIONS(879), + [anon_sym_async] = ACTIONS(879), + [anon_sym_await] = ACTIONS(879), + [anon_sym_break] = ACTIONS(879), + [anon_sym_const] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_default] = ACTIONS(879), + [anon_sym_enum] = ACTIONS(879), + [anon_sym_fn] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_gen] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_impl] = ACTIONS(879), + [anon_sym_let] = ACTIONS(879), + [anon_sym_loop] = ACTIONS(879), + [anon_sym_match] = ACTIONS(879), + [anon_sym_mod] = ACTIONS(879), + [anon_sym_pub] = ACTIONS(879), + [anon_sym_return] = ACTIONS(879), + [anon_sym_static] = ACTIONS(879), + [anon_sym_struct] = ACTIONS(879), + [anon_sym_trait] = ACTIONS(879), + [anon_sym_type] = ACTIONS(879), + [anon_sym_union] = ACTIONS(879), + [anon_sym_unsafe] = ACTIONS(879), + [anon_sym_use] = ACTIONS(879), + [anon_sym_where] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [sym_mutable_specifier] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(881), + [aux_sym_string_literal_token1] = ACTIONS(881), + [sym_char_literal] = ACTIONS(881), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(879), + [sym_super] = ACTIONS(879), + [sym_crate] = ACTIONS(879), + [sym_metavariable] = ACTIONS(881), + [sym__raw_string_literal_start] = ACTIONS(881), + [sym_float_literal] = ACTIONS(881), }, - [207] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2621), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [198] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_COLON] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u128] = ACTIONS(969), + [anon_sym_i128] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_str] = ACTIONS(969), + [anon_sym_char] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_PERCENT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PERCENT_EQ] = ACTIONS(971), + [anon_sym_CARET_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(971), + [anon_sym__] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(971), + [anon_sym_DASH_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_async] = ACTIONS(969), + [anon_sym_await] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_gen] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_impl] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_mod] = ACTIONS(969), + [anon_sym_pub] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_static] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_trait] = ACTIONS(969), + [anon_sym_type] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_unsafe] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_where] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [sym_mutable_specifier] = ACTIONS(969), + [sym_integer_literal] = ACTIONS(971), + [aux_sym_string_literal_token1] = ACTIONS(971), + [sym_char_literal] = ACTIONS(971), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(969), + [sym_super] = ACTIONS(969), + [sym_crate] = ACTIONS(969), + [sym__raw_string_literal_start] = ACTIONS(971), + [sym_float_literal] = ACTIONS(971), }, - [208] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), + [199] = { + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym_identifier] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_u8] = ACTIONS(1033), + [anon_sym_i8] = ACTIONS(1033), + [anon_sym_u16] = ACTIONS(1033), + [anon_sym_i16] = ACTIONS(1033), + [anon_sym_u32] = ACTIONS(1033), + [anon_sym_i32] = ACTIONS(1033), + [anon_sym_u64] = ACTIONS(1033), + [anon_sym_i64] = ACTIONS(1033), + [anon_sym_u128] = ACTIONS(1033), + [anon_sym_i128] = ACTIONS(1033), + [anon_sym_isize] = ACTIONS(1033), + [anon_sym_usize] = ACTIONS(1033), + [anon_sym_f32] = ACTIONS(1033), + [anon_sym_f64] = ACTIONS(1033), + [anon_sym_bool] = ACTIONS(1033), + [anon_sym_str] = ACTIONS(1033), + [anon_sym_char] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_PERCENT] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_PLUS_EQ] = ACTIONS(1035), + [anon_sym_DASH_EQ] = ACTIONS(1035), + [anon_sym_STAR_EQ] = ACTIONS(1035), + [anon_sym_SLASH_EQ] = ACTIONS(1035), + [anon_sym_PERCENT_EQ] = ACTIONS(1035), + [anon_sym_CARET_EQ] = ACTIONS(1035), + [anon_sym_AMP_EQ] = ACTIONS(1035), + [anon_sym_PIPE_EQ] = ACTIONS(1035), + [anon_sym_LT_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_GT_EQ] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_COLON_COLON] = ACTIONS(1035), + [anon_sym_DASH_GT] = ACTIONS(1035), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_async] = ACTIONS(1033), + [anon_sym_await] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_default] = ACTIONS(1033), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_gen] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_impl] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_pub] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1033), + [anon_sym_struct] = ACTIONS(1033), + [anon_sym_trait] = ACTIONS(1033), + [anon_sym_type] = ACTIONS(1033), + [anon_sym_union] = ACTIONS(1033), + [anon_sym_unsafe] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [sym_mutable_specifier] = ACTIONS(1033), + [sym_integer_literal] = ACTIONS(1035), + [aux_sym_string_literal_token1] = ACTIONS(1035), + [sym_char_literal] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1033), + [sym__raw_string_literal_start] = ACTIONS(1035), + [sym_float_literal] = ACTIONS(1035), }, - [209] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [200] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1596), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40302,94 +39635,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [210] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [201] = { + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [sym_identifier] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(899), + [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_DASH] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(899), + [anon_sym_PIPE_PIPE] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_PLUS_EQ] = ACTIONS(899), + [anon_sym_DASH_EQ] = ACTIONS(899), + [anon_sym_STAR_EQ] = ACTIONS(899), + [anon_sym_SLASH_EQ] = ACTIONS(899), + [anon_sym_PERCENT_EQ] = ACTIONS(899), + [anon_sym_CARET_EQ] = ACTIONS(899), + [anon_sym_AMP_EQ] = ACTIONS(899), + [anon_sym_PIPE_EQ] = ACTIONS(899), + [anon_sym_LT_LT_EQ] = ACTIONS(899), + [anon_sym_GT_GT_EQ] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), + [anon_sym__] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_COLON_COLON] = ACTIONS(899), + [anon_sym_DASH_GT] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_as] = ACTIONS(897), + [anon_sym_async] = ACTIONS(897), + [anon_sym_await] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_default] = ACTIONS(897), + [anon_sym_enum] = ACTIONS(897), + [anon_sym_fn] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_gen] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_impl] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_loop] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_pub] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_static] = ACTIONS(897), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_trait] = ACTIONS(897), + [anon_sym_type] = ACTIONS(897), + [anon_sym_union] = ACTIONS(897), + [anon_sym_unsafe] = ACTIONS(897), + [anon_sym_use] = ACTIONS(897), + [anon_sym_where] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [sym_mutable_specifier] = ACTIONS(897), + [sym_integer_literal] = ACTIONS(899), + [aux_sym_string_literal_token1] = ACTIONS(899), + [sym_char_literal] = ACTIONS(899), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(897), + [sym_super] = ACTIONS(897), + [sym_crate] = ACTIONS(897), + [sym__raw_string_literal_start] = ACTIONS(899), + [sym_float_literal] = ACTIONS(899), + }, + [202] = { + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym__] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_DASH_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), + }, + [203] = { + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [sym_identifier] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_EQ_GT] = ACTIONS(993), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(991), + [anon_sym_i8] = ACTIONS(991), + [anon_sym_u16] = ACTIONS(991), + [anon_sym_i16] = ACTIONS(991), + [anon_sym_u32] = ACTIONS(991), + [anon_sym_i32] = ACTIONS(991), + [anon_sym_u64] = ACTIONS(991), + [anon_sym_i64] = ACTIONS(991), + [anon_sym_u128] = ACTIONS(991), + [anon_sym_i128] = ACTIONS(991), + [anon_sym_isize] = ACTIONS(991), + [anon_sym_usize] = ACTIONS(991), + [anon_sym_f32] = ACTIONS(991), + [anon_sym_f64] = ACTIONS(991), + [anon_sym_bool] = ACTIONS(991), + [anon_sym_str] = ACTIONS(991), + [anon_sym_char] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(993), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_PLUS_EQ] = ACTIONS(993), + [anon_sym_DASH_EQ] = ACTIONS(993), + [anon_sym_STAR_EQ] = ACTIONS(993), + [anon_sym_SLASH_EQ] = ACTIONS(993), + [anon_sym_PERCENT_EQ] = ACTIONS(993), + [anon_sym_CARET_EQ] = ACTIONS(993), + [anon_sym_AMP_EQ] = ACTIONS(993), + [anon_sym_PIPE_EQ] = ACTIONS(993), + [anon_sym_LT_LT_EQ] = ACTIONS(993), + [anon_sym_GT_GT_EQ] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(993), + [anon_sym_BANG_EQ] = ACTIONS(993), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(993), + [anon_sym__] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(993), + [anon_sym_COLON_COLON] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_as] = ACTIONS(991), + [anon_sym_async] = ACTIONS(991), + [anon_sym_await] = ACTIONS(991), + [anon_sym_break] = ACTIONS(991), + [anon_sym_const] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(991), + [anon_sym_default] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(991), + [anon_sym_fn] = ACTIONS(991), + [anon_sym_for] = ACTIONS(991), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(991), + [anon_sym_impl] = ACTIONS(991), + [anon_sym_let] = ACTIONS(991), + [anon_sym_loop] = ACTIONS(991), + [anon_sym_match] = ACTIONS(991), + [anon_sym_mod] = ACTIONS(991), + [anon_sym_pub] = ACTIONS(991), + [anon_sym_return] = ACTIONS(991), + [anon_sym_static] = ACTIONS(991), + [anon_sym_struct] = ACTIONS(991), + [anon_sym_trait] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_union] = ACTIONS(991), + [anon_sym_unsafe] = ACTIONS(991), + [anon_sym_use] = ACTIONS(991), + [anon_sym_where] = ACTIONS(991), + [anon_sym_while] = ACTIONS(991), + [sym_mutable_specifier] = ACTIONS(991), + [sym_integer_literal] = ACTIONS(993), + [aux_sym_string_literal_token1] = ACTIONS(993), + [sym_char_literal] = ACTIONS(993), + [anon_sym_true] = ACTIONS(991), + [anon_sym_false] = ACTIONS(991), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(991), + [sym__raw_string_literal_start] = ACTIONS(993), + [sym_float_literal] = ACTIONS(993), + }, + [204] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [205] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [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_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, + [206] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40415,94 +40325,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [211] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [207] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_as] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_gen] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_loop] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_where] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [sym_mutable_specifier] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_crate] = ACTIONS(965), + [sym__raw_string_literal_start] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), + }, + [208] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1640), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40528,94 +40555,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [212] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [209] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u128] = ACTIONS(977), + [anon_sym_i128] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_str] = ACTIONS(977), + [anon_sym_char] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_PERCENT_EQ] = ACTIONS(979), + [anon_sym_CARET_EQ] = ACTIONS(979), + [anon_sym_AMP_EQ] = ACTIONS(979), + [anon_sym_PIPE_EQ] = ACTIONS(979), + [anon_sym_LT_LT_EQ] = ACTIONS(979), + [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym__] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_COLON_COLON] = ACTIONS(979), + [anon_sym_DASH_GT] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_as] = ACTIONS(977), + [anon_sym_async] = ACTIONS(977), + [anon_sym_await] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_gen] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_impl] = ACTIONS(977), + [anon_sym_let] = ACTIONS(977), + [anon_sym_loop] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_mod] = ACTIONS(977), + [anon_sym_pub] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_static] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_trait] = ACTIONS(977), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_unsafe] = ACTIONS(977), + [anon_sym_use] = ACTIONS(977), + [anon_sym_where] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [sym_mutable_specifier] = ACTIONS(977), + [sym_integer_literal] = ACTIONS(979), + [aux_sym_string_literal_token1] = ACTIONS(979), + [sym_char_literal] = ACTIONS(979), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(977), + [sym__raw_string_literal_start] = ACTIONS(979), + [sym_float_literal] = ACTIONS(979), + }, + [210] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40641,94 +40785,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [213] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [211] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1591), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40754,94 +40900,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [214] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [212] = { + [sym_attribute_item] = STATE(1007), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40867,94 +41015,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [213] = { + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1045), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_DASH_GT] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_where] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [sym_mutable_specifier] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [214] = { + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [sym_identifier] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_RBRACK] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(975), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_QMARK] = ACTIONS(975), + [anon_sym_u8] = ACTIONS(973), + [anon_sym_i8] = ACTIONS(973), + [anon_sym_u16] = ACTIONS(973), + [anon_sym_i16] = ACTIONS(973), + [anon_sym_u32] = ACTIONS(973), + [anon_sym_i32] = ACTIONS(973), + [anon_sym_u64] = ACTIONS(973), + [anon_sym_i64] = ACTIONS(973), + [anon_sym_u128] = ACTIONS(973), + [anon_sym_i128] = ACTIONS(973), + [anon_sym_isize] = ACTIONS(973), + [anon_sym_usize] = ACTIONS(973), + [anon_sym_f32] = ACTIONS(973), + [anon_sym_f64] = ACTIONS(973), + [anon_sym_bool] = ACTIONS(973), + [anon_sym_str] = ACTIONS(973), + [anon_sym_char] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(975), + [anon_sym_DASH_EQ] = ACTIONS(975), + [anon_sym_STAR_EQ] = ACTIONS(975), + [anon_sym_SLASH_EQ] = ACTIONS(975), + [anon_sym_PERCENT_EQ] = ACTIONS(975), + [anon_sym_CARET_EQ] = ACTIONS(975), + [anon_sym_AMP_EQ] = ACTIONS(975), + [anon_sym_PIPE_EQ] = ACTIONS(975), + [anon_sym_LT_LT_EQ] = ACTIONS(975), + [anon_sym_GT_GT_EQ] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_AT] = ACTIONS(975), + [anon_sym__] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_DASH_GT] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_async] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_default] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_fn] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_gen] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_pub] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_static] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(973), + [anon_sym_type] = ACTIONS(973), + [anon_sym_union] = ACTIONS(973), + [anon_sym_unsafe] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [sym_mutable_specifier] = ACTIONS(973), + [sym_integer_literal] = ACTIONS(975), + [aux_sym_string_literal_token1] = ACTIONS(975), + [sym_char_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(973), + [sym_super] = ACTIONS(973), + [sym_crate] = ACTIONS(973), + [sym__raw_string_literal_start] = ACTIONS(975), + [sym_float_literal] = ACTIONS(975), }, [215] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1049), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40981,316 +41361,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [216] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1475), [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1429), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym__] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [217] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1494), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1175), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [218] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1063), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41317,92 +41703,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [219] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [aux_sym_tuple_expression_repeat1] = STATE(223), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1065), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41429,428 +41817,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [220] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1728), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1429), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(220), [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [221] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1175), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(221), [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [222] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_u8] = ACTIONS(1078), - [anon_sym_i8] = ACTIONS(1078), - [anon_sym_u16] = ACTIONS(1078), - [anon_sym_i16] = ACTIONS(1078), - [anon_sym_u32] = ACTIONS(1078), - [anon_sym_i32] = ACTIONS(1078), - [anon_sym_u64] = ACTIONS(1078), - [anon_sym_i64] = ACTIONS(1078), - [anon_sym_u128] = ACTIONS(1078), - [anon_sym_i128] = ACTIONS(1078), - [anon_sym_isize] = ACTIONS(1078), - [anon_sym_usize] = ACTIONS(1078), - [anon_sym_f32] = ACTIONS(1078), - [anon_sym_f64] = ACTIONS(1078), - [anon_sym_bool] = ACTIONS(1078), - [anon_sym_str] = ACTIONS(1078), - [anon_sym_char] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1084), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_COLON_COLON] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_union] = ACTIONS(1111), - [anon_sym_unsafe] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_move] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1147), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1147), - [anon_sym_true] = ACTIONS(1153), - [anon_sym_false] = ACTIONS(1153), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1159), - [sym_crate] = ACTIONS(1159), - [sym_metavariable] = ACTIONS(1162), - [sym__raw_string_literal_start] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1147), - }, - [223] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41877,316 +42159,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [224] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [223] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(456), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [225] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(456), + [224] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1175), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [226] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [225] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [aux_sym_tuple_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1174), + [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42213,92 +42501,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [226] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2507), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [227] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_u8] = ACTIONS(1096), + [anon_sym_i8] = ACTIONS(1096), + [anon_sym_u16] = ACTIONS(1096), + [anon_sym_i16] = ACTIONS(1096), + [anon_sym_u32] = ACTIONS(1096), + [anon_sym_i32] = ACTIONS(1096), + [anon_sym_u64] = ACTIONS(1096), + [anon_sym_i64] = ACTIONS(1096), + [anon_sym_u128] = ACTIONS(1096), + [anon_sym_i128] = ACTIONS(1096), + [anon_sym_isize] = ACTIONS(1096), + [anon_sym_usize] = ACTIONS(1096), + [anon_sym_f32] = ACTIONS(1096), + [anon_sym_f64] = ACTIONS(1096), + [anon_sym_bool] = ACTIONS(1096), + [anon_sym_str] = ACTIONS(1096), + [anon_sym_char] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_DOT_DOT] = ACTIONS(1108), + [anon_sym_COLON_COLON] = ACTIONS(1111), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_gen] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_loop] = ACTIONS(1141), + [anon_sym_match] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_unsafe] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1159), + [anon_sym_move] = ACTIONS(1162), + [anon_sym_try] = ACTIONS(1165), + [sym_integer_literal] = ACTIONS(1168), + [aux_sym_string_literal_token1] = ACTIONS(1171), + [sym_char_literal] = ACTIONS(1168), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1183), + [sym__raw_string_literal_start] = ACTIONS(1186), + [sym_float_literal] = ACTIONS(1168), + }, + [228] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [aux_sym_tuple_expression_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42325,90 +42843,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [228] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(334), + [229] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_tuple_expression_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1065), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42427,212 +42949,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [229] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1641), + [230] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1475), [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_let_condition] = STATE(2507), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [230] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(334), + [231] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_let_condition] = STATE(2507), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [232] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1429), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42651,100 +43289,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1051), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [231] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(334), + [233] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1175), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42763,100 +43403,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), + [anon_sym__] = ACTIONS(1057), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [232] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(334), + [234] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_let_condition] = STATE(2507), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [235] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1605), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [236] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42875,100 +43745,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), + [anon_sym__] = ACTIONS(1075), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), + [anon_sym_DASH_GT] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [233] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(334), + [237] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_tuple_expression_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1193), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42987,324 +43861,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [234] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [235] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1634), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [236] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1487), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(334), + [238] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1500), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1429), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43323,214 +43973,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym__] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [237] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1656), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [238] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [aux_sym_tuple_expression_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(334), + [239] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1509), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1182), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43549,990 +44087,783 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [239] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1662), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1184), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [240] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1719), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1670), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1197), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [241] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1673), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1842), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1190), + [anon_sym__] = ACTIONS(1199), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1201), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [242] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1725), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1205), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [243] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1641), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(1475), [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [sym_mutable_specifier] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1207), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [244] = { - [sym_else_clause] = STATE(385), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1194), - [anon_sym_DASH_EQ] = ACTIONS(1194), - [anon_sym_STAR_EQ] = ACTIONS(1194), - [anon_sym_SLASH_EQ] = ACTIONS(1194), - [anon_sym_PERCENT_EQ] = ACTIONS(1194), - [anon_sym_CARET_EQ] = ACTIONS(1194), - [anon_sym_AMP_EQ] = ACTIONS(1194), - [anon_sym_PIPE_EQ] = ACTIONS(1194), - [anon_sym_LT_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_as] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym__raw_string_literal_start] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [245] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [246] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1202), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [247] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44556,1304 +44887,1664 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1213), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [248] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(334), + [247] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1791), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [248] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [249] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [250] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [251] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [252] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [253] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [254] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [255] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [256] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [257] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1641), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1609), + [sym_macro_invocation] = STATE(1475), [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [258] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [259] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [260] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1620), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [261] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45877,93 +46568,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [260] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(334), + [262] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_for_expression] = STATE(465), + [sym_const_block] = STATE(465), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3595), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(465), + [sym_async_block] = STATE(465), + [sym_gen_block] = STATE(465), + [sym_try_block] = STATE(465), + [sym_block] = STATE(465), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1217), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45990,200 +46683,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1219), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1221), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_gen] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [261] = { - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [263] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [262] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), + [264] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(334), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46210,90 +46907,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [263] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(334), + [265] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46320,1630 +47019,876 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [264] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1659), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [265] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [266] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1641), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1475), [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [267] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1491), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [268] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1448), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [269] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [270] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [271] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [272] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [273] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [274] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [275] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [276] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [277] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [278] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47967,1963 +47912,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [279] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(334), + [274] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [280] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [281] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [282] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1630), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [283] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [284] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [285] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [286] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [287] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [288] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [289] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [290] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [291] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [292] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1615), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [293] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [294] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1616), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [295] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [296] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(334), + [275] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1492), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49947,203 +48136,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [297] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [298] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(334), + [276] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1493), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50167,93 +48248,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [299] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(334), + [277] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1488), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50277,93 +48360,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [300] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(334), + [278] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50387,203 +48472,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [301] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [279] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [302] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(334), + [280] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50610,90 +48699,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [303] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(334), + [281] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50717,93 +48808,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [304] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(334), + [282] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50827,93 +48920,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [305] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1485), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(334), + [283] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50937,93 +49032,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [306] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1486), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(334), + [284] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(456), + [sym_match_expression] = STATE(456), + [sym_while_expression] = STATE(456), + [sym_loop_expression] = STATE(456), + [sym_for_expression] = STATE(456), + [sym_const_block] = STATE(456), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3595), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(456), + [sym_async_block] = STATE(456), + [sym_gen_block] = STATE(456), + [sym_try_block] = STATE(456), + [sym_block] = STATE(456), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1217), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51047,203 +49144,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1219), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1221), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_gen] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [307] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1641), + [285] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1475), [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [308] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(334), + [286] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51270,90 +49371,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [309] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(334), + [287] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51380,200 +49483,764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [310] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(456), + [288] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1448), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [311] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(334), + [289] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [290] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1414), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [291] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [292] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [293] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [294] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51600,200 +50267,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [312] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(456), + [295] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [313] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(334), + [296] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [297] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51820,90 +50603,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [314] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1488), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(334), + [298] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51927,95 +50712,993 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [315] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1490), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), + [299] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [300] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [301] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [302] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [303] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [304] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1812), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [305] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [306] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [307] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1490), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), [anon_sym_i16] = ACTIONS(23), @@ -52037,93 +51720,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [316] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(334), + [308] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1448), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [309] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52147,93 +51944,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [317] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(334), + [310] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52260,90 +52059,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [318] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(334), + [311] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52370,90 +52171,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [319] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_identifier] = ACTIONS(334), + [312] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52477,93 +52280,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [320] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(334), + [313] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52590,90 +52395,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [321] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(334), + [314] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(456), + [sym_match_expression] = STATE(456), + [sym_while_expression] = STATE(456), + [sym_loop_expression] = STATE(456), + [sym_for_expression] = STATE(456), + [sym_const_block] = STATE(456), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3595), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(456), + [sym_async_block] = STATE(456), + [sym_gen_block] = STATE(456), + [sym_try_block] = STATE(456), + [sym_block] = STATE(456), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1217), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52700,90 +52507,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1219), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1221), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_gen] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [322] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(334), + [315] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52810,310 +52619,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [323] = { - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, - [324] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [325] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1500), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(334), + [316] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53137,93 +52728,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [326] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(334), + [317] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53247,93 +52840,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [327] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1494), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(334), + [318] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [319] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [320] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53357,93 +53176,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [328] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1503), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(334), + [321] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1414), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53467,93 +53288,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [329] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(334), + [322] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1507), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53577,93 +53400,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [330] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(334), + [323] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1508), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53687,93 +53512,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [331] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(334), + [324] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53797,93 +53624,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [332] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(334), + [325] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1414), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [326] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53910,90 +53851,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [333] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(334), + [327] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54020,90 +53963,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [334] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(334), + [328] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54130,90 +54075,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [335] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(334), + [329] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_for_expression] = STATE(465), + [sym_const_block] = STATE(465), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3595), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(465), + [sym_async_block] = STATE(465), + [sym_gen_block] = STATE(465), + [sym_try_block] = STATE(465), + [sym_block] = STATE(465), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1217), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54240,200 +54187,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1219), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1221), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_gen] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [336] = { - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [330] = { + [sym_else_clause] = STATE(379), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_macro_rules_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1241), + [anon_sym_i8] = ACTIONS(1241), + [anon_sym_u16] = ACTIONS(1241), + [anon_sym_i16] = ACTIONS(1241), + [anon_sym_u32] = ACTIONS(1241), + [anon_sym_i32] = ACTIONS(1241), + [anon_sym_u64] = ACTIONS(1241), + [anon_sym_i64] = ACTIONS(1241), + [anon_sym_u128] = ACTIONS(1241), + [anon_sym_i128] = ACTIONS(1241), + [anon_sym_isize] = ACTIONS(1241), + [anon_sym_usize] = ACTIONS(1241), + [anon_sym_f32] = ACTIONS(1241), + [anon_sym_f64] = ACTIONS(1241), + [anon_sym_bool] = ACTIONS(1241), + [anon_sym_str] = ACTIONS(1241), + [anon_sym_char] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_PERCENT] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_impl] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_pub] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_trait] = ACTIONS(1241), + [anon_sym_type] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_unsafe] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_move] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1239), + [aux_sym_string_literal_token1] = ACTIONS(1239), + [sym_char_literal] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_crate] = ACTIONS(1241), + [sym_metavariable] = ACTIONS(1239), + [sym__raw_string_literal_start] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1239), }, - [337] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(334), + [331] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [332] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1595), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [333] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54460,200 +54635,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [338] = { - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [339] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(334), + [334] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54677,93 +54744,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [340] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(334), + [335] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54790,310 +54859,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [341] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [342] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(456), + [336] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [343] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(334), + [337] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55120,310 +55083,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [344] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(334), + [338] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1597), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [345] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [339] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [346] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(334), + [340] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55450,200 +55419,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [347] = { - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [348] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(334), + [341] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55670,90 +55531,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [349] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(334), + [342] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55780,90 +55643,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [350] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(334), + [343] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55890,90 +55755,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [351] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(334), + [344] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56000,90 +55867,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [352] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(334), + [345] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56110,90 +55979,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [353] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(334), + [346] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1562), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [347] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56220,200 +56203,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [354] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [355] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(334), + [348] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56440,90 +56315,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [356] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(334), + [349] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56550,90 +56427,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [357] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(334), + [350] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56660,90 +56539,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [358] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(334), + [351] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56770,90 +56651,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [359] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(334), + [352] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56880,310 +56763,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [360] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(456), + [353] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [361] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), + [354] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1599), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [355] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1565), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [356] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(456), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [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_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(501), + [anon_sym_move] = ACTIONS(503), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [362] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(334), + [357] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57210,28444 +57323,31343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [358] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [359] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [360] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [361] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1690), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [362] = { + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1568), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [363] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1744), + [sym_generic_type_with_turbofish] = STATE(2916), + [sym__expression_except_range] = STATE(1616), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1731), + [sym_scoped_identifier] = STATE(1573), + [sym_scoped_type_identifier_in_expression_position] = STATE(3326), + [sym_range_expression] = STATE(1647), + [sym_unary_expression] = STATE(1744), + [sym_try_expression] = STATE(1744), + [sym_reference_expression] = STATE(1744), + [sym_binary_expression] = STATE(1744), + [sym_assignment_expression] = STATE(1744), + [sym_compound_assignment_expr] = STATE(1744), + [sym_type_cast_expression] = STATE(1744), + [sym_return_expression] = STATE(1744), + [sym_yield_expression] = STATE(1744), + [sym_call_expression] = STATE(1744), + [sym_array_expression] = STATE(1744), + [sym_parenthesized_expression] = STATE(1744), + [sym_tuple_expression] = STATE(1744), + [sym_unit_expression] = STATE(1744), + [sym_struct_expression] = STATE(1744), + [sym_if_expression] = STATE(1744), + [sym_match_expression] = STATE(1744), + [sym_while_expression] = STATE(1744), + [sym_loop_expression] = STATE(1744), + [sym_for_expression] = STATE(1744), + [sym_const_block] = STATE(1744), + [sym_closure_expression] = STATE(1744), + [sym_closure_parameters] = STATE(240), + [sym_label] = STATE(3601), + [sym_break_expression] = STATE(1744), + [sym_continue_expression] = STATE(1744), + [sym_index_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_field_expression] = STATE(1581), + [sym_unsafe_block] = STATE(1744), + [sym_async_block] = STATE(1744), + [sym_gen_block] = STATE(1744), + [sym_try_block] = STATE(1744), + [sym_block] = STATE(1744), + [sym__literal] = STATE(1744), + [sym_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1021), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [364] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2930), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1569), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(911), + [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_DASH] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(913), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [365] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3343), + [sym_generic_function] = STATE(1423), + [sym_generic_type_with_turbofish] = STATE(2782), + [sym__expression_except_range] = STATE(1083), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1475), + [sym_scoped_identifier] = STATE(1461), + [sym_scoped_type_identifier_in_expression_position] = STATE(3214), + [sym_range_expression] = STATE(1458), + [sym_unary_expression] = STATE(1423), + [sym_try_expression] = STATE(1423), + [sym_reference_expression] = STATE(1423), + [sym_binary_expression] = STATE(1423), + [sym_assignment_expression] = STATE(1423), + [sym_compound_assignment_expr] = STATE(1423), + [sym_type_cast_expression] = STATE(1423), + [sym_return_expression] = STATE(1423), + [sym_yield_expression] = STATE(1423), + [sym_call_expression] = STATE(1423), + [sym_array_expression] = STATE(1423), + [sym_parenthesized_expression] = STATE(1423), + [sym_tuple_expression] = STATE(1423), + [sym_unit_expression] = STATE(1423), + [sym_struct_expression] = STATE(1423), + [sym_if_expression] = STATE(1423), + [sym_match_expression] = STATE(1423), + [sym_while_expression] = STATE(1423), + [sym_loop_expression] = STATE(1423), + [sym_for_expression] = STATE(1423), + [sym_const_block] = STATE(1423), + [sym_closure_expression] = STATE(1423), + [sym_closure_parameters] = STATE(238), + [sym_label] = STATE(3552), + [sym_break_expression] = STATE(1423), + [sym_continue_expression] = STATE(1423), + [sym_index_expression] = STATE(1423), + [sym_await_expression] = STATE(1423), + [sym_field_expression] = STATE(1068), + [sym_unsafe_block] = STATE(1423), + [sym_async_block] = STATE(1423), + [sym_gen_block] = STATE(1423), + [sym_try_block] = STATE(1423), + [sym_block] = STATE(1423), + [sym__literal] = STATE(1423), + [sym_string_literal] = STATE(1439), + [sym_raw_string_literal] = STATE(1439), + [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [366] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_macro_rules_BANG] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_u8] = ACTIONS(1247), + [anon_sym_i8] = ACTIONS(1247), + [anon_sym_u16] = ACTIONS(1247), + [anon_sym_i16] = ACTIONS(1247), + [anon_sym_u32] = ACTIONS(1247), + [anon_sym_i32] = ACTIONS(1247), + [anon_sym_u64] = ACTIONS(1247), + [anon_sym_i64] = ACTIONS(1247), + [anon_sym_u128] = ACTIONS(1247), + [anon_sym_i128] = ACTIONS(1247), + [anon_sym_isize] = ACTIONS(1247), + [anon_sym_usize] = ACTIONS(1247), + [anon_sym_f32] = ACTIONS(1247), + [anon_sym_f64] = ACTIONS(1247), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_str] = ACTIONS(1247), + [anon_sym_char] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1245), + [anon_sym_DASH_EQ] = ACTIONS(1245), + [anon_sym_STAR_EQ] = ACTIONS(1245), + [anon_sym_SLASH_EQ] = ACTIONS(1245), + [anon_sym_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_CARET_EQ] = ACTIONS(1245), + [anon_sym_AMP_EQ] = ACTIONS(1245), + [anon_sym_PIPE_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_as] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_fn] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_gen] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_impl] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1247), + [anon_sym_loop] = ACTIONS(1247), + [anon_sym_match] = ACTIONS(1247), + [anon_sym_mod] = ACTIONS(1247), + [anon_sym_pub] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_trait] = ACTIONS(1247), + [anon_sym_type] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_unsafe] = ACTIONS(1247), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_move] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1247), + [sym_integer_literal] = ACTIONS(1245), + [aux_sym_string_literal_token1] = ACTIONS(1245), + [sym_char_literal] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1247), + [sym_super] = ACTIONS(1247), + [sym_crate] = ACTIONS(1247), + [sym_metavariable] = ACTIONS(1245), + [sym__raw_string_literal_start] = ACTIONS(1245), + [sym_float_literal] = ACTIONS(1245), }, [367] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_macro_rules_BANG] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u128] = ACTIONS(1251), + [anon_sym_i128] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_str] = ACTIONS(1251), + [anon_sym_char] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_fn] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_gen] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_impl] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_mod] = ACTIONS(1251), + [anon_sym_pub] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_trait] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_unsafe] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [sym_integer_literal] = ACTIONS(1249), + [aux_sym_string_literal_token1] = ACTIONS(1249), + [sym_char_literal] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1251), + [sym_super] = ACTIONS(1251), + [sym_crate] = ACTIONS(1251), + [sym_metavariable] = ACTIONS(1249), + [sym__raw_string_literal_start] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1249), }, [368] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_macro_rules_BANG] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u128] = ACTIONS(1255), + [anon_sym_i128] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_str] = ACTIONS(1255), + [anon_sym_char] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_async] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_gen] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_impl] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_pub] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_trait] = ACTIONS(1255), + [anon_sym_type] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_unsafe] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_move] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1253), + [aux_sym_string_literal_token1] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1255), + [sym_super] = ACTIONS(1255), + [sym_crate] = ACTIONS(1255), + [sym_metavariable] = ACTIONS(1253), + [sym__raw_string_literal_start] = ACTIONS(1253), + [sym_float_literal] = ACTIONS(1253), }, [369] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_macro_rules_BANG] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [370] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [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_yield_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_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_macro_rules_BANG] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_as] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_gen] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_impl] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1263), + [anon_sym_loop] = ACTIONS(1263), + [anon_sym_match] = ACTIONS(1263), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_pub] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_trait] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_unsafe] = ACTIONS(1263), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_yield] = ACTIONS(1263), + [anon_sym_move] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_crate] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), }, [371] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1276), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_macro_rules_BANG] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_gen] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_impl] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_loop] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_pub] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_trait] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_unsafe] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_move] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), }, [372] = { [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_as] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), - [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_macro_rules_BANG] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_async] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_gen] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_impl] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_pub] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_trait] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_unsafe] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_move] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_crate] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), }, [373] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2798), - [sym_variadic_parameter] = STATE(2798), - [sym_parameter] = STATE(2798), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2610), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_macro_rules_BANG] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_u8] = ACTIONS(1275), + [anon_sym_i8] = ACTIONS(1275), + [anon_sym_u16] = ACTIONS(1275), + [anon_sym_i16] = ACTIONS(1275), + [anon_sym_u32] = ACTIONS(1275), + [anon_sym_i32] = ACTIONS(1275), + [anon_sym_u64] = ACTIONS(1275), + [anon_sym_i64] = ACTIONS(1275), + [anon_sym_u128] = ACTIONS(1275), + [anon_sym_i128] = ACTIONS(1275), + [anon_sym_isize] = ACTIONS(1275), + [anon_sym_usize] = ACTIONS(1275), + [anon_sym_f32] = ACTIONS(1275), + [anon_sym_f64] = ACTIONS(1275), + [anon_sym_bool] = ACTIONS(1275), + [anon_sym_str] = ACTIONS(1275), + [anon_sym_char] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1273), + [anon_sym_POUND] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_fn] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_pub] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_trait] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_yield] = ACTIONS(1275), + [anon_sym_move] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1273), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1275), + [sym_super] = ACTIONS(1275), + [sym_crate] = ACTIONS(1275), + [sym_metavariable] = ACTIONS(1273), + [sym__raw_string_literal_start] = ACTIONS(1273), + [sym_float_literal] = ACTIONS(1273), }, [374] = { [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(991), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_macro_rules_BANG] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_extern] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(989), - [anon_sym_move] = ACTIONS(989), - [anon_sym_try] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym_metavariable] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_macro_rules_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), + [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_DASH] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_PERCENT] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_LT_LT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_PLUS_EQ] = ACTIONS(1277), + [anon_sym_DASH_EQ] = ACTIONS(1277), + [anon_sym_STAR_EQ] = ACTIONS(1277), + [anon_sym_SLASH_EQ] = ACTIONS(1277), + [anon_sym_PERCENT_EQ] = ACTIONS(1277), + [anon_sym_CARET_EQ] = ACTIONS(1277), + [anon_sym_AMP_EQ] = ACTIONS(1277), + [anon_sym_PIPE_EQ] = ACTIONS(1277), + [anon_sym_LT_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_GT_EQ] = ACTIONS(1277), + [anon_sym_EQ] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_async] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_fn] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_gen] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_impl] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_mod] = ACTIONS(1279), + [anon_sym_pub] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_trait] = ACTIONS(1279), + [anon_sym_type] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_unsafe] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_move] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [sym_integer_literal] = ACTIONS(1277), + [aux_sym_string_literal_token1] = ACTIONS(1277), + [sym_char_literal] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1279), + [sym_crate] = ACTIONS(1279), + [sym_metavariable] = ACTIONS(1277), + [sym__raw_string_literal_start] = ACTIONS(1277), + [sym_float_literal] = ACTIONS(1277), }, [375] = { [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(987), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_macro_rules_BANG] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_extern] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_move] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym_metavariable] = ACTIONS(987), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), + [ts_builtin_sym_end] = ACTIONS(1035), + [sym_identifier] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_macro_rules_BANG] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_u8] = ACTIONS(1033), + [anon_sym_i8] = ACTIONS(1033), + [anon_sym_u16] = ACTIONS(1033), + [anon_sym_i16] = ACTIONS(1033), + [anon_sym_u32] = ACTIONS(1033), + [anon_sym_i32] = ACTIONS(1033), + [anon_sym_u64] = ACTIONS(1033), + [anon_sym_i64] = ACTIONS(1033), + [anon_sym_u128] = ACTIONS(1033), + [anon_sym_i128] = ACTIONS(1033), + [anon_sym_isize] = ACTIONS(1033), + [anon_sym_usize] = ACTIONS(1033), + [anon_sym_f32] = ACTIONS(1033), + [anon_sym_f64] = ACTIONS(1033), + [anon_sym_bool] = ACTIONS(1033), + [anon_sym_str] = ACTIONS(1033), + [anon_sym_char] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_PERCENT] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_PLUS_EQ] = ACTIONS(1035), + [anon_sym_DASH_EQ] = ACTIONS(1035), + [anon_sym_STAR_EQ] = ACTIONS(1035), + [anon_sym_SLASH_EQ] = ACTIONS(1035), + [anon_sym_PERCENT_EQ] = ACTIONS(1035), + [anon_sym_CARET_EQ] = ACTIONS(1035), + [anon_sym_AMP_EQ] = ACTIONS(1035), + [anon_sym_PIPE_EQ] = ACTIONS(1035), + [anon_sym_LT_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_GT_EQ] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_COLON_COLON] = ACTIONS(1035), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_async] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_default] = ACTIONS(1033), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_gen] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_impl] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_pub] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1033), + [anon_sym_struct] = ACTIONS(1033), + [anon_sym_trait] = ACTIONS(1033), + [anon_sym_type] = ACTIONS(1033), + [anon_sym_union] = ACTIONS(1033), + [anon_sym_unsafe] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_yield] = ACTIONS(1033), + [anon_sym_move] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [sym_integer_literal] = ACTIONS(1035), + [aux_sym_string_literal_token1] = ACTIONS(1035), + [sym_char_literal] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1033), + [sym_metavariable] = ACTIONS(1035), + [sym__raw_string_literal_start] = ACTIONS(1035), + [sym_float_literal] = ACTIONS(1035), }, [376] = { [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_as] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_macro_rules_BANG] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1281), + [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_DASH] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_COLON_COLON] = ACTIONS(1281), + [anon_sym_POUND] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_fn] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_gen] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_impl] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_pub] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_trait] = ACTIONS(1283), + [anon_sym_type] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_unsafe] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_move] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(1281), + [aux_sym_string_literal_token1] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_crate] = ACTIONS(1283), + [sym_metavariable] = ACTIONS(1281), + [sym__raw_string_literal_start] = ACTIONS(1281), + [sym_float_literal] = ACTIONS(1281), }, [377] = { [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_macro_rules_BANG] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_u8] = ACTIONS(1287), + [anon_sym_i8] = ACTIONS(1287), + [anon_sym_u16] = ACTIONS(1287), + [anon_sym_i16] = ACTIONS(1287), + [anon_sym_u32] = ACTIONS(1287), + [anon_sym_i32] = ACTIONS(1287), + [anon_sym_u64] = ACTIONS(1287), + [anon_sym_i64] = ACTIONS(1287), + [anon_sym_u128] = ACTIONS(1287), + [anon_sym_i128] = ACTIONS(1287), + [anon_sym_isize] = ACTIONS(1287), + [anon_sym_usize] = ACTIONS(1287), + [anon_sym_f32] = ACTIONS(1287), + [anon_sym_f64] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_str] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1289), + [anon_sym_GT_GT] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1291), + [anon_sym_DASH_EQ] = ACTIONS(1291), + [anon_sym_STAR_EQ] = ACTIONS(1291), + [anon_sym_SLASH_EQ] = ACTIONS(1291), + [anon_sym_PERCENT_EQ] = ACTIONS(1291), + [anon_sym_CARET_EQ] = ACTIONS(1291), + [anon_sym_AMP_EQ] = ACTIONS(1291), + [anon_sym_PIPE_EQ] = ACTIONS(1291), + [anon_sym_LT_LT_EQ] = ACTIONS(1291), + [anon_sym_GT_GT_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), + [anon_sym_COLON_COLON] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1289), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_gen] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_impl] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_pub] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_trait] = ACTIONS(1287), + [anon_sym_type] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_unsafe] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_yield] = ACTIONS(1287), + [anon_sym_move] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1285), + [aux_sym_string_literal_token1] = ACTIONS(1285), + [sym_char_literal] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1287), + [sym_super] = ACTIONS(1287), + [sym_crate] = ACTIONS(1287), + [sym_metavariable] = ACTIONS(1285), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1285), }, [378] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(378), [sym_block_comment] = STATE(378), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [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_LBRACK] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_PERCENT_EQ] = ACTIONS(1293), + [anon_sym_CARET_EQ] = ACTIONS(1293), + [anon_sym_AMP_EQ] = ACTIONS(1293), + [anon_sym_PIPE_EQ] = ACTIONS(1293), + [anon_sym_LT_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1293), + [anon_sym_BANG_EQ] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1295), + [anon_sym_yield] = ACTIONS(1295), + [anon_sym_move] = ACTIONS(1295), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1293), + [sym__raw_string_literal_start] = ACTIONS(1293), + [sym_float_literal] = ACTIONS(1293), }, [379] = { [sym_line_comment] = STATE(379), [sym_block_comment] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_macro_rules_BANG] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_as] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsafe] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym__raw_string_literal_start] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [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_LBRACK] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1299), + [anon_sym_yield] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1299), + [sym_super] = ACTIONS(1299), + [sym_crate] = ACTIONS(1299), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), }, [380] = { [sym_line_comment] = STATE(380), [sym_block_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_macro_rules_BANG] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_unsafe] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [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_LBRACK] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_PERCENT] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_LT_LT] = ACTIONS(1303), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1301), + [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_STAR_EQ] = ACTIONS(1301), + [anon_sym_SLASH_EQ] = ACTIONS(1301), + [anon_sym_PERCENT_EQ] = ACTIONS(1301), + [anon_sym_CARET_EQ] = ACTIONS(1301), + [anon_sym_AMP_EQ] = ACTIONS(1301), + [anon_sym_PIPE_EQ] = ACTIONS(1301), + [anon_sym_LT_LT_EQ] = ACTIONS(1301), + [anon_sym_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1303), + [sym_super] = ACTIONS(1303), + [sym_crate] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym__raw_string_literal_start] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), }, [381] = { [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_macro_rules_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_macro_rules_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1047), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), }, [382] = { [sym_line_comment] = STATE(382), [sym_block_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_macro_rules_BANG] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_type] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [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_LBRACK] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1305), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1307), + [anon_sym_yield] = ACTIONS(1307), + [anon_sym_move] = ACTIONS(1307), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1307), + [sym_super] = ACTIONS(1307), + [sym_crate] = ACTIONS(1307), + [sym_metavariable] = ACTIONS(1305), + [sym__raw_string_literal_start] = ACTIONS(1305), + [sym_float_literal] = ACTIONS(1305), }, [383] = { [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [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_LBRACK] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_move] = ACTIONS(1311), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1309), + [sym_float_literal] = ACTIONS(1309), }, [384] = { [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [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_LBRACK] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1315), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PERCENT] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_LT_LT] = ACTIONS(1315), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_PLUS_EQ] = ACTIONS(1313), + [anon_sym_DASH_EQ] = ACTIONS(1313), + [anon_sym_STAR_EQ] = ACTIONS(1313), + [anon_sym_SLASH_EQ] = ACTIONS(1313), + [anon_sym_PERCENT_EQ] = ACTIONS(1313), + [anon_sym_CARET_EQ] = ACTIONS(1313), + [anon_sym_AMP_EQ] = ACTIONS(1313), + [anon_sym_PIPE_EQ] = ACTIONS(1313), + [anon_sym_LT_LT_EQ] = ACTIONS(1313), + [anon_sym_GT_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1315), + [anon_sym_yield] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1313), + [sym_float_literal] = ACTIONS(1313), }, [385] = { [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [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_LBRACK] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_LT_LT] = ACTIONS(1319), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_PERCENT_EQ] = ACTIONS(1317), + [anon_sym_CARET_EQ] = ACTIONS(1317), + [anon_sym_AMP_EQ] = ACTIONS(1317), + [anon_sym_PIPE_EQ] = ACTIONS(1317), + [anon_sym_LT_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_move] = ACTIONS(1319), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1319), + [sym_crate] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), }, [386] = { [sym_line_comment] = STATE(386), [sym_block_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [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_LBRACK] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_move] = ACTIONS(1323), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1321), + [sym_float_literal] = ACTIONS(1321), }, [387] = { [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(1396), - [anon_sym_async] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_mod] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_type] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [anon_sym_try] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym__raw_string_literal_start] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_macro_rules_BANG] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_QMARK] = ACTIONS(1291), + [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_DASH] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1289), + [anon_sym_GT_GT] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1291), + [anon_sym_DASH_EQ] = ACTIONS(1291), + [anon_sym_STAR_EQ] = ACTIONS(1291), + [anon_sym_SLASH_EQ] = ACTIONS(1291), + [anon_sym_PERCENT_EQ] = ACTIONS(1291), + [anon_sym_CARET_EQ] = ACTIONS(1291), + [anon_sym_AMP_EQ] = ACTIONS(1291), + [anon_sym_PIPE_EQ] = ACTIONS(1291), + [anon_sym_LT_LT_EQ] = ACTIONS(1291), + [anon_sym_GT_GT_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1289), + [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_gen] = 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_extern] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_move] = ACTIONS(1327), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1325), + [sym_float_literal] = ACTIONS(1325), }, [388] = { [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_STAR_EQ] = ACTIONS(1398), - [anon_sym_SLASH_EQ] = ACTIONS(1398), - [anon_sym_PERCENT_EQ] = ACTIONS(1398), - [anon_sym_CARET_EQ] = ACTIONS(1398), - [anon_sym_AMP_EQ] = ACTIONS(1398), - [anon_sym_PIPE_EQ] = ACTIONS(1398), - [anon_sym_LT_LT_EQ] = ACTIONS(1398), - [anon_sym_GT_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_as] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [anon_sym_try] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym__raw_string_literal_start] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [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_LBRACK] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1331), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_PERCENT_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1331), + [anon_sym_yield] = ACTIONS(1331), + [anon_sym_move] = ACTIONS(1331), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1331), + [sym_super] = ACTIONS(1331), + [sym_crate] = ACTIONS(1331), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), }, [389] = { [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_macro_rules_BANG] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_async] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_mod] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [anon_sym_try] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym__raw_string_literal_start] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [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_LBRACK] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_move] = ACTIONS(1335), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), }, [390] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2751), - [sym_variadic_parameter] = STATE(2751), - [sym_parameter] = STATE(2751), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2526), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [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_LBRACK] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1339), + [anon_sym_move] = ACTIONS(1339), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1339), + [sym_super] = ACTIONS(1339), + [sym_crate] = ACTIONS(1339), + [sym_metavariable] = ACTIONS(1337), + [sym__raw_string_literal_start] = ACTIONS(1337), + [sym_float_literal] = ACTIONS(1337), }, [391] = { [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_macro_rules_BANG] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u128] = ACTIONS(1414), - [anon_sym_i128] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_str] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_impl] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_pub] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_trait] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_unsafe] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_move] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1412), - [aux_sym_string_literal_token1] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym__raw_string_literal_start] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), + [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_LBRACK] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_PERCENT_EQ] = ACTIONS(1341), + [anon_sym_CARET_EQ] = ACTIONS(1341), + [anon_sym_AMP_EQ] = ACTIONS(1341), + [anon_sym_PIPE_EQ] = ACTIONS(1341), + [anon_sym_LT_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1343), + [anon_sym_yield] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1343), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1343), + [sym_crate] = ACTIONS(1343), + [sym_metavariable] = ACTIONS(1341), + [sym__raw_string_literal_start] = ACTIONS(1341), + [sym_float_literal] = ACTIONS(1341), }, [392] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_macro_rules_BANG] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_impl] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_pub] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_trait] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_unsafe] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_move] = ACTIONS(1422), - [anon_sym_try] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), + [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_LBRACK] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1347), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_PLUS_EQ] = ACTIONS(1345), + [anon_sym_DASH_EQ] = ACTIONS(1345), + [anon_sym_STAR_EQ] = ACTIONS(1345), + [anon_sym_SLASH_EQ] = ACTIONS(1345), + [anon_sym_PERCENT_EQ] = ACTIONS(1345), + [anon_sym_CARET_EQ] = ACTIONS(1345), + [anon_sym_AMP_EQ] = ACTIONS(1345), + [anon_sym_PIPE_EQ] = ACTIONS(1345), + [anon_sym_LT_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_GT_EQ] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), + [anon_sym_COLON_COLON] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1347), + [anon_sym_yield] = ACTIONS(1347), + [anon_sym_move] = ACTIONS(1347), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1347), + [sym_super] = ACTIONS(1347), + [sym_crate] = ACTIONS(1347), + [sym_metavariable] = ACTIONS(1345), + [sym__raw_string_literal_start] = ACTIONS(1345), + [sym_float_literal] = ACTIONS(1345), }, [393] = { [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [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_LBRACK] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_move] = ACTIONS(1351), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1349), + [sym__raw_string_literal_start] = ACTIONS(1349), + [sym_float_literal] = ACTIONS(1349), }, [394] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [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_LBRACK] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_PLUS_EQ] = ACTIONS(1353), + [anon_sym_DASH_EQ] = ACTIONS(1353), + [anon_sym_STAR_EQ] = ACTIONS(1353), + [anon_sym_SLASH_EQ] = ACTIONS(1353), + [anon_sym_PERCENT_EQ] = ACTIONS(1353), + [anon_sym_CARET_EQ] = ACTIONS(1353), + [anon_sym_AMP_EQ] = ACTIONS(1353), + [anon_sym_PIPE_EQ] = ACTIONS(1353), + [anon_sym_LT_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_GT_EQ] = ACTIONS(1353), + [anon_sym_EQ] = ACTIONS(1355), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1355), + [anon_sym_move] = ACTIONS(1355), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1355), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1353), + [sym_float_literal] = ACTIONS(1353), }, [395] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [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_LBRACK] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1359), + [anon_sym_yield] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1357), + [sym_float_literal] = ACTIONS(1357), }, [396] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3010), + [sym_variadic_parameter] = STATE(3010), + [sym_parameter] = STATE(3010), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2726), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2411), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [397] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3010), + [sym_variadic_parameter] = STATE(3010), + [sym_parameter] = STATE(3010), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2726), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2411), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1444), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_as] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [anon_sym_try] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym__raw_string_literal_start] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [398] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3010), + [sym_variadic_parameter] = STATE(3010), + [sym_parameter] = STATE(3010), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2726), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2411), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [399] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3010), + [sym_variadic_parameter] = STATE(3010), + [sym_parameter] = STATE(3010), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2726), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [400] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(418), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(2860), + [sym_variadic_parameter] = STATE(2860), + [sym_parameter] = STATE(2860), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2516), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [401] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(419), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(2827), + [sym_variadic_parameter] = STATE(2827), + [sym_parameter] = STATE(2827), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2614), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [402] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_macro_rules_BANG] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_QMARK] = ACTIONS(1291), + [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_DASH] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1289), + [anon_sym_GT_GT] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1291), + [anon_sym_DASH_EQ] = ACTIONS(1291), + [anon_sym_STAR_EQ] = ACTIONS(1291), + [anon_sym_SLASH_EQ] = ACTIONS(1291), + [anon_sym_PERCENT_EQ] = ACTIONS(1291), + [anon_sym_CARET_EQ] = ACTIONS(1291), + [anon_sym_AMP_EQ] = ACTIONS(1291), + [anon_sym_PIPE_EQ] = ACTIONS(1291), + [anon_sym_LT_LT_EQ] = ACTIONS(1291), + [anon_sym_GT_GT_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1289), + [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_gen] = 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_extern] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_move] = ACTIONS(1327), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1325), + [sym_float_literal] = ACTIONS(1325), }, [403] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [404] = { + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [405] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [406] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [407] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [408] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [409] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [410] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [411] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [412] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2558), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2802), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2539), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [413] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3294), + [sym_variadic_parameter] = STATE(3294), + [sym_parameter] = STATE(3294), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [414] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2883), - [sym_variadic_parameter] = STATE(2883), - [sym_parameter] = STATE(2883), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2555), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2558), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2802), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2539), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [415] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3049), - [sym_variadic_parameter] = STATE(3049), - [sym_parameter] = STATE(3049), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2760), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2558), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2802), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2539), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [416] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2879), - [sym_variadic_parameter] = STATE(2879), - [sym_parameter] = STATE(2879), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2554), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(3285), + [sym_variadic_parameter] = STATE(3285), + [sym_parameter] = STATE(3285), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2761), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [417] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2614), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(2907), + [sym_variadic_parameter] = STATE(2907), + [sym_parameter] = STATE(2907), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2663), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [418] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(2952), + [sym_variadic_parameter] = STATE(2952), + [sym_parameter] = STATE(2952), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2540), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [419] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_self_parameter] = STATE(2841), + [sym_variadic_parameter] = STATE(2841), + [sym_parameter] = STATE(2841), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3013), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3280), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [420] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3021), + [sym_bracketed_type] = STATE(3545), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3288), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2504), + [sym_scoped_identifier] = STATE(2170), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2588), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1549), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [421] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [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_DASH] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1553), + [anon_sym_DASH_EQ] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1553), + [anon_sym_SLASH_EQ] = ACTIONS(1553), + [anon_sym_PERCENT_EQ] = ACTIONS(1553), + [anon_sym_CARET_EQ] = ACTIONS(1553), + [anon_sym_AMP_EQ] = ACTIONS(1553), + [anon_sym_PIPE_EQ] = ACTIONS(1553), + [anon_sym_LT_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_GT_EQ] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_as] = 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_for] = ACTIONS(1551), + [anon_sym_gen] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1551), + [anon_sym_union] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1551), + [anon_sym_move] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), }, [422] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(835), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2097), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1559), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [423] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(835), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2097), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [424] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(837), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2097), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [425] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [426] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [427] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(837), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2097), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [428] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2499), + [sym_scoped_identifier] = STATE(2204), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [429] = { + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(3545), + [sym_lifetime] = STATE(837), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3288), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2504), + [sym_scoped_identifier] = STATE(2170), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2097), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_PLUS_EQ] = ACTIONS(1548), - [anon_sym_DASH_EQ] = ACTIONS(1548), - [anon_sym_STAR_EQ] = ACTIONS(1548), - [anon_sym_SLASH_EQ] = ACTIONS(1548), - [anon_sym_PERCENT_EQ] = ACTIONS(1548), - [anon_sym_CARET_EQ] = ACTIONS(1548), - [anon_sym_AMP_EQ] = ACTIONS(1548), - [anon_sym_PIPE_EQ] = ACTIONS(1548), - [anon_sym_LT_LT_EQ] = ACTIONS(1548), - [anon_sym_GT_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), - [anon_sym_COMMA] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_as] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_else] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1548), - [sym__raw_string_literal_start] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1549), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [430] = { + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3545), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3288), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2504), + [sym_scoped_identifier] = STATE(2170), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [sym_identifier] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_EQ_GT] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_PLUS_EQ] = ACTIONS(1548), - [anon_sym_DASH_EQ] = ACTIONS(1548), - [anon_sym_STAR_EQ] = ACTIONS(1548), - [anon_sym_SLASH_EQ] = ACTIONS(1548), - [anon_sym_PERCENT_EQ] = ACTIONS(1548), - [anon_sym_CARET_EQ] = ACTIONS(1548), - [anon_sym_AMP_EQ] = ACTIONS(1548), - [anon_sym_PIPE_EQ] = ACTIONS(1548), - [anon_sym_LT_LT_EQ] = ACTIONS(1548), - [anon_sym_GT_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_as] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1548), - [sym__raw_string_literal_start] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1549), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [431] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3544), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3284), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(2413), + [sym_scoped_identifier] = STATE(2126), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [sym_identifier] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_u8] = ACTIONS(1550), - [anon_sym_i8] = ACTIONS(1550), - [anon_sym_u16] = ACTIONS(1550), - [anon_sym_i16] = ACTIONS(1550), - [anon_sym_u32] = ACTIONS(1550), - [anon_sym_i32] = ACTIONS(1550), - [anon_sym_u64] = ACTIONS(1550), - [anon_sym_i64] = ACTIONS(1550), - [anon_sym_u128] = ACTIONS(1550), - [anon_sym_i128] = ACTIONS(1550), - [anon_sym_isize] = ACTIONS(1550), - [anon_sym_usize] = ACTIONS(1550), - [anon_sym_f32] = ACTIONS(1550), - [anon_sym_f64] = ACTIONS(1550), - [anon_sym_bool] = ACTIONS(1550), - [anon_sym_str] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_DASH_GT] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_move] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1552), - [sym__raw_string_literal_start] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [432] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [sym_identifier] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_DASH_GT] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1554), - [anon_sym_move] = ACTIONS(1554), - [anon_sym_try] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1556), - [sym__raw_string_literal_start] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_EQ_GT] = ACTIONS(1553), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [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_DASH] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1553), + [anon_sym_DASH_EQ] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1553), + [anon_sym_SLASH_EQ] = ACTIONS(1553), + [anon_sym_PERCENT_EQ] = ACTIONS(1553), + [anon_sym_CARET_EQ] = ACTIONS(1553), + [anon_sym_AMP_EQ] = ACTIONS(1553), + [anon_sym_PIPE_EQ] = ACTIONS(1553), + [anon_sym_LT_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_GT_EQ] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_as] = 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_for] = ACTIONS(1551), + [anon_sym_gen] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1551), + [anon_sym_union] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1551), + [anon_sym_move] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), }, [433] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_u8] = ACTIONS(1575), + [anon_sym_i8] = ACTIONS(1575), + [anon_sym_u16] = ACTIONS(1575), + [anon_sym_i16] = ACTIONS(1575), + [anon_sym_u32] = ACTIONS(1575), + [anon_sym_i32] = ACTIONS(1575), + [anon_sym_u64] = ACTIONS(1575), + [anon_sym_i64] = ACTIONS(1575), + [anon_sym_u128] = ACTIONS(1575), + [anon_sym_i128] = ACTIONS(1575), + [anon_sym_isize] = ACTIONS(1575), + [anon_sym_usize] = ACTIONS(1575), + [anon_sym_f32] = ACTIONS(1575), + [anon_sym_f64] = ACTIONS(1575), + [anon_sym_bool] = ACTIONS(1575), + [anon_sym_str] = ACTIONS(1575), + [anon_sym_char] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym__] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1577), + [anon_sym_DASH_GT] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_gen] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1575), + [anon_sym_union] = ACTIONS(1575), + [anon_sym_unsafe] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1575), + [anon_sym_move] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1577), + [aux_sym_string_literal_token1] = ACTIONS(1577), + [sym_char_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1577), + [sym_float_literal] = ACTIONS(1577), }, [434] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2098), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_u8] = ACTIONS(1579), + [anon_sym_i8] = ACTIONS(1579), + [anon_sym_u16] = ACTIONS(1579), + [anon_sym_i16] = ACTIONS(1579), + [anon_sym_u32] = ACTIONS(1579), + [anon_sym_i32] = ACTIONS(1579), + [anon_sym_u64] = ACTIONS(1579), + [anon_sym_i64] = ACTIONS(1579), + [anon_sym_u128] = ACTIONS(1579), + [anon_sym_i128] = ACTIONS(1579), + [anon_sym_isize] = ACTIONS(1579), + [anon_sym_usize] = ACTIONS(1579), + [anon_sym_f32] = ACTIONS(1579), + [anon_sym_f64] = ACTIONS(1579), + [anon_sym_bool] = ACTIONS(1579), + [anon_sym_str] = ACTIONS(1579), + [anon_sym_char] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym__] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1581), + [anon_sym_COLON_COLON] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_gen] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1579), + [anon_sym_union] = ACTIONS(1579), + [anon_sym_unsafe] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1579), + [anon_sym_move] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1581), + [aux_sym_string_literal_token1] = ACTIONS(1581), + [sym_char_literal] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1579), + [sym_crate] = ACTIONS(1579), + [sym_metavariable] = ACTIONS(1581), + [sym__raw_string_literal_start] = ACTIONS(1581), + [sym_float_literal] = ACTIONS(1581), }, [435] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [436] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [437] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [438] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [439] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1617), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [440] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [441] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [442] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [443] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2300), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2301), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2426), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2426), - [sym__literal] = STATE(2426), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [444] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2345), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2346), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2425), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2425), - [sym__literal] = STATE(2425), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2591), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2591), + [sym__literal] = STATE(2591), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [445] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2352), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2353), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2441), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2441), - [sym__literal] = STATE(2441), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2331), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2333), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2470), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2470), + [sym__literal] = STATE(2470), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [446] = { - [sym_else_clause] = STATE(455), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2388), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2337), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2486), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2486), + [sym__literal] = STATE(2486), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [sym_identifier] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1194), - [anon_sym_DASH_EQ] = ACTIONS(1194), - [anon_sym_STAR_EQ] = ACTIONS(1194), - [anon_sym_SLASH_EQ] = ACTIONS(1194), - [anon_sym_PERCENT_EQ] = ACTIONS(1194), - [anon_sym_CARET_EQ] = ACTIONS(1194), - [anon_sym_AMP_EQ] = ACTIONS(1194), - [anon_sym_PIPE_EQ] = ACTIONS(1194), - [anon_sym_LT_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym__] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_ref] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1602), - [sym_mutable_specifier] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym__raw_string_literal_start] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [447] = { + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2332), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2374), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_type_binding] = STATE(2437), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_label] = STATE(3598), + [sym_block] = STATE(2437), + [sym__literal] = STATE(2437), + [sym_string_literal] = STATE(3004), + [sym_raw_string_literal] = STATE(3004), + [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [sym_identifier] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym__] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_ref] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [sym_mutable_specifier] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1605), }, [448] = { + [sym_else_clause] = STATE(472), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [sym_identifier] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym__] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_ref] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [sym_mutable_specifier] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1241), + [anon_sym_i8] = ACTIONS(1241), + [anon_sym_u16] = ACTIONS(1241), + [anon_sym_i16] = ACTIONS(1241), + [anon_sym_u32] = ACTIONS(1241), + [anon_sym_i32] = ACTIONS(1241), + [anon_sym_u64] = ACTIONS(1241), + [anon_sym_i64] = ACTIONS(1241), + [anon_sym_u128] = ACTIONS(1241), + [anon_sym_i128] = ACTIONS(1241), + [anon_sym_isize] = ACTIONS(1241), + [anon_sym_usize] = ACTIONS(1241), + [anon_sym_f32] = ACTIONS(1241), + [anon_sym_f64] = ACTIONS(1241), + [anon_sym_bool] = ACTIONS(1241), + [anon_sym_str] = ACTIONS(1241), + [anon_sym_char] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_PERCENT] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1239), + [aux_sym_string_literal_token1] = ACTIONS(1239), + [sym_char_literal] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_crate] = ACTIONS(1241), + [sym_metavariable] = ACTIONS(1239), + [sym__raw_string_literal_start] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1239), }, [449] = { [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [sym_identifier] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym__] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_ref] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [sym_mutable_specifier] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym__] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_ref] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1263), + [sym_mutable_specifier] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_crate] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), }, [450] = { [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [sym_identifier] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym__] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_ref] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [sym_mutable_specifier] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_ref] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [sym_mutable_specifier] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [451] = { [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym_identifier] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_ref] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [sym_mutable_specifier] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u128] = ACTIONS(1255), + [anon_sym_i128] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_str] = ACTIONS(1255), + [anon_sym_char] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym__] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_ref] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1255), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1253), + [aux_sym_string_literal_token1] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1255), + [sym_super] = ACTIONS(1255), + [sym_crate] = ACTIONS(1255), + [sym_metavariable] = ACTIONS(1253), + [sym__raw_string_literal_start] = ACTIONS(1253), + [sym_float_literal] = ACTIONS(1253), }, [452] = { [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [sym_identifier] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_ref] = ACTIONS(1364), - [sym_mutable_specifier] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym__raw_string_literal_start] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_u8] = ACTIONS(1247), + [anon_sym_i8] = ACTIONS(1247), + [anon_sym_u16] = ACTIONS(1247), + [anon_sym_i16] = ACTIONS(1247), + [anon_sym_u32] = ACTIONS(1247), + [anon_sym_i32] = ACTIONS(1247), + [anon_sym_u64] = ACTIONS(1247), + [anon_sym_i64] = ACTIONS(1247), + [anon_sym_u128] = ACTIONS(1247), + [anon_sym_i128] = ACTIONS(1247), + [anon_sym_isize] = ACTIONS(1247), + [anon_sym_usize] = ACTIONS(1247), + [anon_sym_f32] = ACTIONS(1247), + [anon_sym_f64] = ACTIONS(1247), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_str] = ACTIONS(1247), + [anon_sym_char] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1245), + [anon_sym_DASH_EQ] = ACTIONS(1245), + [anon_sym_STAR_EQ] = ACTIONS(1245), + [anon_sym_SLASH_EQ] = ACTIONS(1245), + [anon_sym_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_CARET_EQ] = ACTIONS(1245), + [anon_sym_AMP_EQ] = ACTIONS(1245), + [anon_sym_PIPE_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym__] = ACTIONS(1247), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_ref] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [sym_mutable_specifier] = ACTIONS(1247), + [sym_integer_literal] = ACTIONS(1245), + [aux_sym_string_literal_token1] = ACTIONS(1245), + [sym_char_literal] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1247), + [sym_super] = ACTIONS(1247), + [sym_crate] = ACTIONS(1247), + [sym_metavariable] = ACTIONS(1245), + [sym__raw_string_literal_start] = ACTIONS(1245), + [sym_float_literal] = ACTIONS(1245), }, [453] = { [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [sym_identifier] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_ref] = ACTIONS(1430), - [sym_mutable_specifier] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u128] = ACTIONS(1251), + [anon_sym_i128] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_str] = ACTIONS(1251), + [anon_sym_char] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym__] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1251), + [sym_integer_literal] = ACTIONS(1249), + [aux_sym_string_literal_token1] = ACTIONS(1249), + [sym_char_literal] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1251), + [sym_super] = ACTIONS(1251), + [sym_crate] = ACTIONS(1251), + [sym_metavariable] = ACTIONS(1249), + [sym__raw_string_literal_start] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1249), }, [454] = { [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_ref] = ACTIONS(1372), - [sym_mutable_specifier] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym__] = ACTIONS(1359), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1359), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1357), + [sym_float_literal] = ACTIONS(1357), }, [455] = { [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1388), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_ref] = ACTIONS(1388), - [sym_mutable_specifier] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_PERCENT] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_LT_LT] = ACTIONS(1303), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1301), + [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_STAR_EQ] = ACTIONS(1301), + [anon_sym_SLASH_EQ] = ACTIONS(1301), + [anon_sym_PERCENT_EQ] = ACTIONS(1301), + [anon_sym_CARET_EQ] = ACTIONS(1301), + [anon_sym_AMP_EQ] = ACTIONS(1301), + [anon_sym_PIPE_EQ] = ACTIONS(1301), + [anon_sym_LT_LT_EQ] = ACTIONS(1301), + [anon_sym_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym__] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_ref] = ACTIONS(1303), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1303), + [sym_super] = ACTIONS(1303), + [sym_crate] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym__raw_string_literal_start] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), }, [456] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3546), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(478), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1289), + [anon_sym_GT_GT] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1291), + [anon_sym_DASH_EQ] = ACTIONS(1291), + [anon_sym_STAR_EQ] = ACTIONS(1291), + [anon_sym_SLASH_EQ] = ACTIONS(1291), + [anon_sym_PERCENT_EQ] = ACTIONS(1291), + [anon_sym_CARET_EQ] = ACTIONS(1291), + [anon_sym_AMP_EQ] = ACTIONS(1291), + [anon_sym_PIPE_EQ] = ACTIONS(1291), + [anon_sym_LT_LT_EQ] = ACTIONS(1291), + [anon_sym_GT_GT_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1291), + [anon_sym__] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), + [anon_sym_COMMA] = ACTIONS(1291), + [anon_sym_COLON_COLON] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1629), + [sym_mutable_specifier] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [aux_sym_string_literal_token1] = ACTIONS(1631), + [sym_char_literal] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1629), + [sym_super] = ACTIONS(1629), + [sym_crate] = ACTIONS(1629), + [sym_metavariable] = ACTIONS(1631), + [sym__raw_string_literal_start] = ACTIONS(1631), + [sym_float_literal] = ACTIONS(1631), }, [457] = { [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_ref] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1347), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_PLUS_EQ] = ACTIONS(1345), + [anon_sym_DASH_EQ] = ACTIONS(1345), + [anon_sym_STAR_EQ] = ACTIONS(1345), + [anon_sym_SLASH_EQ] = ACTIONS(1345), + [anon_sym_PERCENT_EQ] = ACTIONS(1345), + [anon_sym_CARET_EQ] = ACTIONS(1345), + [anon_sym_AMP_EQ] = ACTIONS(1345), + [anon_sym_PIPE_EQ] = ACTIONS(1345), + [anon_sym_LT_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_GT_EQ] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_COLON_COLON] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1347), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1347), + [sym_super] = ACTIONS(1347), + [sym_crate] = ACTIONS(1347), + [sym_metavariable] = ACTIONS(1345), + [sym__raw_string_literal_start] = ACTIONS(1345), + [sym_float_literal] = ACTIONS(1345), }, [458] = { [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u128] = ACTIONS(1648), - [anon_sym_i128] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_str] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1648), - [anon_sym_ref] = ACTIONS(1648), - [sym_mutable_specifier] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [aux_sym_string_literal_token1] = ACTIONS(1650), - [sym_char_literal] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1648), - [sym_super] = ACTIONS(1648), - [sym_crate] = ACTIONS(1648), - [sym_metavariable] = ACTIONS(1650), - [sym__raw_string_literal_start] = ACTIONS(1650), - [sym_float_literal] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1339), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1339), + [sym_super] = ACTIONS(1339), + [sym_crate] = ACTIONS(1339), + [sym_metavariable] = ACTIONS(1337), + [sym__raw_string_literal_start] = ACTIONS(1337), + [sym_float_literal] = ACTIONS(1337), }, [459] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3568), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_match_block_repeat1] = STATE(475), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym__] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_ref] = ACTIONS(1271), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_crate] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), }, [460] = { [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_STAR_EQ] = ACTIONS(1398), - [anon_sym_SLASH_EQ] = ACTIONS(1398), - [anon_sym_PERCENT_EQ] = ACTIONS(1398), - [anon_sym_CARET_EQ] = ACTIONS(1398), - [anon_sym_AMP_EQ] = ACTIONS(1398), - [anon_sym_PIPE_EQ] = ACTIONS(1398), - [anon_sym_LT_LT_EQ] = ACTIONS(1398), - [anon_sym_GT_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1400), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_ref] = ACTIONS(1400), - [sym_mutable_specifier] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym__raw_string_literal_start] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym__] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_ref] = ACTIONS(1323), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1321), + [sym_float_literal] = ACTIONS(1321), }, [461] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3358), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(477), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1331), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_PERCENT_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym__] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_ref] = ACTIONS(1331), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1331), + [sym_super] = ACTIONS(1331), + [sym_crate] = ACTIONS(1331), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), }, [462] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3416), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_ref] = ACTIONS(1368), - [sym_mutable_specifier] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [aux_sym_match_block_repeat1] = STATE(746), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [463] = { [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym__] = ACTIONS(1404), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_ref] = ACTIONS(1404), - [sym_mutable_specifier] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym__raw_string_literal_start] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1305), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1307), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1307), + [sym_super] = ACTIONS(1307), + [sym_crate] = ACTIONS(1307), + [sym_metavariable] = ACTIONS(1305), + [sym__raw_string_literal_start] = ACTIONS(1305), + [sym_float_literal] = ACTIONS(1305), }, [464] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [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), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1656), - [anon_sym_ref] = ACTIONS(1656), - [sym_mutable_specifier] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [aux_sym_string_literal_token1] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_crate] = ACTIONS(1656), - [sym_metavariable] = ACTIONS(1658), - [sym__raw_string_literal_start] = ACTIONS(1658), - [sym_float_literal] = ACTIONS(1658), + [sym_identifier] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_ref] = ACTIONS(1335), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), }, [465] = { [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1384), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_ref] = ACTIONS(1384), - [sym_mutable_specifier] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_QMARK] = ACTIONS(1291), + [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_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1289), + [anon_sym_GT_GT] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1291), + [anon_sym_DASH_EQ] = ACTIONS(1291), + [anon_sym_STAR_EQ] = ACTIONS(1291), + [anon_sym_SLASH_EQ] = ACTIONS(1291), + [anon_sym_PERCENT_EQ] = ACTIONS(1291), + [anon_sym_CARET_EQ] = ACTIONS(1291), + [anon_sym_AMP_EQ] = ACTIONS(1291), + [anon_sym_PIPE_EQ] = ACTIONS(1291), + [anon_sym_LT_LT_EQ] = ACTIONS(1291), + [anon_sym_GT_GT_EQ] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1677), + [anon_sym_GT_EQ] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1291), + [anon_sym__] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), + [anon_sym_COMMA] = ACTIONS(1291), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_as] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1679), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1677), + [sym_super] = ACTIONS(1677), + [sym_crate] = ACTIONS(1677), + [sym_metavariable] = ACTIONS(1679), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1679), }, [466] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3487), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_ref] = ACTIONS(1422), - [sym_mutable_specifier] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), + [aux_sym_match_block_repeat1] = STATE(738), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1681), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [467] = { [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1452), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_ref] = ACTIONS(1452), - [sym_mutable_specifier] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1311), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1309), + [sym_float_literal] = ACTIONS(1309), }, [468] = { [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_ref] = ACTIONS(1380), - [sym_mutable_specifier] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1281), + [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_DASH] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_COLON_COLON] = ACTIONS(1281), + [anon_sym_POUND] = ACTIONS(1281), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_ref] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(1281), + [aux_sym_string_literal_token1] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_crate] = ACTIONS(1283), + [sym_metavariable] = ACTIONS(1281), + [sym__raw_string_literal_start] = ACTIONS(1281), + [sym_float_literal] = ACTIONS(1281), }, [469] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3383), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [sym_identifier] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_ref] = ACTIONS(1352), - [sym_mutable_specifier] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [aux_sym_match_block_repeat1] = STATE(748), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1683), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [470] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1392), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_ref] = ACTIONS(1392), - [sym_mutable_specifier] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_u8] = ACTIONS(1275), + [anon_sym_i8] = ACTIONS(1275), + [anon_sym_u16] = ACTIONS(1275), + [anon_sym_i16] = ACTIONS(1275), + [anon_sym_u32] = ACTIONS(1275), + [anon_sym_i32] = ACTIONS(1275), + [anon_sym_u64] = ACTIONS(1275), + [anon_sym_i64] = ACTIONS(1275), + [anon_sym_u128] = ACTIONS(1275), + [anon_sym_i128] = ACTIONS(1275), + [anon_sym_isize] = ACTIONS(1275), + [anon_sym_usize] = ACTIONS(1275), + [anon_sym_f32] = ACTIONS(1275), + [anon_sym_f64] = ACTIONS(1275), + [anon_sym_bool] = ACTIONS(1275), + [anon_sym_str] = ACTIONS(1275), + [anon_sym_char] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym__] = ACTIONS(1275), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1273), + [anon_sym_POUND] = ACTIONS(1273), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_ref] = ACTIONS(1275), + [sym_mutable_specifier] = ACTIONS(1275), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1273), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1275), + [sym_super] = ACTIONS(1275), + [sym_crate] = ACTIONS(1275), + [sym_metavariable] = ACTIONS(1273), + [sym__raw_string_literal_start] = ACTIONS(1273), + [sym_float_literal] = ACTIONS(1273), }, [471] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3578), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1396), - [anon_sym_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_ref] = ACTIONS(1396), - [sym_mutable_specifier] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym__raw_string_literal_start] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [aux_sym_match_block_repeat1] = STATE(613), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1685), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [472] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3426), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(476), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym__] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_ref] = ACTIONS(1299), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1299), + [sym_super] = ACTIONS(1299), + [sym_crate] = ACTIONS(1299), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), }, [473] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_ref] = ACTIONS(1376), - [sym_mutable_specifier] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1315), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PERCENT] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_LT_LT] = ACTIONS(1315), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_PLUS_EQ] = ACTIONS(1313), + [anon_sym_DASH_EQ] = ACTIONS(1313), + [anon_sym_STAR_EQ] = ACTIONS(1313), + [anon_sym_SLASH_EQ] = ACTIONS(1313), + [anon_sym_PERCENT_EQ] = ACTIONS(1313), + [anon_sym_CARET_EQ] = ACTIONS(1313), + [anon_sym_AMP_EQ] = ACTIONS(1313), + [anon_sym_PIPE_EQ] = ACTIONS(1313), + [anon_sym_LT_LT_EQ] = ACTIONS(1313), + [anon_sym_GT_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym__] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_as] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_ref] = ACTIONS(1315), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1313), + [sym_float_literal] = ACTIONS(1313), }, [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_ref] = ACTIONS(1426), - [sym_mutable_specifier] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym__] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), }, [475] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3363), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_PLUS_EQ] = ACTIONS(1353), + [anon_sym_DASH_EQ] = ACTIONS(1353), + [anon_sym_STAR_EQ] = ACTIONS(1353), + [anon_sym_SLASH_EQ] = ACTIONS(1353), + [anon_sym_PERCENT_EQ] = ACTIONS(1353), + [anon_sym_CARET_EQ] = ACTIONS(1353), + [anon_sym_AMP_EQ] = ACTIONS(1353), + [anon_sym_PIPE_EQ] = ACTIONS(1353), + [anon_sym_LT_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_GT_EQ] = ACTIONS(1353), + [anon_sym_EQ] = ACTIONS(1355), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1353), + [anon_sym_POUND] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_ref] = ACTIONS(1355), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1355), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1353), + [sym_float_literal] = ACTIONS(1353), }, [476] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3477), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_ref] = ACTIONS(1351), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1349), + [sym__raw_string_literal_start] = ACTIONS(1349), + [sym_float_literal] = ACTIONS(1349), }, [477] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3364), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), + [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_DASH] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_PERCENT] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_LT_LT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_PLUS_EQ] = ACTIONS(1277), + [anon_sym_DASH_EQ] = ACTIONS(1277), + [anon_sym_STAR_EQ] = ACTIONS(1277), + [anon_sym_SLASH_EQ] = ACTIONS(1277), + [anon_sym_PERCENT_EQ] = ACTIONS(1277), + [anon_sym_CARET_EQ] = ACTIONS(1277), + [anon_sym_AMP_EQ] = ACTIONS(1277), + [anon_sym_PIPE_EQ] = ACTIONS(1277), + [anon_sym_LT_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_GT_EQ] = ACTIONS(1277), + [anon_sym_EQ] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1279), + [anon_sym_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(1277), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1279), + [sym_mutable_specifier] = ACTIONS(1279), + [sym_integer_literal] = ACTIONS(1277), + [aux_sym_string_literal_token1] = ACTIONS(1277), + [sym_char_literal] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1279), + [sym_crate] = ACTIONS(1279), + [sym_metavariable] = ACTIONS(1277), + [sym__raw_string_literal_start] = ACTIONS(1277), + [sym_float_literal] = ACTIONS(1277), }, [478] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3405), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_PERCENT_EQ] = ACTIONS(1293), + [anon_sym_CARET_EQ] = ACTIONS(1293), + [anon_sym_AMP_EQ] = ACTIONS(1293), + [anon_sym_PIPE_EQ] = ACTIONS(1293), + [anon_sym_LT_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1293), + [anon_sym_BANG_EQ] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_as] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_ref] = ACTIONS(1295), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1293), + [sym__raw_string_literal_start] = ACTIONS(1293), + [sym_float_literal] = ACTIONS(1293), }, [479] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_identifier] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_macro_rules_BANG] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_RBRACE] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_u8] = ACTIONS(1664), - [anon_sym_i8] = ACTIONS(1664), - [anon_sym_u16] = ACTIONS(1664), - [anon_sym_i16] = ACTIONS(1664), - [anon_sym_u32] = ACTIONS(1664), - [anon_sym_i32] = ACTIONS(1664), - [anon_sym_u64] = ACTIONS(1664), - [anon_sym_i64] = ACTIONS(1664), - [anon_sym_u128] = ACTIONS(1664), - [anon_sym_i128] = ACTIONS(1664), - [anon_sym_isize] = ACTIONS(1664), - [anon_sym_usize] = ACTIONS(1664), - [anon_sym_f32] = ACTIONS(1664), - [anon_sym_f64] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_str] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_PIPE] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1662), - [anon_sym_DOT_DOT] = ACTIONS(1662), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_async] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_enum] = ACTIONS(1664), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_impl] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_pub] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_struct] = ACTIONS(1664), - [anon_sym_trait] = ACTIONS(1664), - [anon_sym_type] = ACTIONS(1664), - [anon_sym_union] = ACTIONS(1664), - [anon_sym_unsafe] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_yield] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1664), - [anon_sym_try] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1662), - [aux_sym_string_literal_token1] = ACTIONS(1662), - [sym_char_literal] = ACTIONS(1662), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1664), - [sym_super] = ACTIONS(1664), - [sym_crate] = ACTIONS(1664), - [sym_metavariable] = ACTIONS(1662), - [sym__raw_string_literal_start] = ACTIONS(1662), - [sym_float_literal] = ACTIONS(1662), + [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_LBRACK] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(1687), + [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_gen] = 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_extern] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_move] = ACTIONS(1689), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_crate] = ACTIONS(1689), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1687), + [sym_float_literal] = ACTIONS(1687), }, [480] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_macro_rules_BANG] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_u8] = ACTIONS(1668), - [anon_sym_i8] = ACTIONS(1668), - [anon_sym_u16] = ACTIONS(1668), - [anon_sym_i16] = ACTIONS(1668), - [anon_sym_u32] = ACTIONS(1668), - [anon_sym_i32] = ACTIONS(1668), - [anon_sym_u64] = ACTIONS(1668), - [anon_sym_i64] = ACTIONS(1668), - [anon_sym_u128] = ACTIONS(1668), - [anon_sym_i128] = ACTIONS(1668), - [anon_sym_isize] = ACTIONS(1668), - [anon_sym_usize] = ACTIONS(1668), - [anon_sym_f32] = ACTIONS(1668), - [anon_sym_f64] = ACTIONS(1668), - [anon_sym_bool] = ACTIONS(1668), - [anon_sym_str] = ACTIONS(1668), - [anon_sym_char] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), - [anon_sym_PIPE] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_COLON_COLON] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_enum] = ACTIONS(1668), - [anon_sym_fn] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_impl] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_pub] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1668), - [anon_sym_trait] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_unsafe] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_yield] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(1666), - [aux_sym_string_literal_token1] = ACTIONS(1666), - [sym_char_literal] = ACTIONS(1666), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1668), - [sym_super] = ACTIONS(1668), - [sym_crate] = ACTIONS(1668), - [sym_metavariable] = ACTIONS(1666), - [sym__raw_string_literal_start] = ACTIONS(1666), - [sym_float_literal] = ACTIONS(1666), + [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_LBRACK] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(1691), + [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_gen] = 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_extern] = ACTIONS(1693), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_move] = ACTIONS(1693), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1693), + [sym_super] = ACTIONS(1693), + [sym_crate] = ACTIONS(1693), + [sym_metavariable] = ACTIONS(1691), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1691), }, [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [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_LBRACK] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_COLON_COLON] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1670), - [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_extern] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1672), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_crate] = ACTIONS(1672), - [sym_metavariable] = ACTIONS(1670), - [sym__raw_string_literal_start] = ACTIONS(1670), - [sym_float_literal] = ACTIONS(1670), + [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_LBRACK] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1695), + [anon_sym_COLON_COLON] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(1695), + [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_gen] = 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_extern] = ACTIONS(1697), + [anon_sym_yield] = ACTIONS(1697), + [anon_sym_move] = ACTIONS(1697), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1695), + [sym__raw_string_literal_start] = ACTIONS(1695), + [sym_float_literal] = ACTIONS(1695), }, [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [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_LBRACK] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1674), - [anon_sym_COLON_COLON] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1674), - [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_extern] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1676), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_crate] = ACTIONS(1676), - [sym_metavariable] = ACTIONS(1674), - [sym__raw_string_literal_start] = ACTIONS(1674), - [sym_float_literal] = ACTIONS(1674), + [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_LBRACK] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1699), + [anon_sym_COLON_COLON] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(1699), + [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_gen] = 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_extern] = ACTIONS(1701), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_move] = ACTIONS(1701), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1701), + [sym_super] = ACTIONS(1701), + [sym_crate] = ACTIONS(1701), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1699), + [sym_float_literal] = ACTIONS(1699), }, [483] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [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_LBRACK] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_DOT_DOT] = ACTIONS(1678), - [anon_sym_COLON_COLON] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(1678), - [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_extern] = ACTIONS(1680), - [anon_sym_yield] = ACTIONS(1680), - [anon_sym_move] = ACTIONS(1680), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1680), - [sym_super] = ACTIONS(1680), - [sym_crate] = ACTIONS(1680), - [sym_metavariable] = ACTIONS(1678), - [sym__raw_string_literal_start] = ACTIONS(1678), - [sym_float_literal] = ACTIONS(1678), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_u8] = ACTIONS(1705), + [anon_sym_i8] = ACTIONS(1705), + [anon_sym_u16] = ACTIONS(1705), + [anon_sym_i16] = ACTIONS(1705), + [anon_sym_u32] = ACTIONS(1705), + [anon_sym_i32] = ACTIONS(1705), + [anon_sym_u64] = ACTIONS(1705), + [anon_sym_i64] = ACTIONS(1705), + [anon_sym_u128] = ACTIONS(1705), + [anon_sym_i128] = ACTIONS(1705), + [anon_sym_isize] = ACTIONS(1705), + [anon_sym_usize] = ACTIONS(1705), + [anon_sym_f32] = ACTIONS(1705), + [anon_sym_f64] = ACTIONS(1705), + [anon_sym_bool] = ACTIONS(1705), + [anon_sym_str] = ACTIONS(1705), + [anon_sym_char] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_COLON_COLON] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [anon_sym_fn] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_gen] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_impl] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_mod] = ACTIONS(1705), + [anon_sym_pub] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_trait] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_union] = ACTIONS(1705), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_move] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [aux_sym_string_literal_token1] = ACTIONS(1703), + [sym_char_literal] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_crate] = ACTIONS(1705), + [sym_metavariable] = ACTIONS(1703), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1703), }, [484] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [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_LBRACK] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1682), - [anon_sym_COLON_COLON] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(1682), - [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_extern] = ACTIONS(1684), - [anon_sym_yield] = ACTIONS(1684), - [anon_sym_move] = ACTIONS(1684), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1684), - [sym_super] = ACTIONS(1684), - [sym_crate] = ACTIONS(1684), - [sym_metavariable] = ACTIONS(1682), - [sym__raw_string_literal_start] = ACTIONS(1682), - [sym_float_literal] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_macro_rules_BANG] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_u8] = ACTIONS(1709), + [anon_sym_i8] = ACTIONS(1709), + [anon_sym_u16] = ACTIONS(1709), + [anon_sym_i16] = ACTIONS(1709), + [anon_sym_u32] = ACTIONS(1709), + [anon_sym_i32] = ACTIONS(1709), + [anon_sym_u64] = ACTIONS(1709), + [anon_sym_i64] = ACTIONS(1709), + [anon_sym_u128] = ACTIONS(1709), + [anon_sym_i128] = ACTIONS(1709), + [anon_sym_isize] = ACTIONS(1709), + [anon_sym_usize] = ACTIONS(1709), + [anon_sym_f32] = ACTIONS(1709), + [anon_sym_f64] = ACTIONS(1709), + [anon_sym_bool] = ACTIONS(1709), + [anon_sym_str] = ACTIONS(1709), + [anon_sym_char] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_gen] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_impl] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1709), + [anon_sym_pub] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_struct] = ACTIONS(1709), + [anon_sym_trait] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_union] = ACTIONS(1709), + [anon_sym_unsafe] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_move] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [sym_integer_literal] = ACTIONS(1707), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_crate] = ACTIONS(1709), + [sym_metavariable] = ACTIONS(1707), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1707), }, [485] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [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_LBRACK] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [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_extern] = ACTIONS(1688), - [anon_sym_yield] = ACTIONS(1688), - [anon_sym_move] = ACTIONS(1688), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1688), - [sym_super] = ACTIONS(1688), - [sym_crate] = ACTIONS(1688), - [sym_metavariable] = ACTIONS(1686), - [sym__raw_string_literal_start] = ACTIONS(1686), - [sym_float_literal] = ACTIONS(1686), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_macro_rules_BANG] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_u8] = ACTIONS(1713), + [anon_sym_i8] = ACTIONS(1713), + [anon_sym_u16] = ACTIONS(1713), + [anon_sym_i16] = ACTIONS(1713), + [anon_sym_u32] = ACTIONS(1713), + [anon_sym_i32] = ACTIONS(1713), + [anon_sym_u64] = ACTIONS(1713), + [anon_sym_i64] = ACTIONS(1713), + [anon_sym_u128] = ACTIONS(1713), + [anon_sym_i128] = ACTIONS(1713), + [anon_sym_isize] = ACTIONS(1713), + [anon_sym_usize] = ACTIONS(1713), + [anon_sym_f32] = ACTIONS(1713), + [anon_sym_f64] = ACTIONS(1713), + [anon_sym_bool] = ACTIONS(1713), + [anon_sym_str] = ACTIONS(1713), + [anon_sym_char] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_COLON_COLON] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_gen] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_impl] = ACTIONS(1713), + [anon_sym_let] = ACTIONS(1713), + [anon_sym_loop] = ACTIONS(1713), + [anon_sym_match] = ACTIONS(1713), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_pub] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_trait] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [anon_sym_unsafe] = ACTIONS(1713), + [anon_sym_use] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_extern] = ACTIONS(1713), + [anon_sym_yield] = ACTIONS(1713), + [anon_sym_move] = ACTIONS(1713), + [anon_sym_try] = ACTIONS(1713), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1711), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1713), + [sym_super] = ACTIONS(1713), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1711), + [sym__raw_string_literal_start] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), }, [486] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [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_LBRACK] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_COLON_COLON] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [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_extern] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_move] = ACTIONS(1692), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_crate] = ACTIONS(1692), - [sym_metavariable] = ACTIONS(1690), - [sym__raw_string_literal_start] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), + [ts_builtin_sym_end] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_macro_rules_BANG] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_u8] = ACTIONS(1717), + [anon_sym_i8] = ACTIONS(1717), + [anon_sym_u16] = ACTIONS(1717), + [anon_sym_i16] = ACTIONS(1717), + [anon_sym_u32] = ACTIONS(1717), + [anon_sym_i32] = ACTIONS(1717), + [anon_sym_u64] = ACTIONS(1717), + [anon_sym_i64] = ACTIONS(1717), + [anon_sym_u128] = ACTIONS(1717), + [anon_sym_i128] = ACTIONS(1717), + [anon_sym_isize] = ACTIONS(1717), + [anon_sym_usize] = ACTIONS(1717), + [anon_sym_f32] = ACTIONS(1717), + [anon_sym_f64] = ACTIONS(1717), + [anon_sym_bool] = ACTIONS(1717), + [anon_sym_str] = ACTIONS(1717), + [anon_sym_char] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_gen] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_loop] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_union] = ACTIONS(1717), + [anon_sym_unsafe] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_move] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [sym_integer_literal] = ACTIONS(1715), + [aux_sym_string_literal_token1] = ACTIONS(1715), + [sym_char_literal] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_crate] = ACTIONS(1717), + [sym_metavariable] = ACTIONS(1715), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1715), }, [487] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [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_LBRACK] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1694), - [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_extern] = ACTIONS(1696), - [anon_sym_yield] = ACTIONS(1696), - [anon_sym_move] = ACTIONS(1696), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1696), - [sym_super] = ACTIONS(1696), - [sym_crate] = ACTIONS(1696), - [sym_metavariable] = ACTIONS(1694), - [sym__raw_string_literal_start] = ACTIONS(1694), - [sym_float_literal] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_macro_rules_BANG] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_u8] = ACTIONS(1721), + [anon_sym_i8] = ACTIONS(1721), + [anon_sym_u16] = ACTIONS(1721), + [anon_sym_i16] = ACTIONS(1721), + [anon_sym_u32] = ACTIONS(1721), + [anon_sym_i32] = ACTIONS(1721), + [anon_sym_u64] = ACTIONS(1721), + [anon_sym_i64] = ACTIONS(1721), + [anon_sym_u128] = ACTIONS(1721), + [anon_sym_i128] = ACTIONS(1721), + [anon_sym_isize] = ACTIONS(1721), + [anon_sym_usize] = ACTIONS(1721), + [anon_sym_f32] = ACTIONS(1721), + [anon_sym_f64] = ACTIONS(1721), + [anon_sym_bool] = ACTIONS(1721), + [anon_sym_str] = ACTIONS(1721), + [anon_sym_char] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1719), + [anon_sym_COLON_COLON] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(1719), + [anon_sym_SQUOTE] = ACTIONS(1721), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_impl] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_mod] = ACTIONS(1721), + [anon_sym_pub] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_static] = ACTIONS(1721), + [anon_sym_struct] = ACTIONS(1721), + [anon_sym_trait] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_unsafe] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_yield] = ACTIONS(1721), + [anon_sym_move] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1719), + [aux_sym_string_literal_token1] = ACTIONS(1719), + [sym_char_literal] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1721), + [sym_super] = ACTIONS(1721), + [sym_crate] = ACTIONS(1721), + [sym_metavariable] = ACTIONS(1719), + [sym__raw_string_literal_start] = ACTIONS(1719), + [sym_float_literal] = ACTIONS(1719), }, [488] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [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_LBRACK] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1698), - [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_extern] = ACTIONS(1700), - [anon_sym_yield] = ACTIONS(1700), - [anon_sym_move] = ACTIONS(1700), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1700), - [sym_super] = ACTIONS(1700), - [sym_crate] = ACTIONS(1700), - [sym_metavariable] = ACTIONS(1698), - [sym__raw_string_literal_start] = ACTIONS(1698), - [sym_float_literal] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_macro_rules_BANG] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_u8] = ACTIONS(1725), + [anon_sym_i8] = ACTIONS(1725), + [anon_sym_u16] = ACTIONS(1725), + [anon_sym_i16] = ACTIONS(1725), + [anon_sym_u32] = ACTIONS(1725), + [anon_sym_i32] = ACTIONS(1725), + [anon_sym_u64] = ACTIONS(1725), + [anon_sym_i64] = ACTIONS(1725), + [anon_sym_u128] = ACTIONS(1725), + [anon_sym_i128] = ACTIONS(1725), + [anon_sym_isize] = ACTIONS(1725), + [anon_sym_usize] = ACTIONS(1725), + [anon_sym_f32] = ACTIONS(1725), + [anon_sym_f64] = ACTIONS(1725), + [anon_sym_bool] = ACTIONS(1725), + [anon_sym_str] = ACTIONS(1725), + [anon_sym_char] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_gen] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_impl] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_loop] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1725), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_pub] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_trait] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1725), + [anon_sym_unsafe] = ACTIONS(1725), + [anon_sym_use] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_extern] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_move] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [sym_integer_literal] = ACTIONS(1723), + [aux_sym_string_literal_token1] = ACTIONS(1723), + [sym_char_literal] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1725), + [sym_super] = ACTIONS(1725), + [sym_crate] = ACTIONS(1725), + [sym_metavariable] = ACTIONS(1723), + [sym__raw_string_literal_start] = ACTIONS(1723), + [sym_float_literal] = ACTIONS(1723), }, [489] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [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_LBRACK] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1702), - [anon_sym_COLON_COLON] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [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_extern] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_move] = ACTIONS(1704), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_crate] = ACTIONS(1704), - [sym_metavariable] = ACTIONS(1702), - [sym__raw_string_literal_start] = ACTIONS(1702), - [sym_float_literal] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_macro_rules_BANG] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_u8] = ACTIONS(1729), + [anon_sym_i8] = ACTIONS(1729), + [anon_sym_u16] = ACTIONS(1729), + [anon_sym_i16] = ACTIONS(1729), + [anon_sym_u32] = ACTIONS(1729), + [anon_sym_i32] = ACTIONS(1729), + [anon_sym_u64] = ACTIONS(1729), + [anon_sym_i64] = ACTIONS(1729), + [anon_sym_u128] = ACTIONS(1729), + [anon_sym_i128] = ACTIONS(1729), + [anon_sym_isize] = ACTIONS(1729), + [anon_sym_usize] = ACTIONS(1729), + [anon_sym_f32] = ACTIONS(1729), + [anon_sym_f64] = ACTIONS(1729), + [anon_sym_bool] = ACTIONS(1729), + [anon_sym_str] = ACTIONS(1729), + [anon_sym_char] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_COLON_COLON] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_break] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [anon_sym_fn] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_gen] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_impl] = ACTIONS(1729), + [anon_sym_let] = ACTIONS(1729), + [anon_sym_loop] = ACTIONS(1729), + [anon_sym_match] = ACTIONS(1729), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_pub] = ACTIONS(1729), + [anon_sym_return] = ACTIONS(1729), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1729), + [anon_sym_trait] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_union] = ACTIONS(1729), + [anon_sym_unsafe] = ACTIONS(1729), + [anon_sym_use] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_extern] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_move] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1729), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1727), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1729), + [sym_super] = ACTIONS(1729), + [sym_crate] = ACTIONS(1729), + [sym_metavariable] = ACTIONS(1727), + [sym__raw_string_literal_start] = ACTIONS(1727), + [sym_float_literal] = ACTIONS(1727), }, [490] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [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_LBRACK] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1706), - [anon_sym_COLON_COLON] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1706), - [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_extern] = ACTIONS(1708), - [anon_sym_yield] = ACTIONS(1708), - [anon_sym_move] = ACTIONS(1708), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1708), - [sym_super] = ACTIONS(1708), - [sym_crate] = ACTIONS(1708), - [sym_metavariable] = ACTIONS(1706), - [sym__raw_string_literal_start] = ACTIONS(1706), - [sym_float_literal] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1731), + [sym_identifier] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_macro_rules_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_PIPE] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(1731), + [anon_sym_SQUOTE] = ACTIONS(1733), + [anon_sym_async] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_default] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_gen] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_impl] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_loop] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), + [anon_sym_mod] = ACTIONS(1733), + [anon_sym_pub] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_static] = ACTIONS(1733), + [anon_sym_struct] = ACTIONS(1733), + [anon_sym_trait] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_union] = ACTIONS(1733), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_use] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_extern] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(1733), + [anon_sym_move] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [sym_integer_literal] = ACTIONS(1731), + [aux_sym_string_literal_token1] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1731), + [sym__raw_string_literal_start] = ACTIONS(1731), + [sym_float_literal] = ACTIONS(1731), }, [491] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [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_LBRACK] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_DOT_DOT] = ACTIONS(1710), - [anon_sym_COLON_COLON] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [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_extern] = ACTIONS(1712), - [anon_sym_yield] = ACTIONS(1712), - [anon_sym_move] = ACTIONS(1712), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1712), - [sym_super] = ACTIONS(1712), - [sym_crate] = ACTIONS(1712), - [sym_metavariable] = ACTIONS(1710), - [sym__raw_string_literal_start] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1735), + [sym_identifier] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_macro_rules_BANG] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_u8] = ACTIONS(1737), + [anon_sym_i8] = ACTIONS(1737), + [anon_sym_u16] = ACTIONS(1737), + [anon_sym_i16] = ACTIONS(1737), + [anon_sym_u32] = ACTIONS(1737), + [anon_sym_i32] = ACTIONS(1737), + [anon_sym_u64] = ACTIONS(1737), + [anon_sym_i64] = ACTIONS(1737), + [anon_sym_u128] = ACTIONS(1737), + [anon_sym_i128] = ACTIONS(1737), + [anon_sym_isize] = ACTIONS(1737), + [anon_sym_usize] = ACTIONS(1737), + [anon_sym_f32] = ACTIONS(1737), + [anon_sym_f64] = ACTIONS(1737), + [anon_sym_bool] = ACTIONS(1737), + [anon_sym_str] = ACTIONS(1737), + [anon_sym_char] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_COLON_COLON] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_break] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1737), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_enum] = ACTIONS(1737), + [anon_sym_fn] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1737), + [anon_sym_gen] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_impl] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1737), + [anon_sym_loop] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [anon_sym_mod] = ACTIONS(1737), + [anon_sym_pub] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1737), + [anon_sym_static] = ACTIONS(1737), + [anon_sym_struct] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_unsafe] = ACTIONS(1737), + [anon_sym_use] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_extern] = ACTIONS(1737), + [anon_sym_yield] = ACTIONS(1737), + [anon_sym_move] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1737), + [sym_integer_literal] = ACTIONS(1735), + [aux_sym_string_literal_token1] = ACTIONS(1735), + [sym_char_literal] = ACTIONS(1735), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1737), + [sym_super] = ACTIONS(1737), + [sym_crate] = ACTIONS(1737), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1735), + [sym_float_literal] = ACTIONS(1735), }, [492] = { [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [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_LBRACK] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(1714), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(1714), - [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_extern] = ACTIONS(1716), - [anon_sym_yield] = ACTIONS(1716), - [anon_sym_move] = ACTIONS(1716), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1714), - [sym__raw_string_literal_start] = ACTIONS(1714), - [sym_float_literal] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_macro_rules_BANG] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_u8] = ACTIONS(1741), + [anon_sym_i8] = ACTIONS(1741), + [anon_sym_u16] = ACTIONS(1741), + [anon_sym_i16] = ACTIONS(1741), + [anon_sym_u32] = ACTIONS(1741), + [anon_sym_i32] = ACTIONS(1741), + [anon_sym_u64] = ACTIONS(1741), + [anon_sym_i64] = ACTIONS(1741), + [anon_sym_u128] = ACTIONS(1741), + [anon_sym_i128] = ACTIONS(1741), + [anon_sym_isize] = ACTIONS(1741), + [anon_sym_usize] = ACTIONS(1741), + [anon_sym_f32] = ACTIONS(1741), + [anon_sym_f64] = ACTIONS(1741), + [anon_sym_bool] = ACTIONS(1741), + [anon_sym_str] = ACTIONS(1741), + [anon_sym_char] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1741), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1741), + [anon_sym_enum] = ACTIONS(1741), + [anon_sym_fn] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_gen] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_impl] = ACTIONS(1741), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_loop] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_mod] = ACTIONS(1741), + [anon_sym_pub] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1741), + [anon_sym_struct] = ACTIONS(1741), + [anon_sym_trait] = ACTIONS(1741), + [anon_sym_type] = ACTIONS(1741), + [anon_sym_union] = ACTIONS(1741), + [anon_sym_unsafe] = ACTIONS(1741), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1741), + [anon_sym_yield] = ACTIONS(1741), + [anon_sym_move] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [aux_sym_string_literal_token1] = ACTIONS(1739), + [sym_char_literal] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1741), + [sym_super] = ACTIONS(1741), + [sym_crate] = ACTIONS(1741), + [sym_metavariable] = ACTIONS(1739), + [sym__raw_string_literal_start] = ACTIONS(1739), + [sym_float_literal] = ACTIONS(1739), }, [493] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [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_LBRACK] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_u8] = ACTIONS(1720), - [anon_sym_i8] = ACTIONS(1720), - [anon_sym_u16] = ACTIONS(1720), - [anon_sym_i16] = ACTIONS(1720), - [anon_sym_u32] = ACTIONS(1720), - [anon_sym_i32] = ACTIONS(1720), - [anon_sym_u64] = ACTIONS(1720), - [anon_sym_i64] = ACTIONS(1720), - [anon_sym_u128] = ACTIONS(1720), - [anon_sym_i128] = ACTIONS(1720), - [anon_sym_isize] = ACTIONS(1720), - [anon_sym_usize] = ACTIONS(1720), - [anon_sym_f32] = ACTIONS(1720), - [anon_sym_f64] = ACTIONS(1720), - [anon_sym_bool] = ACTIONS(1720), - [anon_sym_str] = ACTIONS(1720), - [anon_sym_char] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_COLON_COLON] = ACTIONS(1718), - [anon_sym_POUND] = ACTIONS(1718), - [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_extern] = ACTIONS(1720), - [anon_sym_yield] = ACTIONS(1720), - [anon_sym_move] = ACTIONS(1720), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1720), - [sym_super] = ACTIONS(1720), - [sym_crate] = ACTIONS(1720), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1718), - [sym_float_literal] = ACTIONS(1718), + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_macro_rules_BANG] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_u8] = ACTIONS(1745), + [anon_sym_i8] = ACTIONS(1745), + [anon_sym_u16] = ACTIONS(1745), + [anon_sym_i16] = ACTIONS(1745), + [anon_sym_u32] = ACTIONS(1745), + [anon_sym_i32] = ACTIONS(1745), + [anon_sym_u64] = ACTIONS(1745), + [anon_sym_i64] = ACTIONS(1745), + [anon_sym_u128] = ACTIONS(1745), + [anon_sym_i128] = ACTIONS(1745), + [anon_sym_isize] = ACTIONS(1745), + [anon_sym_usize] = ACTIONS(1745), + [anon_sym_f32] = ACTIONS(1745), + [anon_sym_f64] = ACTIONS(1745), + [anon_sym_bool] = ACTIONS(1745), + [anon_sym_str] = ACTIONS(1745), + [anon_sym_char] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_COLON_COLON] = ACTIONS(1743), + [anon_sym_POUND] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_fn] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_impl] = ACTIONS(1745), + [anon_sym_let] = ACTIONS(1745), + [anon_sym_loop] = ACTIONS(1745), + [anon_sym_match] = ACTIONS(1745), + [anon_sym_mod] = ACTIONS(1745), + [anon_sym_pub] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_trait] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_use] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_extern] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_move] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1745), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1743), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1743), + [sym__raw_string_literal_start] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), }, [494] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [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_LBRACK] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_DOT_DOT] = ACTIONS(1722), - [anon_sym_COLON_COLON] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [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_extern] = ACTIONS(1724), - [anon_sym_yield] = ACTIONS(1724), - [anon_sym_move] = ACTIONS(1724), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1724), - [sym_super] = ACTIONS(1724), - [sym_crate] = ACTIONS(1724), - [sym_metavariable] = ACTIONS(1722), - [sym__raw_string_literal_start] = ACTIONS(1722), - [sym_float_literal] = ACTIONS(1722), + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_macro_rules_BANG] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_u8] = ACTIONS(1749), + [anon_sym_i8] = ACTIONS(1749), + [anon_sym_u16] = ACTIONS(1749), + [anon_sym_i16] = ACTIONS(1749), + [anon_sym_u32] = ACTIONS(1749), + [anon_sym_i32] = ACTIONS(1749), + [anon_sym_u64] = ACTIONS(1749), + [anon_sym_i64] = ACTIONS(1749), + [anon_sym_u128] = ACTIONS(1749), + [anon_sym_i128] = ACTIONS(1749), + [anon_sym_isize] = ACTIONS(1749), + [anon_sym_usize] = ACTIONS(1749), + [anon_sym_f32] = ACTIONS(1749), + [anon_sym_f64] = ACTIONS(1749), + [anon_sym_bool] = ACTIONS(1749), + [anon_sym_str] = ACTIONS(1749), + [anon_sym_char] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_COLON_COLON] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [anon_sym_fn] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_gen] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_impl] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_mod] = ACTIONS(1749), + [anon_sym_pub] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_struct] = ACTIONS(1749), + [anon_sym_trait] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1749), + [anon_sym_unsafe] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_move] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [sym_integer_literal] = ACTIONS(1747), + [aux_sym_string_literal_token1] = ACTIONS(1747), + [sym_char_literal] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1747), + [sym_float_literal] = ACTIONS(1747), }, [495] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [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_LBRACK] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_DOT_DOT] = ACTIONS(1726), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_POUND] = ACTIONS(1726), - [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_extern] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1728), - [anon_sym_move] = ACTIONS(1728), - [anon_sym_try] = ACTIONS(1728), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1728), - [anon_sym_false] = ACTIONS(1728), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1726), - [sym__raw_string_literal_start] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_macro_rules_BANG] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_u8] = ACTIONS(1753), + [anon_sym_i8] = ACTIONS(1753), + [anon_sym_u16] = ACTIONS(1753), + [anon_sym_i16] = ACTIONS(1753), + [anon_sym_u32] = ACTIONS(1753), + [anon_sym_i32] = ACTIONS(1753), + [anon_sym_u64] = ACTIONS(1753), + [anon_sym_i64] = ACTIONS(1753), + [anon_sym_u128] = ACTIONS(1753), + [anon_sym_i128] = ACTIONS(1753), + [anon_sym_isize] = ACTIONS(1753), + [anon_sym_usize] = ACTIONS(1753), + [anon_sym_f32] = ACTIONS(1753), + [anon_sym_f64] = ACTIONS(1753), + [anon_sym_bool] = ACTIONS(1753), + [anon_sym_str] = ACTIONS(1753), + [anon_sym_char] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1751), + [anon_sym_BANG] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1751), + [anon_sym_COLON_COLON] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(1751), + [anon_sym_SQUOTE] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_fn] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_gen] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_impl] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_loop] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1753), + [anon_sym_mod] = ACTIONS(1753), + [anon_sym_pub] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_trait] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_use] = ACTIONS(1753), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_move] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1753), + [sym_integer_literal] = ACTIONS(1751), + [aux_sym_string_literal_token1] = ACTIONS(1751), + [sym_char_literal] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1753), + [anon_sym_false] = ACTIONS(1753), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_crate] = ACTIONS(1753), + [sym_metavariable] = ACTIONS(1751), + [sym__raw_string_literal_start] = ACTIONS(1751), + [sym_float_literal] = ACTIONS(1751), }, [496] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [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_LBRACK] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_DOT_DOT] = ACTIONS(1730), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1730), - [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_extern] = ACTIONS(1732), - [anon_sym_yield] = ACTIONS(1732), - [anon_sym_move] = ACTIONS(1732), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_crate] = ACTIONS(1732), - [sym_metavariable] = ACTIONS(1730), - [sym__raw_string_literal_start] = ACTIONS(1730), - [sym_float_literal] = ACTIONS(1730), + [ts_builtin_sym_end] = ACTIONS(1755), + [sym_identifier] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_macro_rules_BANG] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_u8] = ACTIONS(1757), + [anon_sym_i8] = ACTIONS(1757), + [anon_sym_u16] = ACTIONS(1757), + [anon_sym_i16] = ACTIONS(1757), + [anon_sym_u32] = ACTIONS(1757), + [anon_sym_i32] = ACTIONS(1757), + [anon_sym_u64] = ACTIONS(1757), + [anon_sym_i64] = ACTIONS(1757), + [anon_sym_u128] = ACTIONS(1757), + [anon_sym_i128] = ACTIONS(1757), + [anon_sym_isize] = ACTIONS(1757), + [anon_sym_usize] = ACTIONS(1757), + [anon_sym_f32] = ACTIONS(1757), + [anon_sym_f64] = ACTIONS(1757), + [anon_sym_bool] = ACTIONS(1757), + [anon_sym_str] = ACTIONS(1757), + [anon_sym_char] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1755), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_async] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [anon_sym_fn] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_gen] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_impl] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_mod] = ACTIONS(1757), + [anon_sym_pub] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_trait] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_unsafe] = ACTIONS(1757), + [anon_sym_use] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1757), + [anon_sym_move] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [sym_integer_literal] = ACTIONS(1755), + [aux_sym_string_literal_token1] = ACTIONS(1755), + [sym_char_literal] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1757), + [sym_super] = ACTIONS(1757), + [sym_crate] = ACTIONS(1757), + [sym_metavariable] = ACTIONS(1755), + [sym__raw_string_literal_start] = ACTIONS(1755), + [sym_float_literal] = ACTIONS(1755), }, [497] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_macro_rules_BANG] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_async] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [anon_sym_fn] = ACTIONS(1736), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_impl] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_loop] = ACTIONS(1736), - [anon_sym_match] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_pub] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1736), - [anon_sym_trait] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_union] = ACTIONS(1736), - [anon_sym_unsafe] = ACTIONS(1736), - [anon_sym_use] = ACTIONS(1736), - [anon_sym_while] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym_yield] = ACTIONS(1736), - [anon_sym_move] = ACTIONS(1736), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_crate] = ACTIONS(1736), - [sym_metavariable] = ACTIONS(1734), - [sym__raw_string_literal_start] = ACTIONS(1734), - [sym_float_literal] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_macro_rules_BANG] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_u8] = ACTIONS(1761), + [anon_sym_i8] = ACTIONS(1761), + [anon_sym_u16] = ACTIONS(1761), + [anon_sym_i16] = ACTIONS(1761), + [anon_sym_u32] = ACTIONS(1761), + [anon_sym_i32] = ACTIONS(1761), + [anon_sym_u64] = ACTIONS(1761), + [anon_sym_i64] = ACTIONS(1761), + [anon_sym_u128] = ACTIONS(1761), + [anon_sym_i128] = ACTIONS(1761), + [anon_sym_isize] = ACTIONS(1761), + [anon_sym_usize] = ACTIONS(1761), + [anon_sym_f32] = ACTIONS(1761), + [anon_sym_f64] = ACTIONS(1761), + [anon_sym_bool] = ACTIONS(1761), + [anon_sym_str] = ACTIONS(1761), + [anon_sym_char] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON_COLON] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_async] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_fn] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_gen] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_impl] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_loop] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1761), + [anon_sym_pub] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1761), + [anon_sym_trait] = ACTIONS(1761), + [anon_sym_type] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_unsafe] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_yield] = ACTIONS(1761), + [anon_sym_move] = ACTIONS(1761), + [anon_sym_try] = ACTIONS(1761), + [sym_integer_literal] = ACTIONS(1759), + [aux_sym_string_literal_token1] = ACTIONS(1759), + [sym_char_literal] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1761), + [anon_sym_false] = ACTIONS(1761), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1761), + [sym_super] = ACTIONS(1761), + [sym_crate] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1759), + [sym__raw_string_literal_start] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), }, [498] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [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_LBRACK] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1738), - [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_extern] = ACTIONS(1740), - [anon_sym_yield] = ACTIONS(1740), - [anon_sym_move] = ACTIONS(1740), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1740), - [sym_super] = ACTIONS(1740), - [sym_crate] = ACTIONS(1740), - [sym_metavariable] = ACTIONS(1738), - [sym__raw_string_literal_start] = ACTIONS(1738), - [sym_float_literal] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_macro_rules_BANG] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_u8] = ACTIONS(1765), + [anon_sym_i8] = ACTIONS(1765), + [anon_sym_u16] = ACTIONS(1765), + [anon_sym_i16] = ACTIONS(1765), + [anon_sym_u32] = ACTIONS(1765), + [anon_sym_i32] = ACTIONS(1765), + [anon_sym_u64] = ACTIONS(1765), + [anon_sym_i64] = ACTIONS(1765), + [anon_sym_u128] = ACTIONS(1765), + [anon_sym_i128] = ACTIONS(1765), + [anon_sym_isize] = ACTIONS(1765), + [anon_sym_usize] = ACTIONS(1765), + [anon_sym_f32] = ACTIONS(1765), + [anon_sym_f64] = ACTIONS(1765), + [anon_sym_bool] = ACTIONS(1765), + [anon_sym_str] = ACTIONS(1765), + [anon_sym_char] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_default] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_gen] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_impl] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_trait] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_move] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [sym_integer_literal] = ACTIONS(1763), + [aux_sym_string_literal_token1] = ACTIONS(1763), + [sym_char_literal] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1765), + [anon_sym_false] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1765), + [sym_super] = ACTIONS(1765), + [sym_crate] = ACTIONS(1765), + [sym_metavariable] = ACTIONS(1763), + [sym__raw_string_literal_start] = ACTIONS(1763), + [sym_float_literal] = ACTIONS(1763), }, [499] = { [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1742), - [sym_identifier] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_macro_rules_BANG] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_u8] = ACTIONS(1744), - [anon_sym_i8] = ACTIONS(1744), - [anon_sym_u16] = ACTIONS(1744), - [anon_sym_i16] = ACTIONS(1744), - [anon_sym_u32] = ACTIONS(1744), - [anon_sym_i32] = ACTIONS(1744), - [anon_sym_u64] = ACTIONS(1744), - [anon_sym_i64] = ACTIONS(1744), - [anon_sym_u128] = ACTIONS(1744), - [anon_sym_i128] = ACTIONS(1744), - [anon_sym_isize] = ACTIONS(1744), - [anon_sym_usize] = ACTIONS(1744), - [anon_sym_f32] = ACTIONS(1744), - [anon_sym_f64] = ACTIONS(1744), - [anon_sym_bool] = ACTIONS(1744), - [anon_sym_str] = ACTIONS(1744), - [anon_sym_char] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_default] = ACTIONS(1744), - [anon_sym_enum] = ACTIONS(1744), - [anon_sym_fn] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_impl] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1744), - [anon_sym_pub] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_struct] = ACTIONS(1744), - [anon_sym_trait] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1744), - [anon_sym_union] = ACTIONS(1744), - [anon_sym_unsafe] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_yield] = ACTIONS(1744), - [anon_sym_move] = ACTIONS(1744), - [anon_sym_try] = ACTIONS(1744), - [sym_integer_literal] = ACTIONS(1742), - [aux_sym_string_literal_token1] = ACTIONS(1742), - [sym_char_literal] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1744), - [sym_super] = ACTIONS(1744), - [sym_crate] = ACTIONS(1744), - [sym_metavariable] = ACTIONS(1742), - [sym__raw_string_literal_start] = ACTIONS(1742), - [sym_float_literal] = ACTIONS(1742), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_macro_rules_BANG] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_u8] = ACTIONS(1769), + [anon_sym_i8] = ACTIONS(1769), + [anon_sym_u16] = ACTIONS(1769), + [anon_sym_i16] = ACTIONS(1769), + [anon_sym_u32] = ACTIONS(1769), + [anon_sym_i32] = ACTIONS(1769), + [anon_sym_u64] = ACTIONS(1769), + [anon_sym_i64] = ACTIONS(1769), + [anon_sym_u128] = ACTIONS(1769), + [anon_sym_i128] = ACTIONS(1769), + [anon_sym_isize] = ACTIONS(1769), + [anon_sym_usize] = ACTIONS(1769), + [anon_sym_f32] = ACTIONS(1769), + [anon_sym_f64] = ACTIONS(1769), + [anon_sym_bool] = ACTIONS(1769), + [anon_sym_str] = ACTIONS(1769), + [anon_sym_char] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_impl] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_pub] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_trait] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_unsafe] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1767), + [aux_sym_string_literal_token1] = ACTIONS(1767), + [sym_char_literal] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1769), + [sym_super] = ACTIONS(1769), + [sym_crate] = ACTIONS(1769), + [sym_metavariable] = ACTIONS(1767), + [sym__raw_string_literal_start] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), }, [500] = { [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_macro_rules_BANG] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_u8] = ACTIONS(1748), - [anon_sym_i8] = ACTIONS(1748), - [anon_sym_u16] = ACTIONS(1748), - [anon_sym_i16] = ACTIONS(1748), - [anon_sym_u32] = ACTIONS(1748), - [anon_sym_i32] = ACTIONS(1748), - [anon_sym_u64] = ACTIONS(1748), - [anon_sym_i64] = ACTIONS(1748), - [anon_sym_u128] = ACTIONS(1748), - [anon_sym_i128] = ACTIONS(1748), - [anon_sym_isize] = ACTIONS(1748), - [anon_sym_usize] = ACTIONS(1748), - [anon_sym_f32] = ACTIONS(1748), - [anon_sym_f64] = ACTIONS(1748), - [anon_sym_bool] = ACTIONS(1748), - [anon_sym_str] = ACTIONS(1748), - [anon_sym_char] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1746), - [anon_sym_COLON_COLON] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_enum] = ACTIONS(1748), - [anon_sym_fn] = ACTIONS(1748), - [anon_sym_for] = ACTIONS(1748), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_impl] = ACTIONS(1748), - [anon_sym_let] = ACTIONS(1748), - [anon_sym_loop] = ACTIONS(1748), - [anon_sym_match] = ACTIONS(1748), - [anon_sym_mod] = ACTIONS(1748), - [anon_sym_pub] = ACTIONS(1748), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_struct] = ACTIONS(1748), - [anon_sym_trait] = ACTIONS(1748), - [anon_sym_type] = ACTIONS(1748), - [anon_sym_union] = ACTIONS(1748), - [anon_sym_unsafe] = ACTIONS(1748), - [anon_sym_use] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_yield] = ACTIONS(1748), - [anon_sym_move] = ACTIONS(1748), - [anon_sym_try] = ACTIONS(1748), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1746), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_crate] = ACTIONS(1748), - [sym_metavariable] = ACTIONS(1746), - [sym__raw_string_literal_start] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_macro_rules_BANG] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_u8] = ACTIONS(1773), + [anon_sym_i8] = ACTIONS(1773), + [anon_sym_u16] = ACTIONS(1773), + [anon_sym_i16] = ACTIONS(1773), + [anon_sym_u32] = ACTIONS(1773), + [anon_sym_i32] = ACTIONS(1773), + [anon_sym_u64] = ACTIONS(1773), + [anon_sym_i64] = ACTIONS(1773), + [anon_sym_u128] = ACTIONS(1773), + [anon_sym_i128] = ACTIONS(1773), + [anon_sym_isize] = ACTIONS(1773), + [anon_sym_usize] = ACTIONS(1773), + [anon_sym_f32] = ACTIONS(1773), + [anon_sym_f64] = ACTIONS(1773), + [anon_sym_bool] = ACTIONS(1773), + [anon_sym_str] = ACTIONS(1773), + [anon_sym_char] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_COLON_COLON] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_gen] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_impl] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_loop] = ACTIONS(1773), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_mod] = ACTIONS(1773), + [anon_sym_pub] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_trait] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_unsafe] = ACTIONS(1773), + [anon_sym_use] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_move] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [sym_integer_literal] = ACTIONS(1771), + [aux_sym_string_literal_token1] = ACTIONS(1771), + [sym_char_literal] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_crate] = ACTIONS(1773), + [sym_metavariable] = ACTIONS(1771), + [sym__raw_string_literal_start] = ACTIONS(1771), + [sym_float_literal] = ACTIONS(1771), }, [501] = { [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_macro_rules_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_u8] = ACTIONS(1752), - [anon_sym_i8] = ACTIONS(1752), - [anon_sym_u16] = ACTIONS(1752), - [anon_sym_i16] = ACTIONS(1752), - [anon_sym_u32] = ACTIONS(1752), - [anon_sym_i32] = ACTIONS(1752), - [anon_sym_u64] = ACTIONS(1752), - [anon_sym_i64] = ACTIONS(1752), - [anon_sym_u128] = ACTIONS(1752), - [anon_sym_i128] = ACTIONS(1752), - [anon_sym_isize] = ACTIONS(1752), - [anon_sym_usize] = ACTIONS(1752), - [anon_sym_f32] = ACTIONS(1752), - [anon_sym_f64] = ACTIONS(1752), - [anon_sym_bool] = ACTIONS(1752), - [anon_sym_str] = ACTIONS(1752), - [anon_sym_char] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_COLON_COLON] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_union] = ACTIONS(1752), - [anon_sym_unsafe] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_move] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [sym_integer_literal] = ACTIONS(1750), - [aux_sym_string_literal_token1] = ACTIONS(1750), - [sym_char_literal] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1750), - [sym__raw_string_literal_start] = ACTIONS(1750), - [sym_float_literal] = ACTIONS(1750), + [ts_builtin_sym_end] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_macro_rules_BANG] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_u8] = ACTIONS(1777), + [anon_sym_i8] = ACTIONS(1777), + [anon_sym_u16] = ACTIONS(1777), + [anon_sym_i16] = ACTIONS(1777), + [anon_sym_u32] = ACTIONS(1777), + [anon_sym_i32] = ACTIONS(1777), + [anon_sym_u64] = ACTIONS(1777), + [anon_sym_i64] = ACTIONS(1777), + [anon_sym_u128] = ACTIONS(1777), + [anon_sym_i128] = ACTIONS(1777), + [anon_sym_isize] = ACTIONS(1777), + [anon_sym_usize] = ACTIONS(1777), + [anon_sym_f32] = ACTIONS(1777), + [anon_sym_f64] = ACTIONS(1777), + [anon_sym_bool] = ACTIONS(1777), + [anon_sym_str] = ACTIONS(1777), + [anon_sym_char] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_COLON_COLON] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [anon_sym_fn] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_gen] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_impl] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_loop] = ACTIONS(1777), + [anon_sym_match] = ACTIONS(1777), + [anon_sym_mod] = ACTIONS(1777), + [anon_sym_pub] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_static] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1777), + [anon_sym_trait] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_union] = ACTIONS(1777), + [anon_sym_unsafe] = ACTIONS(1777), + [anon_sym_use] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_extern] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_move] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [sym_integer_literal] = ACTIONS(1775), + [aux_sym_string_literal_token1] = ACTIONS(1775), + [sym_char_literal] = ACTIONS(1775), + [anon_sym_true] = ACTIONS(1777), + [anon_sym_false] = ACTIONS(1777), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1777), + [sym_super] = ACTIONS(1777), + [sym_crate] = ACTIONS(1777), + [sym_metavariable] = ACTIONS(1775), + [sym__raw_string_literal_start] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1775), }, [502] = { [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [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_LBRACK] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [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_extern] = ACTIONS(1756), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_move] = ACTIONS(1756), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1754), - [sym_float_literal] = ACTIONS(1754), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_macro_rules_BANG] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_u8] = ACTIONS(1781), + [anon_sym_i8] = ACTIONS(1781), + [anon_sym_u16] = ACTIONS(1781), + [anon_sym_i16] = ACTIONS(1781), + [anon_sym_u32] = ACTIONS(1781), + [anon_sym_i32] = ACTIONS(1781), + [anon_sym_u64] = ACTIONS(1781), + [anon_sym_i64] = ACTIONS(1781), + [anon_sym_u128] = ACTIONS(1781), + [anon_sym_i128] = ACTIONS(1781), + [anon_sym_isize] = ACTIONS(1781), + [anon_sym_usize] = ACTIONS(1781), + [anon_sym_f32] = ACTIONS(1781), + [anon_sym_f64] = ACTIONS(1781), + [anon_sym_bool] = ACTIONS(1781), + [anon_sym_str] = ACTIONS(1781), + [anon_sym_char] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_COLON_COLON] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_fn] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_gen] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_impl] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_loop] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_mod] = ACTIONS(1781), + [anon_sym_pub] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_trait] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_union] = ACTIONS(1781), + [anon_sym_unsafe] = ACTIONS(1781), + [anon_sym_use] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_extern] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_move] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [sym_integer_literal] = ACTIONS(1779), + [aux_sym_string_literal_token1] = ACTIONS(1779), + [sym_char_literal] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_crate] = ACTIONS(1781), + [sym_metavariable] = ACTIONS(1779), + [sym__raw_string_literal_start] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), }, [503] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_macro_rules_BANG] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_u8] = ACTIONS(1760), - [anon_sym_i8] = ACTIONS(1760), - [anon_sym_u16] = ACTIONS(1760), - [anon_sym_i16] = ACTIONS(1760), - [anon_sym_u32] = ACTIONS(1760), - [anon_sym_i32] = ACTIONS(1760), - [anon_sym_u64] = ACTIONS(1760), - [anon_sym_i64] = ACTIONS(1760), - [anon_sym_u128] = ACTIONS(1760), - [anon_sym_i128] = ACTIONS(1760), - [anon_sym_isize] = ACTIONS(1760), - [anon_sym_usize] = ACTIONS(1760), - [anon_sym_f32] = ACTIONS(1760), - [anon_sym_f64] = ACTIONS(1760), - [anon_sym_bool] = ACTIONS(1760), - [anon_sym_str] = ACTIONS(1760), - [anon_sym_char] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1758), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_fn] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_impl] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1760), - [anon_sym_pub] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_trait] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_unsafe] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_move] = ACTIONS(1760), - [anon_sym_try] = ACTIONS(1760), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_crate] = ACTIONS(1760), - [sym_metavariable] = ACTIONS(1758), - [sym__raw_string_literal_start] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_macro_rules_BANG] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_u8] = ACTIONS(1785), + [anon_sym_i8] = ACTIONS(1785), + [anon_sym_u16] = ACTIONS(1785), + [anon_sym_i16] = ACTIONS(1785), + [anon_sym_u32] = ACTIONS(1785), + [anon_sym_i32] = ACTIONS(1785), + [anon_sym_u64] = ACTIONS(1785), + [anon_sym_i64] = ACTIONS(1785), + [anon_sym_u128] = ACTIONS(1785), + [anon_sym_i128] = ACTIONS(1785), + [anon_sym_isize] = ACTIONS(1785), + [anon_sym_usize] = ACTIONS(1785), + [anon_sym_f32] = ACTIONS(1785), + [anon_sym_f64] = ACTIONS(1785), + [anon_sym_bool] = ACTIONS(1785), + [anon_sym_str] = ACTIONS(1785), + [anon_sym_char] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_COLON_COLON] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [anon_sym_fn] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_gen] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_impl] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_mod] = ACTIONS(1785), + [anon_sym_pub] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_struct] = ACTIONS(1785), + [anon_sym_trait] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_union] = ACTIONS(1785), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_move] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [sym_integer_literal] = ACTIONS(1783), + [aux_sym_string_literal_token1] = ACTIONS(1783), + [sym_char_literal] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_crate] = ACTIONS(1785), + [sym_metavariable] = ACTIONS(1783), + [sym__raw_string_literal_start] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1783), }, [504] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [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_LBRACK] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_COLON_COLON] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(1762), - [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_extern] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_move] = ACTIONS(1764), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_crate] = ACTIONS(1764), - [sym_metavariable] = ACTIONS(1762), - [sym__raw_string_literal_start] = ACTIONS(1762), - [sym_float_literal] = ACTIONS(1762), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_macro_rules_BANG] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_u8] = ACTIONS(1789), + [anon_sym_i8] = ACTIONS(1789), + [anon_sym_u16] = ACTIONS(1789), + [anon_sym_i16] = ACTIONS(1789), + [anon_sym_u32] = ACTIONS(1789), + [anon_sym_i32] = ACTIONS(1789), + [anon_sym_u64] = ACTIONS(1789), + [anon_sym_i64] = ACTIONS(1789), + [anon_sym_u128] = ACTIONS(1789), + [anon_sym_i128] = ACTIONS(1789), + [anon_sym_isize] = ACTIONS(1789), + [anon_sym_usize] = ACTIONS(1789), + [anon_sym_f32] = ACTIONS(1789), + [anon_sym_f64] = ACTIONS(1789), + [anon_sym_bool] = ACTIONS(1789), + [anon_sym_str] = ACTIONS(1789), + [anon_sym_char] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_COLON_COLON] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_gen] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_impl] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_loop] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_mod] = ACTIONS(1789), + [anon_sym_pub] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_trait] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_union] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_use] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_extern] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_move] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [sym_integer_literal] = ACTIONS(1787), + [aux_sym_string_literal_token1] = ACTIONS(1787), + [sym_char_literal] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1789), + [anon_sym_false] = ACTIONS(1789), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_crate] = ACTIONS(1789), + [sym_metavariable] = ACTIONS(1787), + [sym__raw_string_literal_start] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1787), }, [505] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_macro_rules_BANG] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1768), - [anon_sym_i8] = ACTIONS(1768), - [anon_sym_u16] = ACTIONS(1768), - [anon_sym_i16] = ACTIONS(1768), - [anon_sym_u32] = ACTIONS(1768), - [anon_sym_i32] = ACTIONS(1768), - [anon_sym_u64] = ACTIONS(1768), - [anon_sym_i64] = ACTIONS(1768), - [anon_sym_u128] = ACTIONS(1768), - [anon_sym_i128] = ACTIONS(1768), - [anon_sym_isize] = ACTIONS(1768), - [anon_sym_usize] = ACTIONS(1768), - [anon_sym_f32] = ACTIONS(1768), - [anon_sym_f64] = ACTIONS(1768), - [anon_sym_bool] = ACTIONS(1768), - [anon_sym_str] = ACTIONS(1768), - [anon_sym_char] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_async] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_default] = ACTIONS(1768), - [anon_sym_enum] = ACTIONS(1768), - [anon_sym_fn] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_impl] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_pub] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_struct] = ACTIONS(1768), - [anon_sym_trait] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1768), - [anon_sym_union] = ACTIONS(1768), - [anon_sym_unsafe] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_yield] = ACTIONS(1768), - [anon_sym_move] = ACTIONS(1768), - [anon_sym_try] = ACTIONS(1768), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1766), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1768), - [sym_super] = ACTIONS(1768), - [sym_crate] = ACTIONS(1768), - [sym_metavariable] = ACTIONS(1766), - [sym__raw_string_literal_start] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_macro_rules_BANG] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(1793), + [anon_sym_i8] = ACTIONS(1793), + [anon_sym_u16] = ACTIONS(1793), + [anon_sym_i16] = ACTIONS(1793), + [anon_sym_u32] = ACTIONS(1793), + [anon_sym_i32] = ACTIONS(1793), + [anon_sym_u64] = ACTIONS(1793), + [anon_sym_i64] = ACTIONS(1793), + [anon_sym_u128] = ACTIONS(1793), + [anon_sym_i128] = ACTIONS(1793), + [anon_sym_isize] = ACTIONS(1793), + [anon_sym_usize] = ACTIONS(1793), + [anon_sym_f32] = ACTIONS(1793), + [anon_sym_f64] = ACTIONS(1793), + [anon_sym_bool] = ACTIONS(1793), + [anon_sym_str] = ACTIONS(1793), + [anon_sym_char] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_COLON_COLON] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_default] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_gen] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_impl] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_loop] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_mod] = ACTIONS(1793), + [anon_sym_pub] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_trait] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_use] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_move] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [sym_integer_literal] = ACTIONS(1791), + [aux_sym_string_literal_token1] = ACTIONS(1791), + [sym_char_literal] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(1793), + [anon_sym_false] = ACTIONS(1793), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1793), + [sym_super] = ACTIONS(1793), + [sym_crate] = ACTIONS(1793), + [sym_metavariable] = ACTIONS(1791), + [sym__raw_string_literal_start] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), }, [506] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_macro_rules_BANG] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [anon_sym_fn] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_impl] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1772), - [anon_sym_pub] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_struct] = ACTIONS(1772), - [anon_sym_trait] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_unsafe] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [aux_sym_string_literal_token1] = ACTIONS(1770), - [sym_char_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym__raw_string_literal_start] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_macro_rules_BANG] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_u8] = ACTIONS(1797), + [anon_sym_i8] = ACTIONS(1797), + [anon_sym_u16] = ACTIONS(1797), + [anon_sym_i16] = ACTIONS(1797), + [anon_sym_u32] = ACTIONS(1797), + [anon_sym_i32] = ACTIONS(1797), + [anon_sym_u64] = ACTIONS(1797), + [anon_sym_i64] = ACTIONS(1797), + [anon_sym_u128] = ACTIONS(1797), + [anon_sym_i128] = ACTIONS(1797), + [anon_sym_isize] = ACTIONS(1797), + [anon_sym_usize] = ACTIONS(1797), + [anon_sym_f32] = ACTIONS(1797), + [anon_sym_f64] = ACTIONS(1797), + [anon_sym_bool] = ACTIONS(1797), + [anon_sym_str] = ACTIONS(1797), + [anon_sym_char] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_DOT_DOT] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_gen] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_impl] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_mod] = ACTIONS(1797), + [anon_sym_pub] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1797), + [anon_sym_trait] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_union] = ACTIONS(1797), + [anon_sym_unsafe] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_move] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [sym_integer_literal] = ACTIONS(1795), + [aux_sym_string_literal_token1] = ACTIONS(1795), + [sym_char_literal] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(1797), + [anon_sym_false] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_crate] = ACTIONS(1797), + [sym_metavariable] = ACTIONS(1795), + [sym__raw_string_literal_start] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1795), }, [507] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_macro_rules_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_u8] = ACTIONS(1776), - [anon_sym_i8] = ACTIONS(1776), - [anon_sym_u16] = ACTIONS(1776), - [anon_sym_i16] = ACTIONS(1776), - [anon_sym_u32] = ACTIONS(1776), - [anon_sym_i32] = ACTIONS(1776), - [anon_sym_u64] = ACTIONS(1776), - [anon_sym_i64] = ACTIONS(1776), - [anon_sym_u128] = ACTIONS(1776), - [anon_sym_i128] = ACTIONS(1776), - [anon_sym_isize] = ACTIONS(1776), - [anon_sym_usize] = ACTIONS(1776), - [anon_sym_f32] = ACTIONS(1776), - [anon_sym_f64] = ACTIONS(1776), - [anon_sym_bool] = ACTIONS(1776), - [anon_sym_str] = ACTIONS(1776), - [anon_sym_char] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_impl] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_trait] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_yield] = ACTIONS(1776), - [anon_sym_move] = ACTIONS(1776), - [anon_sym_try] = ACTIONS(1776), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym__raw_string_literal_start] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_macro_rules_BANG] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_u8] = ACTIONS(1801), + [anon_sym_i8] = ACTIONS(1801), + [anon_sym_u16] = ACTIONS(1801), + [anon_sym_i16] = ACTIONS(1801), + [anon_sym_u32] = ACTIONS(1801), + [anon_sym_i32] = ACTIONS(1801), + [anon_sym_u64] = ACTIONS(1801), + [anon_sym_i64] = ACTIONS(1801), + [anon_sym_u128] = ACTIONS(1801), + [anon_sym_i128] = ACTIONS(1801), + [anon_sym_isize] = ACTIONS(1801), + [anon_sym_usize] = ACTIONS(1801), + [anon_sym_f32] = ACTIONS(1801), + [anon_sym_f64] = ACTIONS(1801), + [anon_sym_bool] = ACTIONS(1801), + [anon_sym_str] = ACTIONS(1801), + [anon_sym_char] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_COLON_COLON] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_async] = ACTIONS(1801), + [anon_sym_break] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1801), + [anon_sym_continue] = ACTIONS(1801), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_enum] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_gen] = ACTIONS(1801), + [anon_sym_if] = ACTIONS(1801), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_let] = ACTIONS(1801), + [anon_sym_loop] = ACTIONS(1801), + [anon_sym_match] = ACTIONS(1801), + [anon_sym_mod] = ACTIONS(1801), + [anon_sym_pub] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1801), + [anon_sym_struct] = ACTIONS(1801), + [anon_sym_trait] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), + [anon_sym_union] = ACTIONS(1801), + [anon_sym_unsafe] = ACTIONS(1801), + [anon_sym_use] = ACTIONS(1801), + [anon_sym_while] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1801), + [anon_sym_move] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1801), + [sym_integer_literal] = ACTIONS(1799), + [aux_sym_string_literal_token1] = ACTIONS(1799), + [sym_char_literal] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1801), + [sym_super] = ACTIONS(1801), + [sym_crate] = ACTIONS(1801), + [sym_metavariable] = ACTIONS(1799), + [sym__raw_string_literal_start] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1799), }, [508] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1780), - [anon_sym_move] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), + [ts_builtin_sym_end] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_macro_rules_BANG] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_u8] = ACTIONS(1805), + [anon_sym_i8] = ACTIONS(1805), + [anon_sym_u16] = ACTIONS(1805), + [anon_sym_i16] = ACTIONS(1805), + [anon_sym_u32] = ACTIONS(1805), + [anon_sym_i32] = ACTIONS(1805), + [anon_sym_u64] = ACTIONS(1805), + [anon_sym_i64] = ACTIONS(1805), + [anon_sym_u128] = ACTIONS(1805), + [anon_sym_i128] = ACTIONS(1805), + [anon_sym_isize] = ACTIONS(1805), + [anon_sym_usize] = ACTIONS(1805), + [anon_sym_f32] = ACTIONS(1805), + [anon_sym_f64] = ACTIONS(1805), + [anon_sym_bool] = ACTIONS(1805), + [anon_sym_str] = ACTIONS(1805), + [anon_sym_char] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(1803), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1805), + [anon_sym_enum] = ACTIONS(1805), + [anon_sym_fn] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_gen] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_mod] = ACTIONS(1805), + [anon_sym_pub] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_trait] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_union] = ACTIONS(1805), + [anon_sym_unsafe] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1805), + [anon_sym_move] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [sym_integer_literal] = ACTIONS(1803), + [aux_sym_string_literal_token1] = ACTIONS(1803), + [sym_char_literal] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(1805), + [anon_sym_false] = ACTIONS(1805), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1805), + [sym_super] = ACTIONS(1805), + [sym_crate] = ACTIONS(1805), + [sym_metavariable] = ACTIONS(1803), + [sym__raw_string_literal_start] = ACTIONS(1803), + [sym_float_literal] = ACTIONS(1803), }, [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [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_LBRACK] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(1782), - [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_extern] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1784), - [anon_sym_move] = ACTIONS(1784), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym__raw_string_literal_start] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_macro_rules_BANG] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_u8] = ACTIONS(1809), + [anon_sym_i8] = ACTIONS(1809), + [anon_sym_u16] = ACTIONS(1809), + [anon_sym_i16] = ACTIONS(1809), + [anon_sym_u32] = ACTIONS(1809), + [anon_sym_i32] = ACTIONS(1809), + [anon_sym_u64] = ACTIONS(1809), + [anon_sym_i64] = ACTIONS(1809), + [anon_sym_u128] = ACTIONS(1809), + [anon_sym_i128] = ACTIONS(1809), + [anon_sym_isize] = ACTIONS(1809), + [anon_sym_usize] = ACTIONS(1809), + [anon_sym_f32] = ACTIONS(1809), + [anon_sym_f64] = ACTIONS(1809), + [anon_sym_bool] = ACTIONS(1809), + [anon_sym_str] = ACTIONS(1809), + [anon_sym_char] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_COLON_COLON] = ACTIONS(1807), + [anon_sym_POUND] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_async] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_default] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_gen] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_impl] = ACTIONS(1809), + [anon_sym_let] = ACTIONS(1809), + [anon_sym_loop] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_mod] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_trait] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_use] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_yield] = ACTIONS(1809), + [anon_sym_move] = ACTIONS(1809), + [anon_sym_try] = ACTIONS(1809), + [sym_integer_literal] = ACTIONS(1807), + [aux_sym_string_literal_token1] = ACTIONS(1807), + [sym_char_literal] = ACTIONS(1807), + [anon_sym_true] = ACTIONS(1809), + [anon_sym_false] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1809), + [sym_super] = ACTIONS(1809), + [sym_crate] = ACTIONS(1809), + [sym_metavariable] = ACTIONS(1807), + [sym__raw_string_literal_start] = ACTIONS(1807), + [sym_float_literal] = ACTIONS(1807), }, [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [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_LBRACK] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [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_extern] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_move] = ACTIONS(1788), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_macro_rules_BANG] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_u8] = ACTIONS(1813), + [anon_sym_i8] = ACTIONS(1813), + [anon_sym_u16] = ACTIONS(1813), + [anon_sym_i16] = ACTIONS(1813), + [anon_sym_u32] = ACTIONS(1813), + [anon_sym_i32] = ACTIONS(1813), + [anon_sym_u64] = ACTIONS(1813), + [anon_sym_i64] = ACTIONS(1813), + [anon_sym_u128] = ACTIONS(1813), + [anon_sym_i128] = ACTIONS(1813), + [anon_sym_isize] = ACTIONS(1813), + [anon_sym_usize] = ACTIONS(1813), + [anon_sym_f32] = ACTIONS(1813), + [anon_sym_f64] = ACTIONS(1813), + [anon_sym_bool] = ACTIONS(1813), + [anon_sym_str] = ACTIONS(1813), + [anon_sym_char] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [anon_sym_POUND] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_gen] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_impl] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_loop] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_mod] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_trait] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_use] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_extern] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_move] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1811), + [aux_sym_string_literal_token1] = ACTIONS(1811), + [sym_char_literal] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_crate] = ACTIONS(1813), + [sym_metavariable] = ACTIONS(1811), + [sym__raw_string_literal_start] = ACTIONS(1811), + [sym_float_literal] = ACTIONS(1811), }, [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [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_LBRACK] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1790), - [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_extern] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_move] = ACTIONS(1792), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym__raw_string_literal_start] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), + [ts_builtin_sym_end] = ACTIONS(1815), + [sym_identifier] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_macro_rules_BANG] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_u8] = ACTIONS(1817), + [anon_sym_i8] = ACTIONS(1817), + [anon_sym_u16] = ACTIONS(1817), + [anon_sym_i16] = ACTIONS(1817), + [anon_sym_u32] = ACTIONS(1817), + [anon_sym_i32] = ACTIONS(1817), + [anon_sym_u64] = ACTIONS(1817), + [anon_sym_i64] = ACTIONS(1817), + [anon_sym_u128] = ACTIONS(1817), + [anon_sym_i128] = ACTIONS(1817), + [anon_sym_isize] = ACTIONS(1817), + [anon_sym_usize] = ACTIONS(1817), + [anon_sym_f32] = ACTIONS(1817), + [anon_sym_f64] = ACTIONS(1817), + [anon_sym_bool] = ACTIONS(1817), + [anon_sym_str] = ACTIONS(1817), + [anon_sym_char] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_DOT_DOT] = ACTIONS(1815), + [anon_sym_COLON_COLON] = ACTIONS(1815), + [anon_sym_POUND] = ACTIONS(1815), + [anon_sym_SQUOTE] = ACTIONS(1817), + [anon_sym_async] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1817), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_fn] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_gen] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_impl] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_mod] = ACTIONS(1817), + [anon_sym_pub] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_struct] = ACTIONS(1817), + [anon_sym_trait] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_union] = ACTIONS(1817), + [anon_sym_unsafe] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1817), + [anon_sym_move] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(1815), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(1817), + [anon_sym_false] = ACTIONS(1817), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1817), + [sym_super] = ACTIONS(1817), + [sym_crate] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1815), + [sym__raw_string_literal_start] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), }, [512] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [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_LBRACK] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1794), - [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_extern] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1796), - [anon_sym_move] = ACTIONS(1796), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym__raw_string_literal_start] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1819), + [sym_identifier] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_macro_rules_BANG] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_u8] = ACTIONS(1821), + [anon_sym_i8] = ACTIONS(1821), + [anon_sym_u16] = ACTIONS(1821), + [anon_sym_i16] = ACTIONS(1821), + [anon_sym_u32] = ACTIONS(1821), + [anon_sym_i32] = ACTIONS(1821), + [anon_sym_u64] = ACTIONS(1821), + [anon_sym_i64] = ACTIONS(1821), + [anon_sym_u128] = ACTIONS(1821), + [anon_sym_i128] = ACTIONS(1821), + [anon_sym_isize] = ACTIONS(1821), + [anon_sym_usize] = ACTIONS(1821), + [anon_sym_f32] = ACTIONS(1821), + [anon_sym_f64] = ACTIONS(1821), + [anon_sym_bool] = ACTIONS(1821), + [anon_sym_str] = ACTIONS(1821), + [anon_sym_char] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_COLON_COLON] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(1819), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_async] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [anon_sym_continue] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1821), + [anon_sym_fn] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1821), + [anon_sym_gen] = ACTIONS(1821), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_impl] = ACTIONS(1821), + [anon_sym_let] = ACTIONS(1821), + [anon_sym_loop] = ACTIONS(1821), + [anon_sym_match] = ACTIONS(1821), + [anon_sym_mod] = ACTIONS(1821), + [anon_sym_pub] = ACTIONS(1821), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1821), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_trait] = ACTIONS(1821), + [anon_sym_type] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1821), + [anon_sym_use] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(1821), + [anon_sym_extern] = ACTIONS(1821), + [anon_sym_yield] = ACTIONS(1821), + [anon_sym_move] = ACTIONS(1821), + [anon_sym_try] = ACTIONS(1821), + [sym_integer_literal] = ACTIONS(1819), + [aux_sym_string_literal_token1] = ACTIONS(1819), + [sym_char_literal] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1821), + [anon_sym_false] = ACTIONS(1821), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1821), + [sym_super] = ACTIONS(1821), + [sym_crate] = ACTIONS(1821), + [sym_metavariable] = ACTIONS(1819), + [sym__raw_string_literal_start] = ACTIONS(1819), + [sym_float_literal] = ACTIONS(1819), }, [513] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [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_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(1798), - [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_extern] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_macro_rules_BANG] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_u8] = ACTIONS(1825), + [anon_sym_i8] = ACTIONS(1825), + [anon_sym_u16] = ACTIONS(1825), + [anon_sym_i16] = ACTIONS(1825), + [anon_sym_u32] = ACTIONS(1825), + [anon_sym_i32] = ACTIONS(1825), + [anon_sym_u64] = ACTIONS(1825), + [anon_sym_i64] = ACTIONS(1825), + [anon_sym_u128] = ACTIONS(1825), + [anon_sym_i128] = ACTIONS(1825), + [anon_sym_isize] = ACTIONS(1825), + [anon_sym_usize] = ACTIONS(1825), + [anon_sym_f32] = ACTIONS(1825), + [anon_sym_f64] = ACTIONS(1825), + [anon_sym_bool] = ACTIONS(1825), + [anon_sym_str] = ACTIONS(1825), + [anon_sym_char] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_fn] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_gen] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_impl] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_mod] = ACTIONS(1825), + [anon_sym_pub] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_trait] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_unsafe] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1825), + [anon_sym_move] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1825), + [sym_integer_literal] = ACTIONS(1823), + [aux_sym_string_literal_token1] = ACTIONS(1823), + [sym_char_literal] = ACTIONS(1823), + [anon_sym_true] = ACTIONS(1825), + [anon_sym_false] = ACTIONS(1825), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1825), + [sym_super] = ACTIONS(1825), + [sym_crate] = ACTIONS(1825), + [sym_metavariable] = ACTIONS(1823), + [sym__raw_string_literal_start] = ACTIONS(1823), + [sym_float_literal] = ACTIONS(1823), }, [514] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [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_LBRACK] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1802), - [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_extern] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym__raw_string_literal_start] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_macro_rules_BANG] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_u8] = ACTIONS(1829), + [anon_sym_i8] = ACTIONS(1829), + [anon_sym_u16] = ACTIONS(1829), + [anon_sym_i16] = ACTIONS(1829), + [anon_sym_u32] = ACTIONS(1829), + [anon_sym_i32] = ACTIONS(1829), + [anon_sym_u64] = ACTIONS(1829), + [anon_sym_i64] = ACTIONS(1829), + [anon_sym_u128] = ACTIONS(1829), + [anon_sym_i128] = ACTIONS(1829), + [anon_sym_isize] = ACTIONS(1829), + [anon_sym_usize] = ACTIONS(1829), + [anon_sym_f32] = ACTIONS(1829), + [anon_sym_f64] = ACTIONS(1829), + [anon_sym_bool] = ACTIONS(1829), + [anon_sym_str] = ACTIONS(1829), + [anon_sym_char] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1827), + [anon_sym_COLON_COLON] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [anon_sym_fn] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_gen] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_impl] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_mod] = ACTIONS(1829), + [anon_sym_pub] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_trait] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_union] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_move] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [sym_integer_literal] = ACTIONS(1827), + [aux_sym_string_literal_token1] = ACTIONS(1827), + [sym_char_literal] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1829), + [anon_sym_false] = ACTIONS(1829), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_crate] = ACTIONS(1829), + [sym_metavariable] = ACTIONS(1827), + [sym__raw_string_literal_start] = ACTIONS(1827), + [sym_float_literal] = ACTIONS(1827), }, [515] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [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_LBRACK] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1806), - [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_extern] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym__raw_string_literal_start] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_macro_rules_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_u8] = ACTIONS(1833), + [anon_sym_i8] = ACTIONS(1833), + [anon_sym_u16] = ACTIONS(1833), + [anon_sym_i16] = ACTIONS(1833), + [anon_sym_u32] = ACTIONS(1833), + [anon_sym_i32] = ACTIONS(1833), + [anon_sym_u64] = ACTIONS(1833), + [anon_sym_i64] = ACTIONS(1833), + [anon_sym_u128] = ACTIONS(1833), + [anon_sym_i128] = ACTIONS(1833), + [anon_sym_isize] = ACTIONS(1833), + [anon_sym_usize] = ACTIONS(1833), + [anon_sym_f32] = ACTIONS(1833), + [anon_sym_f64] = ACTIONS(1833), + [anon_sym_bool] = ACTIONS(1833), + [anon_sym_str] = ACTIONS(1833), + [anon_sym_char] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_fn] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_gen] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_impl] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_mod] = ACTIONS(1833), + [anon_sym_pub] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1833), + [anon_sym_trait] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_union] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_move] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [sym_integer_literal] = ACTIONS(1831), + [aux_sym_string_literal_token1] = ACTIONS(1831), + [sym_char_literal] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_crate] = ACTIONS(1833), + [sym_metavariable] = ACTIONS(1831), + [sym__raw_string_literal_start] = ACTIONS(1831), + [sym_float_literal] = ACTIONS(1831), }, [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [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_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1810), - [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_extern] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_macro_rules_BANG] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1837), + [anon_sym_i8] = ACTIONS(1837), + [anon_sym_u16] = ACTIONS(1837), + [anon_sym_i16] = ACTIONS(1837), + [anon_sym_u32] = ACTIONS(1837), + [anon_sym_i32] = ACTIONS(1837), + [anon_sym_u64] = ACTIONS(1837), + [anon_sym_i64] = ACTIONS(1837), + [anon_sym_u128] = ACTIONS(1837), + [anon_sym_i128] = ACTIONS(1837), + [anon_sym_isize] = ACTIONS(1837), + [anon_sym_usize] = ACTIONS(1837), + [anon_sym_f32] = ACTIONS(1837), + [anon_sym_f64] = ACTIONS(1837), + [anon_sym_bool] = ACTIONS(1837), + [anon_sym_str] = ACTIONS(1837), + [anon_sym_char] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_COLON_COLON] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_gen] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_impl] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_loop] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_mod] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_trait] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_use] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_extern] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_move] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [sym_integer_literal] = ACTIONS(1835), + [aux_sym_string_literal_token1] = ACTIONS(1835), + [sym_char_literal] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_crate] = ACTIONS(1837), + [sym_metavariable] = ACTIONS(1835), + [sym__raw_string_literal_start] = ACTIONS(1835), + [sym_float_literal] = ACTIONS(1835), }, [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [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_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [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_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_macro_rules_BANG] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1841), + [anon_sym_i8] = ACTIONS(1841), + [anon_sym_u16] = ACTIONS(1841), + [anon_sym_i16] = ACTIONS(1841), + [anon_sym_u32] = ACTIONS(1841), + [anon_sym_i32] = ACTIONS(1841), + [anon_sym_u64] = ACTIONS(1841), + [anon_sym_i64] = ACTIONS(1841), + [anon_sym_u128] = ACTIONS(1841), + [anon_sym_i128] = ACTIONS(1841), + [anon_sym_isize] = ACTIONS(1841), + [anon_sym_usize] = ACTIONS(1841), + [anon_sym_f32] = ACTIONS(1841), + [anon_sym_f64] = ACTIONS(1841), + [anon_sym_bool] = ACTIONS(1841), + [anon_sym_str] = ACTIONS(1841), + [anon_sym_char] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_COLON_COLON] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [anon_sym_fn] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_gen] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_impl] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_mod] = ACTIONS(1841), + [anon_sym_pub] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1841), + [anon_sym_trait] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_union] = ACTIONS(1841), + [anon_sym_unsafe] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_move] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [sym_integer_literal] = ACTIONS(1839), + [aux_sym_string_literal_token1] = ACTIONS(1839), + [sym_char_literal] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_crate] = ACTIONS(1841), + [sym_metavariable] = ACTIONS(1839), + [sym__raw_string_literal_start] = ACTIONS(1839), + [sym_float_literal] = ACTIONS(1839), }, [518] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [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_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [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_extern] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym__raw_string_literal_start] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_macro_rules_BANG] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_u8] = ACTIONS(1845), + [anon_sym_i8] = ACTIONS(1845), + [anon_sym_u16] = ACTIONS(1845), + [anon_sym_i16] = ACTIONS(1845), + [anon_sym_u32] = ACTIONS(1845), + [anon_sym_i32] = ACTIONS(1845), + [anon_sym_u64] = ACTIONS(1845), + [anon_sym_i64] = ACTIONS(1845), + [anon_sym_u128] = ACTIONS(1845), + [anon_sym_i128] = ACTIONS(1845), + [anon_sym_isize] = ACTIONS(1845), + [anon_sym_usize] = ACTIONS(1845), + [anon_sym_f32] = ACTIONS(1845), + [anon_sym_f64] = ACTIONS(1845), + [anon_sym_bool] = ACTIONS(1845), + [anon_sym_str] = ACTIONS(1845), + [anon_sym_char] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_gen] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_impl] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_loop] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_mod] = ACTIONS(1845), + [anon_sym_pub] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_trait] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_use] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_extern] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_move] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [sym_integer_literal] = ACTIONS(1843), + [aux_sym_string_literal_token1] = ACTIONS(1843), + [sym_char_literal] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_crate] = ACTIONS(1845), + [sym_metavariable] = ACTIONS(1843), + [sym__raw_string_literal_start] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), }, [519] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [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_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [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_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_macro_rules_BANG] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_u8] = ACTIONS(1849), + [anon_sym_i8] = ACTIONS(1849), + [anon_sym_u16] = ACTIONS(1849), + [anon_sym_i16] = ACTIONS(1849), + [anon_sym_u32] = ACTIONS(1849), + [anon_sym_i32] = ACTIONS(1849), + [anon_sym_u64] = ACTIONS(1849), + [anon_sym_i64] = ACTIONS(1849), + [anon_sym_u128] = ACTIONS(1849), + [anon_sym_i128] = ACTIONS(1849), + [anon_sym_isize] = ACTIONS(1849), + [anon_sym_usize] = ACTIONS(1849), + [anon_sym_f32] = ACTIONS(1849), + [anon_sym_f64] = ACTIONS(1849), + [anon_sym_bool] = ACTIONS(1849), + [anon_sym_str] = ACTIONS(1849), + [anon_sym_char] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_gen] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_impl] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_loop] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_mod] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_trait] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_use] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1849), + [anon_sym_move] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1849), + [sym_integer_literal] = ACTIONS(1847), + [aux_sym_string_literal_token1] = ACTIONS(1847), + [sym_char_literal] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1849), + [sym_super] = ACTIONS(1849), + [sym_crate] = ACTIONS(1849), + [sym_metavariable] = ACTIONS(1847), + [sym__raw_string_literal_start] = ACTIONS(1847), + [sym_float_literal] = ACTIONS(1847), }, [520] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [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_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [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_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_macro_rules_BANG] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_u8] = ACTIONS(1853), + [anon_sym_i8] = ACTIONS(1853), + [anon_sym_u16] = ACTIONS(1853), + [anon_sym_i16] = ACTIONS(1853), + [anon_sym_u32] = ACTIONS(1853), + [anon_sym_i32] = ACTIONS(1853), + [anon_sym_u64] = ACTIONS(1853), + [anon_sym_i64] = ACTIONS(1853), + [anon_sym_u128] = ACTIONS(1853), + [anon_sym_i128] = ACTIONS(1853), + [anon_sym_isize] = ACTIONS(1853), + [anon_sym_usize] = ACTIONS(1853), + [anon_sym_f32] = ACTIONS(1853), + [anon_sym_f64] = ACTIONS(1853), + [anon_sym_bool] = ACTIONS(1853), + [anon_sym_str] = ACTIONS(1853), + [anon_sym_char] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_gen] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_impl] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_mod] = ACTIONS(1853), + [anon_sym_pub] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_trait] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_move] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [sym_integer_literal] = ACTIONS(1851), + [aux_sym_string_literal_token1] = ACTIONS(1851), + [sym_char_literal] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_crate] = ACTIONS(1853), + [sym_metavariable] = ACTIONS(1851), + [sym__raw_string_literal_start] = ACTIONS(1851), + [sym_float_literal] = ACTIONS(1851), }, [521] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_macro_rules_BANG] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_u8] = ACTIONS(1857), + [anon_sym_i8] = ACTIONS(1857), + [anon_sym_u16] = ACTIONS(1857), + [anon_sym_i16] = ACTIONS(1857), + [anon_sym_u32] = ACTIONS(1857), + [anon_sym_i32] = ACTIONS(1857), + [anon_sym_u64] = ACTIONS(1857), + [anon_sym_i64] = ACTIONS(1857), + [anon_sym_u128] = ACTIONS(1857), + [anon_sym_i128] = ACTIONS(1857), + [anon_sym_isize] = ACTIONS(1857), + [anon_sym_usize] = ACTIONS(1857), + [anon_sym_f32] = ACTIONS(1857), + [anon_sym_f64] = ACTIONS(1857), + [anon_sym_bool] = ACTIONS(1857), + [anon_sym_str] = ACTIONS(1857), + [anon_sym_char] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [anon_sym_fn] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_gen] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_impl] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1857), + [anon_sym_loop] = ACTIONS(1857), + [anon_sym_match] = ACTIONS(1857), + [anon_sym_mod] = ACTIONS(1857), + [anon_sym_pub] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_trait] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1857), + [anon_sym_unsafe] = ACTIONS(1857), + [anon_sym_use] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_extern] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1857), + [anon_sym_move] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1857), + [sym_integer_literal] = ACTIONS(1855), + [aux_sym_string_literal_token1] = ACTIONS(1855), + [sym_char_literal] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1857), + [sym_super] = ACTIONS(1857), + [sym_crate] = ACTIONS(1857), + [sym_metavariable] = ACTIONS(1855), + [sym__raw_string_literal_start] = ACTIONS(1855), + [sym_float_literal] = ACTIONS(1855), }, [522] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [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_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [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_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1861), + [anon_sym_i8] = ACTIONS(1861), + [anon_sym_u16] = ACTIONS(1861), + [anon_sym_i16] = ACTIONS(1861), + [anon_sym_u32] = ACTIONS(1861), + [anon_sym_i32] = ACTIONS(1861), + [anon_sym_u64] = ACTIONS(1861), + [anon_sym_i64] = ACTIONS(1861), + [anon_sym_u128] = ACTIONS(1861), + [anon_sym_i128] = ACTIONS(1861), + [anon_sym_isize] = ACTIONS(1861), + [anon_sym_usize] = ACTIONS(1861), + [anon_sym_f32] = ACTIONS(1861), + [anon_sym_f64] = ACTIONS(1861), + [anon_sym_bool] = ACTIONS(1861), + [anon_sym_str] = ACTIONS(1861), + [anon_sym_char] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_default] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_gen] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_impl] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_mod] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_trait] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_move] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [sym_integer_literal] = ACTIONS(1859), + [aux_sym_string_literal_token1] = ACTIONS(1859), + [sym_char_literal] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1861), + [sym_super] = ACTIONS(1861), + [sym_crate] = ACTIONS(1861), + [sym_metavariable] = ACTIONS(1859), + [sym__raw_string_literal_start] = ACTIONS(1859), + [sym_float_literal] = ACTIONS(1859), }, [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [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_LBRACK] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [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_extern] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym__raw_string_literal_start] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_macro_rules_BANG] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_u8] = ACTIONS(1865), + [anon_sym_i8] = ACTIONS(1865), + [anon_sym_u16] = ACTIONS(1865), + [anon_sym_i16] = ACTIONS(1865), + [anon_sym_u32] = ACTIONS(1865), + [anon_sym_i32] = ACTIONS(1865), + [anon_sym_u64] = ACTIONS(1865), + [anon_sym_i64] = ACTIONS(1865), + [anon_sym_u128] = ACTIONS(1865), + [anon_sym_i128] = ACTIONS(1865), + [anon_sym_isize] = ACTIONS(1865), + [anon_sym_usize] = ACTIONS(1865), + [anon_sym_f32] = ACTIONS(1865), + [anon_sym_f64] = ACTIONS(1865), + [anon_sym_bool] = ACTIONS(1865), + [anon_sym_str] = ACTIONS(1865), + [anon_sym_char] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_gen] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_impl] = ACTIONS(1865), + [anon_sym_let] = ACTIONS(1865), + [anon_sym_loop] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_mod] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_trait] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_use] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1865), + [anon_sym_yield] = ACTIONS(1865), + [anon_sym_move] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1865), + [sym_integer_literal] = ACTIONS(1863), + [aux_sym_string_literal_token1] = ACTIONS(1863), + [sym_char_literal] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1865), + [sym_super] = ACTIONS(1865), + [sym_crate] = ACTIONS(1865), + [sym_metavariable] = ACTIONS(1863), + [sym__raw_string_literal_start] = ACTIONS(1863), + [sym_float_literal] = ACTIONS(1863), }, [524] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym__raw_string_literal_start] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_identifier] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_macro_rules_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_u8] = ACTIONS(1869), + [anon_sym_i8] = ACTIONS(1869), + [anon_sym_u16] = ACTIONS(1869), + [anon_sym_i16] = ACTIONS(1869), + [anon_sym_u32] = ACTIONS(1869), + [anon_sym_i32] = ACTIONS(1869), + [anon_sym_u64] = ACTIONS(1869), + [anon_sym_i64] = ACTIONS(1869), + [anon_sym_u128] = ACTIONS(1869), + [anon_sym_i128] = ACTIONS(1869), + [anon_sym_isize] = ACTIONS(1869), + [anon_sym_usize] = ACTIONS(1869), + [anon_sym_f32] = ACTIONS(1869), + [anon_sym_f64] = ACTIONS(1869), + [anon_sym_bool] = ACTIONS(1869), + [anon_sym_str] = ACTIONS(1869), + [anon_sym_char] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_gen] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_impl] = ACTIONS(1869), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_loop] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_mod] = ACTIONS(1869), + [anon_sym_pub] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1869), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_trait] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_use] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_extern] = ACTIONS(1869), + [anon_sym_yield] = ACTIONS(1869), + [anon_sym_move] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1869), + [sym_integer_literal] = ACTIONS(1867), + [aux_sym_string_literal_token1] = ACTIONS(1867), + [sym_char_literal] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1869), + [sym_super] = ACTIONS(1869), + [sym_crate] = ACTIONS(1869), + [sym_metavariable] = ACTIONS(1867), + [sym__raw_string_literal_start] = ACTIONS(1867), + [sym_float_literal] = ACTIONS(1867), }, [525] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [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_LBRACK] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [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_extern] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym__raw_string_literal_start] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_macro_rules_BANG] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_u8] = ACTIONS(1873), + [anon_sym_i8] = ACTIONS(1873), + [anon_sym_u16] = ACTIONS(1873), + [anon_sym_i16] = ACTIONS(1873), + [anon_sym_u32] = ACTIONS(1873), + [anon_sym_i32] = ACTIONS(1873), + [anon_sym_u64] = ACTIONS(1873), + [anon_sym_i64] = ACTIONS(1873), + [anon_sym_u128] = ACTIONS(1873), + [anon_sym_i128] = ACTIONS(1873), + [anon_sym_isize] = ACTIONS(1873), + [anon_sym_usize] = ACTIONS(1873), + [anon_sym_f32] = ACTIONS(1873), + [anon_sym_f64] = ACTIONS(1873), + [anon_sym_bool] = ACTIONS(1873), + [anon_sym_str] = ACTIONS(1873), + [anon_sym_char] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_fn] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_gen] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_impl] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_mod] = ACTIONS(1873), + [anon_sym_pub] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1873), + [anon_sym_trait] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_union] = ACTIONS(1873), + [anon_sym_unsafe] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_move] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [sym_integer_literal] = ACTIONS(1871), + [aux_sym_string_literal_token1] = ACTIONS(1871), + [sym_char_literal] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_crate] = ACTIONS(1873), + [sym_metavariable] = ACTIONS(1871), + [sym__raw_string_literal_start] = ACTIONS(1871), + [sym_float_literal] = ACTIONS(1871), }, [526] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym__raw_string_literal_start] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_macro_rules_BANG] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_u8] = ACTIONS(1877), + [anon_sym_i8] = ACTIONS(1877), + [anon_sym_u16] = ACTIONS(1877), + [anon_sym_i16] = ACTIONS(1877), + [anon_sym_u32] = ACTIONS(1877), + [anon_sym_i32] = ACTIONS(1877), + [anon_sym_u64] = ACTIONS(1877), + [anon_sym_i64] = ACTIONS(1877), + [anon_sym_u128] = ACTIONS(1877), + [anon_sym_i128] = ACTIONS(1877), + [anon_sym_isize] = ACTIONS(1877), + [anon_sym_usize] = ACTIONS(1877), + [anon_sym_f32] = ACTIONS(1877), + [anon_sym_f64] = ACTIONS(1877), + [anon_sym_bool] = ACTIONS(1877), + [anon_sym_str] = ACTIONS(1877), + [anon_sym_char] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_gen] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_impl] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_mod] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_trait] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_move] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [sym_integer_literal] = ACTIONS(1875), + [aux_sym_string_literal_token1] = ACTIONS(1875), + [sym_char_literal] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_crate] = ACTIONS(1877), + [sym_metavariable] = ACTIONS(1875), + [sym__raw_string_literal_start] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), }, [527] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym__raw_string_literal_start] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_macro_rules_BANG] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_u8] = ACTIONS(1881), + [anon_sym_i8] = ACTIONS(1881), + [anon_sym_u16] = ACTIONS(1881), + [anon_sym_i16] = ACTIONS(1881), + [anon_sym_u32] = ACTIONS(1881), + [anon_sym_i32] = ACTIONS(1881), + [anon_sym_u64] = ACTIONS(1881), + [anon_sym_i64] = ACTIONS(1881), + [anon_sym_u128] = ACTIONS(1881), + [anon_sym_i128] = ACTIONS(1881), + [anon_sym_isize] = ACTIONS(1881), + [anon_sym_usize] = ACTIONS(1881), + [anon_sym_f32] = ACTIONS(1881), + [anon_sym_f64] = ACTIONS(1881), + [anon_sym_bool] = ACTIONS(1881), + [anon_sym_str] = ACTIONS(1881), + [anon_sym_char] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_gen] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_mod] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_trait] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_move] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [sym_integer_literal] = ACTIONS(1879), + [aux_sym_string_literal_token1] = ACTIONS(1879), + [sym_char_literal] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_crate] = ACTIONS(1881), + [sym_metavariable] = ACTIONS(1879), + [sym__raw_string_literal_start] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), }, [528] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym__raw_string_literal_start] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1883), + [sym_identifier] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_macro_rules_BANG] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_u8] = ACTIONS(1885), + [anon_sym_i8] = ACTIONS(1885), + [anon_sym_u16] = ACTIONS(1885), + [anon_sym_i16] = ACTIONS(1885), + [anon_sym_u32] = ACTIONS(1885), + [anon_sym_i32] = ACTIONS(1885), + [anon_sym_u64] = ACTIONS(1885), + [anon_sym_i64] = ACTIONS(1885), + [anon_sym_u128] = ACTIONS(1885), + [anon_sym_i128] = ACTIONS(1885), + [anon_sym_isize] = ACTIONS(1885), + [anon_sym_usize] = ACTIONS(1885), + [anon_sym_f32] = ACTIONS(1885), + [anon_sym_f64] = ACTIONS(1885), + [anon_sym_bool] = ACTIONS(1885), + [anon_sym_str] = ACTIONS(1885), + [anon_sym_char] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_COLON_COLON] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(1883), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_async] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_default] = ACTIONS(1885), + [anon_sym_enum] = ACTIONS(1885), + [anon_sym_fn] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_gen] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_impl] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1885), + [anon_sym_trait] = ACTIONS(1885), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_union] = ACTIONS(1885), + [anon_sym_unsafe] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_yield] = ACTIONS(1885), + [anon_sym_move] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1885), + [sym_integer_literal] = ACTIONS(1883), + [aux_sym_string_literal_token1] = ACTIONS(1883), + [sym_char_literal] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1885), + [sym_super] = ACTIONS(1885), + [sym_crate] = ACTIONS(1885), + [sym_metavariable] = ACTIONS(1883), + [sym__raw_string_literal_start] = ACTIONS(1883), + [sym_float_literal] = ACTIONS(1883), }, [529] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym__raw_string_literal_start] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_macro_rules_BANG] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_u8] = ACTIONS(1889), + [anon_sym_i8] = ACTIONS(1889), + [anon_sym_u16] = ACTIONS(1889), + [anon_sym_i16] = ACTIONS(1889), + [anon_sym_u32] = ACTIONS(1889), + [anon_sym_i32] = ACTIONS(1889), + [anon_sym_u64] = ACTIONS(1889), + [anon_sym_i64] = ACTIONS(1889), + [anon_sym_u128] = ACTIONS(1889), + [anon_sym_i128] = ACTIONS(1889), + [anon_sym_isize] = ACTIONS(1889), + [anon_sym_usize] = ACTIONS(1889), + [anon_sym_f32] = ACTIONS(1889), + [anon_sym_f64] = ACTIONS(1889), + [anon_sym_bool] = ACTIONS(1889), + [anon_sym_str] = ACTIONS(1889), + [anon_sym_char] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_COLON_COLON] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_gen] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_impl] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_mod] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1889), + [anon_sym_move] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [sym_integer_literal] = ACTIONS(1887), + [aux_sym_string_literal_token1] = ACTIONS(1887), + [sym_char_literal] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_crate] = ACTIONS(1889), + [sym_metavariable] = ACTIONS(1887), + [sym__raw_string_literal_start] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), }, [530] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym__raw_string_literal_start] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_macro_rules_BANG] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_u8] = ACTIONS(1893), + [anon_sym_i8] = ACTIONS(1893), + [anon_sym_u16] = ACTIONS(1893), + [anon_sym_i16] = ACTIONS(1893), + [anon_sym_u32] = ACTIONS(1893), + [anon_sym_i32] = ACTIONS(1893), + [anon_sym_u64] = ACTIONS(1893), + [anon_sym_i64] = ACTIONS(1893), + [anon_sym_u128] = ACTIONS(1893), + [anon_sym_i128] = ACTIONS(1893), + [anon_sym_isize] = ACTIONS(1893), + [anon_sym_usize] = ACTIONS(1893), + [anon_sym_f32] = ACTIONS(1893), + [anon_sym_f64] = ACTIONS(1893), + [anon_sym_bool] = ACTIONS(1893), + [anon_sym_str] = ACTIONS(1893), + [anon_sym_char] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_COLON_COLON] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_fn] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_gen] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_impl] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_mod] = ACTIONS(1893), + [anon_sym_pub] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(1893), + [anon_sym_trait] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1893), + [anon_sym_unsafe] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_move] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [sym_integer_literal] = ACTIONS(1891), + [aux_sym_string_literal_token1] = ACTIONS(1891), + [sym_char_literal] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_crate] = ACTIONS(1893), + [sym_metavariable] = ACTIONS(1891), + [sym__raw_string_literal_start] = ACTIONS(1891), + [sym_float_literal] = ACTIONS(1891), }, [531] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym__raw_string_literal_start] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_macro_rules_BANG] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_u8] = ACTIONS(1897), + [anon_sym_i8] = ACTIONS(1897), + [anon_sym_u16] = ACTIONS(1897), + [anon_sym_i16] = ACTIONS(1897), + [anon_sym_u32] = ACTIONS(1897), + [anon_sym_i32] = ACTIONS(1897), + [anon_sym_u64] = ACTIONS(1897), + [anon_sym_i64] = ACTIONS(1897), + [anon_sym_u128] = ACTIONS(1897), + [anon_sym_i128] = ACTIONS(1897), + [anon_sym_isize] = ACTIONS(1897), + [anon_sym_usize] = ACTIONS(1897), + [anon_sym_f32] = ACTIONS(1897), + [anon_sym_f64] = ACTIONS(1897), + [anon_sym_bool] = ACTIONS(1897), + [anon_sym_str] = ACTIONS(1897), + [anon_sym_char] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_gen] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_impl] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_mod] = ACTIONS(1897), + [anon_sym_pub] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_trait] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_move] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [sym_integer_literal] = ACTIONS(1895), + [aux_sym_string_literal_token1] = ACTIONS(1895), + [sym_char_literal] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_crate] = ACTIONS(1897), + [sym_metavariable] = ACTIONS(1895), + [sym__raw_string_literal_start] = ACTIONS(1895), + [sym_float_literal] = ACTIONS(1895), }, [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym__raw_string_literal_start] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_macro_rules_BANG] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_u8] = ACTIONS(1901), + [anon_sym_i8] = ACTIONS(1901), + [anon_sym_u16] = ACTIONS(1901), + [anon_sym_i16] = ACTIONS(1901), + [anon_sym_u32] = ACTIONS(1901), + [anon_sym_i32] = ACTIONS(1901), + [anon_sym_u64] = ACTIONS(1901), + [anon_sym_i64] = ACTIONS(1901), + [anon_sym_u128] = ACTIONS(1901), + [anon_sym_i128] = ACTIONS(1901), + [anon_sym_isize] = ACTIONS(1901), + [anon_sym_usize] = ACTIONS(1901), + [anon_sym_f32] = ACTIONS(1901), + [anon_sym_f64] = ACTIONS(1901), + [anon_sym_bool] = ACTIONS(1901), + [anon_sym_str] = ACTIONS(1901), + [anon_sym_char] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_fn] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_gen] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_impl] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_mod] = ACTIONS(1901), + [anon_sym_pub] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_trait] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_unsafe] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1901), + [anon_sym_move] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [sym_integer_literal] = ACTIONS(1899), + [aux_sym_string_literal_token1] = ACTIONS(1899), + [sym_char_literal] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_crate] = ACTIONS(1901), + [sym_metavariable] = ACTIONS(1899), + [sym__raw_string_literal_start] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), }, [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym__raw_string_literal_start] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1903), + [sym_identifier] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_macro_rules_BANG] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_u8] = ACTIONS(1905), + [anon_sym_i8] = ACTIONS(1905), + [anon_sym_u16] = ACTIONS(1905), + [anon_sym_i16] = ACTIONS(1905), + [anon_sym_u32] = ACTIONS(1905), + [anon_sym_i32] = ACTIONS(1905), + [anon_sym_u64] = ACTIONS(1905), + [anon_sym_i64] = ACTIONS(1905), + [anon_sym_u128] = ACTIONS(1905), + [anon_sym_i128] = ACTIONS(1905), + [anon_sym_isize] = ACTIONS(1905), + [anon_sym_usize] = ACTIONS(1905), + [anon_sym_f32] = ACTIONS(1905), + [anon_sym_f64] = ACTIONS(1905), + [anon_sym_bool] = ACTIONS(1905), + [anon_sym_str] = ACTIONS(1905), + [anon_sym_char] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_async] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_default] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_fn] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_gen] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_impl] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_mod] = ACTIONS(1905), + [anon_sym_pub] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_trait] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_unsafe] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_yield] = ACTIONS(1905), + [anon_sym_move] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1905), + [sym_integer_literal] = ACTIONS(1903), + [aux_sym_string_literal_token1] = ACTIONS(1903), + [sym_char_literal] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1905), + [sym_metavariable] = ACTIONS(1903), + [sym__raw_string_literal_start] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), }, [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym__raw_string_literal_start] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1907), + [sym_identifier] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_macro_rules_BANG] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_u8] = ACTIONS(1909), + [anon_sym_i8] = ACTIONS(1909), + [anon_sym_u16] = ACTIONS(1909), + [anon_sym_i16] = ACTIONS(1909), + [anon_sym_u32] = ACTIONS(1909), + [anon_sym_i32] = ACTIONS(1909), + [anon_sym_u64] = ACTIONS(1909), + [anon_sym_i64] = ACTIONS(1909), + [anon_sym_u128] = ACTIONS(1909), + [anon_sym_i128] = ACTIONS(1909), + [anon_sym_isize] = ACTIONS(1909), + [anon_sym_usize] = ACTIONS(1909), + [anon_sym_f32] = ACTIONS(1909), + [anon_sym_f64] = ACTIONS(1909), + [anon_sym_bool] = ACTIONS(1909), + [anon_sym_str] = ACTIONS(1909), + [anon_sym_char] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_COLON_COLON] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1907), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1909), + [anon_sym_enum] = ACTIONS(1909), + [anon_sym_fn] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_gen] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_impl] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_mod] = ACTIONS(1909), + [anon_sym_pub] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1909), + [anon_sym_struct] = ACTIONS(1909), + [anon_sym_trait] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_union] = ACTIONS(1909), + [anon_sym_unsafe] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_yield] = ACTIONS(1909), + [anon_sym_move] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [sym_integer_literal] = ACTIONS(1907), + [aux_sym_string_literal_token1] = ACTIONS(1907), + [sym_char_literal] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1909), + [sym_super] = ACTIONS(1909), + [sym_crate] = ACTIONS(1909), + [sym_metavariable] = ACTIONS(1907), + [sym__raw_string_literal_start] = ACTIONS(1907), + [sym_float_literal] = ACTIONS(1907), }, [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [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_LBRACK] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [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_extern] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym__raw_string_literal_start] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_macro_rules_BANG] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_u8] = ACTIONS(1913), + [anon_sym_i8] = ACTIONS(1913), + [anon_sym_u16] = ACTIONS(1913), + [anon_sym_i16] = ACTIONS(1913), + [anon_sym_u32] = ACTIONS(1913), + [anon_sym_i32] = ACTIONS(1913), + [anon_sym_u64] = ACTIONS(1913), + [anon_sym_i64] = ACTIONS(1913), + [anon_sym_u128] = ACTIONS(1913), + [anon_sym_i128] = ACTIONS(1913), + [anon_sym_isize] = ACTIONS(1913), + [anon_sym_usize] = ACTIONS(1913), + [anon_sym_f32] = ACTIONS(1913), + [anon_sym_f64] = ACTIONS(1913), + [anon_sym_bool] = ACTIONS(1913), + [anon_sym_str] = ACTIONS(1913), + [anon_sym_char] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_default] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_gen] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_impl] = ACTIONS(1913), + [anon_sym_let] = ACTIONS(1913), + [anon_sym_loop] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_mod] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_static] = ACTIONS(1913), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_trait] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_use] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_extern] = ACTIONS(1913), + [anon_sym_yield] = ACTIONS(1913), + [anon_sym_move] = ACTIONS(1913), + [anon_sym_try] = ACTIONS(1913), + [sym_integer_literal] = ACTIONS(1911), + [aux_sym_string_literal_token1] = ACTIONS(1911), + [sym_char_literal] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1913), + [sym_super] = ACTIONS(1913), + [sym_crate] = ACTIONS(1913), + [sym_metavariable] = ACTIONS(1911), + [sym__raw_string_literal_start] = ACTIONS(1911), + [sym_float_literal] = ACTIONS(1911), }, [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym__raw_string_literal_start] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_macro_rules_BANG] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_u8] = ACTIONS(1917), + [anon_sym_i8] = ACTIONS(1917), + [anon_sym_u16] = ACTIONS(1917), + [anon_sym_i16] = ACTIONS(1917), + [anon_sym_u32] = ACTIONS(1917), + [anon_sym_i32] = ACTIONS(1917), + [anon_sym_u64] = ACTIONS(1917), + [anon_sym_i64] = ACTIONS(1917), + [anon_sym_u128] = ACTIONS(1917), + [anon_sym_i128] = ACTIONS(1917), + [anon_sym_isize] = ACTIONS(1917), + [anon_sym_usize] = ACTIONS(1917), + [anon_sym_f32] = ACTIONS(1917), + [anon_sym_f64] = ACTIONS(1917), + [anon_sym_bool] = ACTIONS(1917), + [anon_sym_str] = ACTIONS(1917), + [anon_sym_char] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_fn] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_gen] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_impl] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_mod] = ACTIONS(1917), + [anon_sym_pub] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1917), + [anon_sym_trait] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1917), + [anon_sym_unsafe] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_move] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [sym_integer_literal] = ACTIONS(1915), + [aux_sym_string_literal_token1] = ACTIONS(1915), + [sym_char_literal] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_crate] = ACTIONS(1917), + [sym_metavariable] = ACTIONS(1915), + [sym__raw_string_literal_start] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), }, [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [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_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1894), - [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_extern] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym__raw_string_literal_start] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_macro_rules_BANG] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_u8] = ACTIONS(1921), + [anon_sym_i8] = ACTIONS(1921), + [anon_sym_u16] = ACTIONS(1921), + [anon_sym_i16] = ACTIONS(1921), + [anon_sym_u32] = ACTIONS(1921), + [anon_sym_i32] = ACTIONS(1921), + [anon_sym_u64] = ACTIONS(1921), + [anon_sym_i64] = ACTIONS(1921), + [anon_sym_u128] = ACTIONS(1921), + [anon_sym_i128] = ACTIONS(1921), + [anon_sym_isize] = ACTIONS(1921), + [anon_sym_usize] = ACTIONS(1921), + [anon_sym_f32] = ACTIONS(1921), + [anon_sym_f64] = ACTIONS(1921), + [anon_sym_bool] = ACTIONS(1921), + [anon_sym_str] = ACTIONS(1921), + [anon_sym_char] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_COLON_COLON] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_fn] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_gen] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_impl] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_mod] = ACTIONS(1921), + [anon_sym_pub] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_trait] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_unsafe] = ACTIONS(1921), + [anon_sym_use] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1921), + [anon_sym_move] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [sym_integer_literal] = ACTIONS(1919), + [aux_sym_string_literal_token1] = ACTIONS(1919), + [sym_char_literal] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_crate] = ACTIONS(1921), + [sym_metavariable] = ACTIONS(1919), + [sym__raw_string_literal_start] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), }, [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [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_LBRACK] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1898), - [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_extern] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym__raw_string_literal_start] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_macro_rules_BANG] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_u8] = ACTIONS(1925), + [anon_sym_i8] = ACTIONS(1925), + [anon_sym_u16] = ACTIONS(1925), + [anon_sym_i16] = ACTIONS(1925), + [anon_sym_u32] = ACTIONS(1925), + [anon_sym_i32] = ACTIONS(1925), + [anon_sym_u64] = ACTIONS(1925), + [anon_sym_i64] = ACTIONS(1925), + [anon_sym_u128] = ACTIONS(1925), + [anon_sym_i128] = ACTIONS(1925), + [anon_sym_isize] = ACTIONS(1925), + [anon_sym_usize] = ACTIONS(1925), + [anon_sym_f32] = ACTIONS(1925), + [anon_sym_f64] = ACTIONS(1925), + [anon_sym_bool] = ACTIONS(1925), + [anon_sym_str] = ACTIONS(1925), + [anon_sym_char] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1923), + [anon_sym_COLON_COLON] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_enum] = ACTIONS(1925), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_gen] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_impl] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_mod] = ACTIONS(1925), + [anon_sym_pub] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_struct] = ACTIONS(1925), + [anon_sym_trait] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_unsafe] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1925), + [anon_sym_move] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1925), + [sym_integer_literal] = ACTIONS(1923), + [aux_sym_string_literal_token1] = ACTIONS(1923), + [sym_char_literal] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1925), + [anon_sym_false] = ACTIONS(1925), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1925), + [sym_super] = ACTIONS(1925), + [sym_crate] = ACTIONS(1925), + [sym_metavariable] = ACTIONS(1923), + [sym__raw_string_literal_start] = ACTIONS(1923), + [sym_float_literal] = ACTIONS(1923), }, [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [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_LBRACK] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [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_extern] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym__raw_string_literal_start] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1927), + [sym_identifier] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_macro_rules_BANG] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_u8] = ACTIONS(1929), + [anon_sym_i8] = ACTIONS(1929), + [anon_sym_u16] = ACTIONS(1929), + [anon_sym_i16] = ACTIONS(1929), + [anon_sym_u32] = ACTIONS(1929), + [anon_sym_i32] = ACTIONS(1929), + [anon_sym_u64] = ACTIONS(1929), + [anon_sym_i64] = ACTIONS(1929), + [anon_sym_u128] = ACTIONS(1929), + [anon_sym_i128] = ACTIONS(1929), + [anon_sym_isize] = ACTIONS(1929), + [anon_sym_usize] = ACTIONS(1929), + [anon_sym_f32] = ACTIONS(1929), + [anon_sym_f64] = ACTIONS(1929), + [anon_sym_bool] = ACTIONS(1929), + [anon_sym_str] = ACTIONS(1929), + [anon_sym_char] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_COLON_COLON] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(1927), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_async] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1929), + [anon_sym_enum] = ACTIONS(1929), + [anon_sym_fn] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_gen] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_impl] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_mod] = ACTIONS(1929), + [anon_sym_pub] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1929), + [anon_sym_trait] = ACTIONS(1929), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_union] = ACTIONS(1929), + [anon_sym_unsafe] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_yield] = ACTIONS(1929), + [anon_sym_move] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1929), + [sym_integer_literal] = ACTIONS(1927), + [aux_sym_string_literal_token1] = ACTIONS(1927), + [sym_char_literal] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1929), + [sym_super] = ACTIONS(1929), + [sym_crate] = ACTIONS(1929), + [sym_metavariable] = ACTIONS(1927), + [sym__raw_string_literal_start] = ACTIONS(1927), + [sym_float_literal] = ACTIONS(1927), }, [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [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_LBRACK] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [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_extern] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym__raw_string_literal_start] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_macro_rules_BANG] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_u8] = ACTIONS(1933), + [anon_sym_i8] = ACTIONS(1933), + [anon_sym_u16] = ACTIONS(1933), + [anon_sym_i16] = ACTIONS(1933), + [anon_sym_u32] = ACTIONS(1933), + [anon_sym_i32] = ACTIONS(1933), + [anon_sym_u64] = ACTIONS(1933), + [anon_sym_i64] = ACTIONS(1933), + [anon_sym_u128] = ACTIONS(1933), + [anon_sym_i128] = ACTIONS(1933), + [anon_sym_isize] = ACTIONS(1933), + [anon_sym_usize] = ACTIONS(1933), + [anon_sym_f32] = ACTIONS(1933), + [anon_sym_f64] = ACTIONS(1933), + [anon_sym_bool] = ACTIONS(1933), + [anon_sym_str] = ACTIONS(1933), + [anon_sym_char] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_async] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_default] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_gen] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_impl] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_mod] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_trait] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_yield] = ACTIONS(1933), + [anon_sym_move] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1933), + [sym_integer_literal] = ACTIONS(1931), + [aux_sym_string_literal_token1] = ACTIONS(1931), + [sym_char_literal] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1933), + [sym_super] = ACTIONS(1933), + [sym_crate] = ACTIONS(1933), + [sym_metavariable] = ACTIONS(1931), + [sym__raw_string_literal_start] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), }, [541] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [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_LBRACK] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1910), - [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_extern] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym__raw_string_literal_start] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_macro_rules_BANG] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_u8] = ACTIONS(1937), + [anon_sym_i8] = ACTIONS(1937), + [anon_sym_u16] = ACTIONS(1937), + [anon_sym_i16] = ACTIONS(1937), + [anon_sym_u32] = ACTIONS(1937), + [anon_sym_i32] = ACTIONS(1937), + [anon_sym_u64] = ACTIONS(1937), + [anon_sym_i64] = ACTIONS(1937), + [anon_sym_u128] = ACTIONS(1937), + [anon_sym_i128] = ACTIONS(1937), + [anon_sym_isize] = ACTIONS(1937), + [anon_sym_usize] = ACTIONS(1937), + [anon_sym_f32] = ACTIONS(1937), + [anon_sym_f64] = ACTIONS(1937), + [anon_sym_bool] = ACTIONS(1937), + [anon_sym_str] = ACTIONS(1937), + [anon_sym_char] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(1935), + [anon_sym_SQUOTE] = ACTIONS(1937), + [anon_sym_async] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_default] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_gen] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_impl] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_mod] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_trait] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_yield] = ACTIONS(1937), + [anon_sym_move] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1937), + [sym_integer_literal] = ACTIONS(1935), + [aux_sym_string_literal_token1] = ACTIONS(1935), + [sym_char_literal] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1937), + [anon_sym_false] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1937), + [sym_super] = ACTIONS(1937), + [sym_crate] = ACTIONS(1937), + [sym_metavariable] = ACTIONS(1935), + [sym__raw_string_literal_start] = ACTIONS(1935), + [sym_float_literal] = ACTIONS(1935), }, [542] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [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_LBRACK] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1914), - [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_extern] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym__raw_string_literal_start] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_macro_rules_BANG] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_u8] = ACTIONS(1941), + [anon_sym_i8] = ACTIONS(1941), + [anon_sym_u16] = ACTIONS(1941), + [anon_sym_i16] = ACTIONS(1941), + [anon_sym_u32] = ACTIONS(1941), + [anon_sym_i32] = ACTIONS(1941), + [anon_sym_u64] = ACTIONS(1941), + [anon_sym_i64] = ACTIONS(1941), + [anon_sym_u128] = ACTIONS(1941), + [anon_sym_i128] = ACTIONS(1941), + [anon_sym_isize] = ACTIONS(1941), + [anon_sym_usize] = ACTIONS(1941), + [anon_sym_f32] = ACTIONS(1941), + [anon_sym_f64] = ACTIONS(1941), + [anon_sym_bool] = ACTIONS(1941), + [anon_sym_str] = ACTIONS(1941), + [anon_sym_char] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(1939), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_default] = ACTIONS(1941), + [anon_sym_enum] = ACTIONS(1941), + [anon_sym_fn] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_gen] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_impl] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_mod] = ACTIONS(1941), + [anon_sym_pub] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_static] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1941), + [anon_sym_trait] = ACTIONS(1941), + [anon_sym_type] = ACTIONS(1941), + [anon_sym_union] = ACTIONS(1941), + [anon_sym_unsafe] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_yield] = ACTIONS(1941), + [anon_sym_move] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1941), + [sym_integer_literal] = ACTIONS(1939), + [aux_sym_string_literal_token1] = ACTIONS(1939), + [sym_char_literal] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1941), + [sym_super] = ACTIONS(1941), + [sym_crate] = ACTIONS(1941), + [sym_metavariable] = ACTIONS(1939), + [sym__raw_string_literal_start] = ACTIONS(1939), + [sym_float_literal] = ACTIONS(1939), }, [543] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [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_LBRACK] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1918), - [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_extern] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym__raw_string_literal_start] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_macro_rules_BANG] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_u8] = ACTIONS(1945), + [anon_sym_i8] = ACTIONS(1945), + [anon_sym_u16] = ACTIONS(1945), + [anon_sym_i16] = ACTIONS(1945), + [anon_sym_u32] = ACTIONS(1945), + [anon_sym_i32] = ACTIONS(1945), + [anon_sym_u64] = ACTIONS(1945), + [anon_sym_i64] = ACTIONS(1945), + [anon_sym_u128] = ACTIONS(1945), + [anon_sym_i128] = ACTIONS(1945), + [anon_sym_isize] = ACTIONS(1945), + [anon_sym_usize] = ACTIONS(1945), + [anon_sym_f32] = ACTIONS(1945), + [anon_sym_f64] = ACTIONS(1945), + [anon_sym_bool] = ACTIONS(1945), + [anon_sym_str] = ACTIONS(1945), + [anon_sym_char] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(1943), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_async] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_gen] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_impl] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_mod] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_trait] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_yield] = ACTIONS(1945), + [anon_sym_move] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1945), + [sym_integer_literal] = ACTIONS(1943), + [aux_sym_string_literal_token1] = ACTIONS(1943), + [sym_char_literal] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1945), + [sym_super] = ACTIONS(1945), + [sym_crate] = ACTIONS(1945), + [sym_metavariable] = ACTIONS(1943), + [sym__raw_string_literal_start] = ACTIONS(1943), + [sym_float_literal] = ACTIONS(1943), }, [544] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [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_LBRACK] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1922), - [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_extern] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym__raw_string_literal_start] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym_identifier] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_macro_rules_BANG] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_u8] = ACTIONS(1949), + [anon_sym_i8] = ACTIONS(1949), + [anon_sym_u16] = ACTIONS(1949), + [anon_sym_i16] = ACTIONS(1949), + [anon_sym_u32] = ACTIONS(1949), + [anon_sym_i32] = ACTIONS(1949), + [anon_sym_u64] = ACTIONS(1949), + [anon_sym_i64] = ACTIONS(1949), + [anon_sym_u128] = ACTIONS(1949), + [anon_sym_i128] = ACTIONS(1949), + [anon_sym_isize] = ACTIONS(1949), + [anon_sym_usize] = ACTIONS(1949), + [anon_sym_f32] = ACTIONS(1949), + [anon_sym_f64] = ACTIONS(1949), + [anon_sym_bool] = ACTIONS(1949), + [anon_sym_str] = ACTIONS(1949), + [anon_sym_char] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_async] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_default] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_fn] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_gen] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_impl] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_mod] = ACTIONS(1949), + [anon_sym_pub] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [anon_sym_trait] = ACTIONS(1949), + [anon_sym_type] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsafe] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_yield] = ACTIONS(1949), + [anon_sym_move] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [sym_integer_literal] = ACTIONS(1947), + [aux_sym_string_literal_token1] = ACTIONS(1947), + [sym_char_literal] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1949), + [sym_super] = ACTIONS(1949), + [sym_crate] = ACTIONS(1949), + [sym_metavariable] = ACTIONS(1947), + [sym__raw_string_literal_start] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1947), }, [545] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym__raw_string_literal_start] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(1951), + [sym_identifier] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_macro_rules_BANG] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_u8] = ACTIONS(1953), + [anon_sym_i8] = ACTIONS(1953), + [anon_sym_u16] = ACTIONS(1953), + [anon_sym_i16] = ACTIONS(1953), + [anon_sym_u32] = ACTIONS(1953), + [anon_sym_i32] = ACTIONS(1953), + [anon_sym_u64] = ACTIONS(1953), + [anon_sym_i64] = ACTIONS(1953), + [anon_sym_u128] = ACTIONS(1953), + [anon_sym_i128] = ACTIONS(1953), + [anon_sym_isize] = ACTIONS(1953), + [anon_sym_usize] = ACTIONS(1953), + [anon_sym_f32] = ACTIONS(1953), + [anon_sym_f64] = ACTIONS(1953), + [anon_sym_bool] = ACTIONS(1953), + [anon_sym_str] = ACTIONS(1953), + [anon_sym_char] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_COLON_COLON] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(1951), + [anon_sym_SQUOTE] = ACTIONS(1953), + [anon_sym_async] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_fn] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_gen] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_impl] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_mod] = ACTIONS(1953), + [anon_sym_pub] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_trait] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsafe] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_yield] = ACTIONS(1953), + [anon_sym_move] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [sym_integer_literal] = ACTIONS(1951), + [aux_sym_string_literal_token1] = ACTIONS(1951), + [sym_char_literal] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1953), + [sym_super] = ACTIONS(1953), + [sym_crate] = ACTIONS(1953), + [sym_metavariable] = ACTIONS(1951), + [sym__raw_string_literal_start] = ACTIONS(1951), + [sym_float_literal] = ACTIONS(1951), }, [546] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [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_LBRACK] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [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_extern] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym__raw_string_literal_start] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_macro_rules_BANG] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_u8] = ACTIONS(1957), + [anon_sym_i8] = ACTIONS(1957), + [anon_sym_u16] = ACTIONS(1957), + [anon_sym_i16] = ACTIONS(1957), + [anon_sym_u32] = ACTIONS(1957), + [anon_sym_i32] = ACTIONS(1957), + [anon_sym_u64] = ACTIONS(1957), + [anon_sym_i64] = ACTIONS(1957), + [anon_sym_u128] = ACTIONS(1957), + [anon_sym_i128] = ACTIONS(1957), + [anon_sym_isize] = ACTIONS(1957), + [anon_sym_usize] = ACTIONS(1957), + [anon_sym_f32] = ACTIONS(1957), + [anon_sym_f64] = ACTIONS(1957), + [anon_sym_bool] = ACTIONS(1957), + [anon_sym_str] = ACTIONS(1957), + [anon_sym_char] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_fn] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_gen] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_impl] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_mod] = ACTIONS(1957), + [anon_sym_pub] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_trait] = ACTIONS(1957), + [anon_sym_type] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_yield] = ACTIONS(1957), + [anon_sym_move] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [sym_integer_literal] = ACTIONS(1955), + [aux_sym_string_literal_token1] = ACTIONS(1955), + [sym_char_literal] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1957), + [sym_super] = ACTIONS(1957), + [sym_crate] = ACTIONS(1957), + [sym_metavariable] = ACTIONS(1955), + [sym__raw_string_literal_start] = ACTIONS(1955), + [sym_float_literal] = ACTIONS(1955), }, [547] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [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_LBRACK] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1934), - [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_extern] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym__raw_string_literal_start] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_macro_rules_BANG] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_u8] = ACTIONS(1961), + [anon_sym_i8] = ACTIONS(1961), + [anon_sym_u16] = ACTIONS(1961), + [anon_sym_i16] = ACTIONS(1961), + [anon_sym_u32] = ACTIONS(1961), + [anon_sym_i32] = ACTIONS(1961), + [anon_sym_u64] = ACTIONS(1961), + [anon_sym_i64] = ACTIONS(1961), + [anon_sym_u128] = ACTIONS(1961), + [anon_sym_i128] = ACTIONS(1961), + [anon_sym_isize] = ACTIONS(1961), + [anon_sym_usize] = ACTIONS(1961), + [anon_sym_f32] = ACTIONS(1961), + [anon_sym_f64] = ACTIONS(1961), + [anon_sym_bool] = ACTIONS(1961), + [anon_sym_str] = ACTIONS(1961), + [anon_sym_char] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1959), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1961), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_default] = ACTIONS(1961), + [anon_sym_enum] = ACTIONS(1961), + [anon_sym_fn] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_gen] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_impl] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_mod] = ACTIONS(1961), + [anon_sym_pub] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_struct] = ACTIONS(1961), + [anon_sym_trait] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_union] = ACTIONS(1961), + [anon_sym_unsafe] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_yield] = ACTIONS(1961), + [anon_sym_move] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [sym_integer_literal] = ACTIONS(1959), + [aux_sym_string_literal_token1] = ACTIONS(1959), + [sym_char_literal] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1961), + [sym_super] = ACTIONS(1961), + [sym_crate] = ACTIONS(1961), + [sym_metavariable] = ACTIONS(1959), + [sym__raw_string_literal_start] = ACTIONS(1959), + [sym_float_literal] = ACTIONS(1959), }, [548] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [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_LBRACK] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [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_extern] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym__raw_string_literal_start] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_macro_rules_BANG] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_u8] = ACTIONS(1965), + [anon_sym_i8] = ACTIONS(1965), + [anon_sym_u16] = ACTIONS(1965), + [anon_sym_i16] = ACTIONS(1965), + [anon_sym_u32] = ACTIONS(1965), + [anon_sym_i32] = ACTIONS(1965), + [anon_sym_u64] = ACTIONS(1965), + [anon_sym_i64] = ACTIONS(1965), + [anon_sym_u128] = ACTIONS(1965), + [anon_sym_i128] = ACTIONS(1965), + [anon_sym_isize] = ACTIONS(1965), + [anon_sym_usize] = ACTIONS(1965), + [anon_sym_f32] = ACTIONS(1965), + [anon_sym_f64] = ACTIONS(1965), + [anon_sym_bool] = ACTIONS(1965), + [anon_sym_str] = ACTIONS(1965), + [anon_sym_char] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_COLON_COLON] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_async] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_default] = ACTIONS(1965), + [anon_sym_enum] = ACTIONS(1965), + [anon_sym_fn] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_gen] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_impl] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_mod] = ACTIONS(1965), + [anon_sym_pub] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_struct] = ACTIONS(1965), + [anon_sym_trait] = ACTIONS(1965), + [anon_sym_type] = ACTIONS(1965), + [anon_sym_union] = ACTIONS(1965), + [anon_sym_unsafe] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_yield] = ACTIONS(1965), + [anon_sym_move] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [sym_integer_literal] = ACTIONS(1963), + [aux_sym_string_literal_token1] = ACTIONS(1963), + [sym_char_literal] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1965), + [sym_super] = ACTIONS(1965), + [sym_crate] = ACTIONS(1965), + [sym_metavariable] = ACTIONS(1963), + [sym__raw_string_literal_start] = ACTIONS(1963), + [sym_float_literal] = ACTIONS(1963), }, [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [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_LBRACK] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1942), - [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_extern] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym__raw_string_literal_start] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(1967), + [sym_identifier] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_macro_rules_BANG] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_u8] = ACTIONS(1969), + [anon_sym_i8] = ACTIONS(1969), + [anon_sym_u16] = ACTIONS(1969), + [anon_sym_i16] = ACTIONS(1969), + [anon_sym_u32] = ACTIONS(1969), + [anon_sym_i32] = ACTIONS(1969), + [anon_sym_u64] = ACTIONS(1969), + [anon_sym_i64] = ACTIONS(1969), + [anon_sym_u128] = ACTIONS(1969), + [anon_sym_i128] = ACTIONS(1969), + [anon_sym_isize] = ACTIONS(1969), + [anon_sym_usize] = ACTIONS(1969), + [anon_sym_f32] = ACTIONS(1969), + [anon_sym_f64] = ACTIONS(1969), + [anon_sym_bool] = ACTIONS(1969), + [anon_sym_str] = ACTIONS(1969), + [anon_sym_char] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_COLON_COLON] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1967), + [anon_sym_SQUOTE] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_fn] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_gen] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_impl] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_mod] = ACTIONS(1969), + [anon_sym_pub] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_struct] = ACTIONS(1969), + [anon_sym_trait] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_union] = ACTIONS(1969), + [anon_sym_unsafe] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_move] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [sym_integer_literal] = ACTIONS(1967), + [aux_sym_string_literal_token1] = ACTIONS(1967), + [sym_char_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_crate] = ACTIONS(1969), + [sym_metavariable] = ACTIONS(1967), + [sym__raw_string_literal_start] = ACTIONS(1967), + [sym_float_literal] = ACTIONS(1967), }, [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [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_LBRACK] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1946), - [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_extern] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym__raw_string_literal_start] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_macro_rules_BANG] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_u8] = ACTIONS(1973), + [anon_sym_i8] = ACTIONS(1973), + [anon_sym_u16] = ACTIONS(1973), + [anon_sym_i16] = ACTIONS(1973), + [anon_sym_u32] = ACTIONS(1973), + [anon_sym_i32] = ACTIONS(1973), + [anon_sym_u64] = ACTIONS(1973), + [anon_sym_i64] = ACTIONS(1973), + [anon_sym_u128] = ACTIONS(1973), + [anon_sym_i128] = ACTIONS(1973), + [anon_sym_isize] = ACTIONS(1973), + [anon_sym_usize] = ACTIONS(1973), + [anon_sym_f32] = ACTIONS(1973), + [anon_sym_f64] = ACTIONS(1973), + [anon_sym_bool] = ACTIONS(1973), + [anon_sym_str] = ACTIONS(1973), + [anon_sym_char] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1971), + [anon_sym_COLON_COLON] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_fn] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_gen] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_impl] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mod] = ACTIONS(1973), + [anon_sym_pub] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_struct] = ACTIONS(1973), + [anon_sym_trait] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_union] = ACTIONS(1973), + [anon_sym_unsafe] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_move] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [sym_integer_literal] = ACTIONS(1971), + [aux_sym_string_literal_token1] = ACTIONS(1971), + [sym_char_literal] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_crate] = ACTIONS(1973), + [sym_metavariable] = ACTIONS(1971), + [sym__raw_string_literal_start] = ACTIONS(1971), + [sym_float_literal] = ACTIONS(1971), }, [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [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_LBRACK] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1950), - [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_extern] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym__raw_string_literal_start] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_identifier] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_macro_rules_BANG] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_u8] = ACTIONS(1977), + [anon_sym_i8] = ACTIONS(1977), + [anon_sym_u16] = ACTIONS(1977), + [anon_sym_i16] = ACTIONS(1977), + [anon_sym_u32] = ACTIONS(1977), + [anon_sym_i32] = ACTIONS(1977), + [anon_sym_u64] = ACTIONS(1977), + [anon_sym_i64] = ACTIONS(1977), + [anon_sym_u128] = ACTIONS(1977), + [anon_sym_i128] = ACTIONS(1977), + [anon_sym_isize] = ACTIONS(1977), + [anon_sym_usize] = ACTIONS(1977), + [anon_sym_f32] = ACTIONS(1977), + [anon_sym_f64] = ACTIONS(1977), + [anon_sym_bool] = ACTIONS(1977), + [anon_sym_str] = ACTIONS(1977), + [anon_sym_char] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1975), + [anon_sym_COLON_COLON] = ACTIONS(1975), + [anon_sym_POUND] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1977), + [anon_sym_async] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_default] = ACTIONS(1977), + [anon_sym_enum] = ACTIONS(1977), + [anon_sym_fn] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_gen] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_impl] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_mod] = ACTIONS(1977), + [anon_sym_pub] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1977), + [anon_sym_struct] = ACTIONS(1977), + [anon_sym_trait] = ACTIONS(1977), + [anon_sym_type] = ACTIONS(1977), + [anon_sym_union] = ACTIONS(1977), + [anon_sym_unsafe] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_yield] = ACTIONS(1977), + [anon_sym_move] = ACTIONS(1977), + [anon_sym_try] = ACTIONS(1977), + [sym_integer_literal] = ACTIONS(1975), + [aux_sym_string_literal_token1] = ACTIONS(1975), + [sym_char_literal] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = ACTIONS(1977), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1977), + [sym_super] = ACTIONS(1977), + [sym_crate] = ACTIONS(1977), + [sym_metavariable] = ACTIONS(1975), + [sym__raw_string_literal_start] = ACTIONS(1975), + [sym_float_literal] = ACTIONS(1975), }, [552] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [anon_sym_try] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym__raw_string_literal_start] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym_identifier] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_macro_rules_BANG] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_u8] = ACTIONS(1981), + [anon_sym_i8] = ACTIONS(1981), + [anon_sym_u16] = ACTIONS(1981), + [anon_sym_i16] = ACTIONS(1981), + [anon_sym_u32] = ACTIONS(1981), + [anon_sym_i32] = ACTIONS(1981), + [anon_sym_u64] = ACTIONS(1981), + [anon_sym_i64] = ACTIONS(1981), + [anon_sym_u128] = ACTIONS(1981), + [anon_sym_i128] = ACTIONS(1981), + [anon_sym_isize] = ACTIONS(1981), + [anon_sym_usize] = ACTIONS(1981), + [anon_sym_f32] = ACTIONS(1981), + [anon_sym_f64] = ACTIONS(1981), + [anon_sym_bool] = ACTIONS(1981), + [anon_sym_str] = ACTIONS(1981), + [anon_sym_char] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_COLON_COLON] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1981), + [anon_sym_async] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1981), + [anon_sym_enum] = ACTIONS(1981), + [anon_sym_fn] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_gen] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_impl] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_mod] = ACTIONS(1981), + [anon_sym_pub] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1981), + [anon_sym_struct] = ACTIONS(1981), + [anon_sym_trait] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1981), + [anon_sym_union] = ACTIONS(1981), + [anon_sym_unsafe] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_yield] = ACTIONS(1981), + [anon_sym_move] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [sym_integer_literal] = ACTIONS(1979), + [aux_sym_string_literal_token1] = ACTIONS(1979), + [sym_char_literal] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1981), + [sym_super] = ACTIONS(1981), + [sym_crate] = ACTIONS(1981), + [sym_metavariable] = ACTIONS(1979), + [sym__raw_string_literal_start] = ACTIONS(1979), + [sym_float_literal] = ACTIONS(1979), }, [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_macro_rules_BANG] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_u8] = ACTIONS(1960), - [anon_sym_i8] = ACTIONS(1960), - [anon_sym_u16] = ACTIONS(1960), - [anon_sym_i16] = ACTIONS(1960), - [anon_sym_u32] = ACTIONS(1960), - [anon_sym_i32] = ACTIONS(1960), - [anon_sym_u64] = ACTIONS(1960), - [anon_sym_i64] = ACTIONS(1960), - [anon_sym_u128] = ACTIONS(1960), - [anon_sym_i128] = ACTIONS(1960), - [anon_sym_isize] = ACTIONS(1960), - [anon_sym_usize] = ACTIONS(1960), - [anon_sym_f32] = ACTIONS(1960), - [anon_sym_f64] = ACTIONS(1960), - [anon_sym_bool] = ACTIONS(1960), - [anon_sym_str] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_fn] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_impl] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_mod] = ACTIONS(1960), - [anon_sym_pub] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_trait] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_unsafe] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [sym_integer_literal] = ACTIONS(1958), - [aux_sym_string_literal_token1] = ACTIONS(1958), - [sym_char_literal] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym__raw_string_literal_start] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(1983), + [sym_identifier] = ACTIONS(1985), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_macro_rules_BANG] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_u8] = ACTIONS(1985), + [anon_sym_i8] = ACTIONS(1985), + [anon_sym_u16] = ACTIONS(1985), + [anon_sym_i16] = ACTIONS(1985), + [anon_sym_u32] = ACTIONS(1985), + [anon_sym_i32] = ACTIONS(1985), + [anon_sym_u64] = ACTIONS(1985), + [anon_sym_i64] = ACTIONS(1985), + [anon_sym_u128] = ACTIONS(1985), + [anon_sym_i128] = ACTIONS(1985), + [anon_sym_isize] = ACTIONS(1985), + [anon_sym_usize] = ACTIONS(1985), + [anon_sym_f32] = ACTIONS(1985), + [anon_sym_f64] = ACTIONS(1985), + [anon_sym_bool] = ACTIONS(1985), + [anon_sym_str] = ACTIONS(1985), + [anon_sym_char] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(1983), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_async] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_default] = ACTIONS(1985), + [anon_sym_enum] = ACTIONS(1985), + [anon_sym_fn] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_gen] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_impl] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_mod] = ACTIONS(1985), + [anon_sym_pub] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1985), + [anon_sym_struct] = ACTIONS(1985), + [anon_sym_trait] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1985), + [anon_sym_union] = ACTIONS(1985), + [anon_sym_unsafe] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_move] = ACTIONS(1985), + [anon_sym_try] = ACTIONS(1985), + [sym_integer_literal] = ACTIONS(1983), + [aux_sym_string_literal_token1] = ACTIONS(1983), + [sym_char_literal] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1985), + [sym_super] = ACTIONS(1985), + [sym_crate] = ACTIONS(1985), + [sym_metavariable] = ACTIONS(1983), + [sym__raw_string_literal_start] = ACTIONS(1983), + [sym_float_literal] = ACTIONS(1983), }, [554] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym__raw_string_literal_start] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_identifier] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_macro_rules_BANG] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_u8] = ACTIONS(1989), + [anon_sym_i8] = ACTIONS(1989), + [anon_sym_u16] = ACTIONS(1989), + [anon_sym_i16] = ACTIONS(1989), + [anon_sym_u32] = ACTIONS(1989), + [anon_sym_i32] = ACTIONS(1989), + [anon_sym_u64] = ACTIONS(1989), + [anon_sym_i64] = ACTIONS(1989), + [anon_sym_u128] = ACTIONS(1989), + [anon_sym_i128] = ACTIONS(1989), + [anon_sym_isize] = ACTIONS(1989), + [anon_sym_usize] = ACTIONS(1989), + [anon_sym_f32] = ACTIONS(1989), + [anon_sym_f64] = ACTIONS(1989), + [anon_sym_bool] = ACTIONS(1989), + [anon_sym_str] = ACTIONS(1989), + [anon_sym_char] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1987), + [anon_sym_COLON_COLON] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_SQUOTE] = ACTIONS(1989), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_default] = ACTIONS(1989), + [anon_sym_enum] = ACTIONS(1989), + [anon_sym_fn] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_gen] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_impl] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_mod] = ACTIONS(1989), + [anon_sym_pub] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_static] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1989), + [anon_sym_trait] = ACTIONS(1989), + [anon_sym_type] = ACTIONS(1989), + [anon_sym_union] = ACTIONS(1989), + [anon_sym_unsafe] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_yield] = ACTIONS(1989), + [anon_sym_move] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [sym_integer_literal] = ACTIONS(1987), + [aux_sym_string_literal_token1] = ACTIONS(1987), + [sym_char_literal] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = ACTIONS(1989), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1989), + [sym_super] = ACTIONS(1989), + [sym_crate] = ACTIONS(1989), + [sym_metavariable] = ACTIONS(1987), + [sym__raw_string_literal_start] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), }, [555] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym__raw_string_literal_start] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(1991), + [sym_identifier] = ACTIONS(1993), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_macro_rules_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_u8] = ACTIONS(1993), + [anon_sym_i8] = ACTIONS(1993), + [anon_sym_u16] = ACTIONS(1993), + [anon_sym_i16] = ACTIONS(1993), + [anon_sym_u32] = ACTIONS(1993), + [anon_sym_i32] = ACTIONS(1993), + [anon_sym_u64] = ACTIONS(1993), + [anon_sym_i64] = ACTIONS(1993), + [anon_sym_u128] = ACTIONS(1993), + [anon_sym_i128] = ACTIONS(1993), + [anon_sym_isize] = ACTIONS(1993), + [anon_sym_usize] = ACTIONS(1993), + [anon_sym_f32] = ACTIONS(1993), + [anon_sym_f64] = ACTIONS(1993), + [anon_sym_bool] = ACTIONS(1993), + [anon_sym_str] = ACTIONS(1993), + [anon_sym_char] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_COLON_COLON] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_enum] = ACTIONS(1993), + [anon_sym_fn] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_gen] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_impl] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_mod] = ACTIONS(1993), + [anon_sym_pub] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1993), + [anon_sym_struct] = ACTIONS(1993), + [anon_sym_trait] = ACTIONS(1993), + [anon_sym_type] = ACTIONS(1993), + [anon_sym_union] = ACTIONS(1993), + [anon_sym_unsafe] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_yield] = ACTIONS(1993), + [anon_sym_move] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [sym_integer_literal] = ACTIONS(1991), + [aux_sym_string_literal_token1] = ACTIONS(1991), + [sym_char_literal] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1993), + [sym_super] = ACTIONS(1993), + [sym_crate] = ACTIONS(1993), + [sym_metavariable] = ACTIONS(1991), + [sym__raw_string_literal_start] = ACTIONS(1991), + [sym_float_literal] = ACTIONS(1991), }, [556] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym__raw_string_literal_start] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_macro_rules_BANG] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_u8] = ACTIONS(1997), + [anon_sym_i8] = ACTIONS(1997), + [anon_sym_u16] = ACTIONS(1997), + [anon_sym_i16] = ACTIONS(1997), + [anon_sym_u32] = ACTIONS(1997), + [anon_sym_i32] = ACTIONS(1997), + [anon_sym_u64] = ACTIONS(1997), + [anon_sym_i64] = ACTIONS(1997), + [anon_sym_u128] = ACTIONS(1997), + [anon_sym_i128] = ACTIONS(1997), + [anon_sym_isize] = ACTIONS(1997), + [anon_sym_usize] = ACTIONS(1997), + [anon_sym_f32] = ACTIONS(1997), + [anon_sym_f64] = ACTIONS(1997), + [anon_sym_bool] = ACTIONS(1997), + [anon_sym_str] = ACTIONS(1997), + [anon_sym_char] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1997), + [anon_sym_async] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1997), + [anon_sym_enum] = ACTIONS(1997), + [anon_sym_fn] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_gen] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_impl] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_mod] = ACTIONS(1997), + [anon_sym_pub] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_static] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(1997), + [anon_sym_trait] = ACTIONS(1997), + [anon_sym_type] = ACTIONS(1997), + [anon_sym_union] = ACTIONS(1997), + [anon_sym_unsafe] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_yield] = ACTIONS(1997), + [anon_sym_move] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [sym_integer_literal] = ACTIONS(1995), + [aux_sym_string_literal_token1] = ACTIONS(1995), + [sym_char_literal] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1997), + [sym_super] = ACTIONS(1997), + [sym_crate] = ACTIONS(1997), + [sym_metavariable] = ACTIONS(1995), + [sym__raw_string_literal_start] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), }, [557] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym__raw_string_literal_start] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_macro_rules_BANG] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_u8] = ACTIONS(2001), + [anon_sym_i8] = ACTIONS(2001), + [anon_sym_u16] = ACTIONS(2001), + [anon_sym_i16] = ACTIONS(2001), + [anon_sym_u32] = ACTIONS(2001), + [anon_sym_i32] = ACTIONS(2001), + [anon_sym_u64] = ACTIONS(2001), + [anon_sym_i64] = ACTIONS(2001), + [anon_sym_u128] = ACTIONS(2001), + [anon_sym_i128] = ACTIONS(2001), + [anon_sym_isize] = ACTIONS(2001), + [anon_sym_usize] = ACTIONS(2001), + [anon_sym_f32] = ACTIONS(2001), + [anon_sym_f64] = ACTIONS(2001), + [anon_sym_bool] = ACTIONS(2001), + [anon_sym_str] = ACTIONS(2001), + [anon_sym_char] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_gen] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_impl] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_mod] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_trait] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_move] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [sym_integer_literal] = ACTIONS(1999), + [aux_sym_string_literal_token1] = ACTIONS(1999), + [sym_char_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_crate] = ACTIONS(2001), + [sym_metavariable] = ACTIONS(1999), + [sym__raw_string_literal_start] = ACTIONS(1999), + [sym_float_literal] = ACTIONS(1999), }, [558] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [anon_sym_try] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym__raw_string_literal_start] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), + [ts_builtin_sym_end] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_macro_rules_BANG] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_u8] = ACTIONS(2005), + [anon_sym_i8] = ACTIONS(2005), + [anon_sym_u16] = ACTIONS(2005), + [anon_sym_i16] = ACTIONS(2005), + [anon_sym_u32] = ACTIONS(2005), + [anon_sym_i32] = ACTIONS(2005), + [anon_sym_u64] = ACTIONS(2005), + [anon_sym_i64] = ACTIONS(2005), + [anon_sym_u128] = ACTIONS(2005), + [anon_sym_i128] = ACTIONS(2005), + [anon_sym_isize] = ACTIONS(2005), + [anon_sym_usize] = ACTIONS(2005), + [anon_sym_f32] = ACTIONS(2005), + [anon_sym_f64] = ACTIONS(2005), + [anon_sym_bool] = ACTIONS(2005), + [anon_sym_str] = ACTIONS(2005), + [anon_sym_char] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2005), + [anon_sym_async] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2005), + [anon_sym_enum] = ACTIONS(2005), + [anon_sym_fn] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_gen] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_impl] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_mod] = ACTIONS(2005), + [anon_sym_pub] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_static] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2005), + [anon_sym_trait] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(2005), + [anon_sym_union] = ACTIONS(2005), + [anon_sym_unsafe] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2005), + [anon_sym_move] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [sym_integer_literal] = ACTIONS(2003), + [aux_sym_string_literal_token1] = ACTIONS(2003), + [sym_char_literal] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2005), + [sym_super] = ACTIONS(2005), + [sym_crate] = ACTIONS(2005), + [sym_metavariable] = ACTIONS(2003), + [sym__raw_string_literal_start] = ACTIONS(2003), + [sym_float_literal] = ACTIONS(2003), }, [559] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym__raw_string_literal_start] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), + [ts_builtin_sym_end] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_macro_rules_BANG] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_u8] = ACTIONS(2009), + [anon_sym_i8] = ACTIONS(2009), + [anon_sym_u16] = ACTIONS(2009), + [anon_sym_i16] = ACTIONS(2009), + [anon_sym_u32] = ACTIONS(2009), + [anon_sym_i32] = ACTIONS(2009), + [anon_sym_u64] = ACTIONS(2009), + [anon_sym_i64] = ACTIONS(2009), + [anon_sym_u128] = ACTIONS(2009), + [anon_sym_i128] = ACTIONS(2009), + [anon_sym_isize] = ACTIONS(2009), + [anon_sym_usize] = ACTIONS(2009), + [anon_sym_f32] = ACTIONS(2009), + [anon_sym_f64] = ACTIONS(2009), + [anon_sym_bool] = ACTIONS(2009), + [anon_sym_str] = ACTIONS(2009), + [anon_sym_char] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(2007), + [anon_sym_SQUOTE] = ACTIONS(2009), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_default] = ACTIONS(2009), + [anon_sym_enum] = ACTIONS(2009), + [anon_sym_fn] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_gen] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_impl] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_mod] = ACTIONS(2009), + [anon_sym_pub] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_struct] = ACTIONS(2009), + [anon_sym_trait] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_union] = ACTIONS(2009), + [anon_sym_unsafe] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_yield] = ACTIONS(2009), + [anon_sym_move] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [sym_integer_literal] = ACTIONS(2007), + [aux_sym_string_literal_token1] = ACTIONS(2007), + [sym_char_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = ACTIONS(2009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2007), + [sym__raw_string_literal_start] = ACTIONS(2007), + [sym_float_literal] = ACTIONS(2007), }, [560] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym__raw_string_literal_start] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_macro_rules_BANG] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_u8] = ACTIONS(2013), + [anon_sym_i8] = ACTIONS(2013), + [anon_sym_u16] = ACTIONS(2013), + [anon_sym_i16] = ACTIONS(2013), + [anon_sym_u32] = ACTIONS(2013), + [anon_sym_i32] = ACTIONS(2013), + [anon_sym_u64] = ACTIONS(2013), + [anon_sym_i64] = ACTIONS(2013), + [anon_sym_u128] = ACTIONS(2013), + [anon_sym_i128] = ACTIONS(2013), + [anon_sym_isize] = ACTIONS(2013), + [anon_sym_usize] = ACTIONS(2013), + [anon_sym_f32] = ACTIONS(2013), + [anon_sym_f64] = ACTIONS(2013), + [anon_sym_bool] = ACTIONS(2013), + [anon_sym_str] = ACTIONS(2013), + [anon_sym_char] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_default] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2013), + [anon_sym_fn] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_gen] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_impl] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_mod] = ACTIONS(2013), + [anon_sym_pub] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_static] = ACTIONS(2013), + [anon_sym_struct] = ACTIONS(2013), + [anon_sym_trait] = ACTIONS(2013), + [anon_sym_type] = ACTIONS(2013), + [anon_sym_union] = ACTIONS(2013), + [anon_sym_unsafe] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_yield] = ACTIONS(2013), + [anon_sym_move] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [sym_integer_literal] = ACTIONS(2011), + [aux_sym_string_literal_token1] = ACTIONS(2011), + [sym_char_literal] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2013), + [sym_super] = ACTIONS(2013), + [sym_crate] = ACTIONS(2013), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(2011), + [sym_float_literal] = ACTIONS(2011), }, [561] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym__raw_string_literal_start] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_macro_rules_BANG] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_u8] = ACTIONS(2017), + [anon_sym_i8] = ACTIONS(2017), + [anon_sym_u16] = ACTIONS(2017), + [anon_sym_i16] = ACTIONS(2017), + [anon_sym_u32] = ACTIONS(2017), + [anon_sym_i32] = ACTIONS(2017), + [anon_sym_u64] = ACTIONS(2017), + [anon_sym_i64] = ACTIONS(2017), + [anon_sym_u128] = ACTIONS(2017), + [anon_sym_i128] = ACTIONS(2017), + [anon_sym_isize] = ACTIONS(2017), + [anon_sym_usize] = ACTIONS(2017), + [anon_sym_f32] = ACTIONS(2017), + [anon_sym_f64] = ACTIONS(2017), + [anon_sym_bool] = ACTIONS(2017), + [anon_sym_str] = ACTIONS(2017), + [anon_sym_char] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2015), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2017), + [anon_sym_async] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_fn] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_gen] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_impl] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_mod] = ACTIONS(2017), + [anon_sym_pub] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_trait] = ACTIONS(2017), + [anon_sym_type] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_unsafe] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_yield] = ACTIONS(2017), + [anon_sym_move] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [sym_integer_literal] = ACTIONS(2015), + [aux_sym_string_literal_token1] = ACTIONS(2015), + [sym_char_literal] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2017), + [sym_super] = ACTIONS(2017), + [sym_crate] = ACTIONS(2017), + [sym_metavariable] = ACTIONS(2015), + [sym__raw_string_literal_start] = ACTIONS(2015), + [sym_float_literal] = ACTIONS(2015), }, [562] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym__raw_string_literal_start] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_macro_rules_BANG] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_u8] = ACTIONS(2021), + [anon_sym_i8] = ACTIONS(2021), + [anon_sym_u16] = ACTIONS(2021), + [anon_sym_i16] = ACTIONS(2021), + [anon_sym_u32] = ACTIONS(2021), + [anon_sym_i32] = ACTIONS(2021), + [anon_sym_u64] = ACTIONS(2021), + [anon_sym_i64] = ACTIONS(2021), + [anon_sym_u128] = ACTIONS(2021), + [anon_sym_i128] = ACTIONS(2021), + [anon_sym_isize] = ACTIONS(2021), + [anon_sym_usize] = ACTIONS(2021), + [anon_sym_f32] = ACTIONS(2021), + [anon_sym_f64] = ACTIONS(2021), + [anon_sym_bool] = ACTIONS(2021), + [anon_sym_str] = ACTIONS(2021), + [anon_sym_char] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_COLON_COLON] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_default] = ACTIONS(2021), + [anon_sym_enum] = ACTIONS(2021), + [anon_sym_fn] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_gen] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_impl] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_mod] = ACTIONS(2021), + [anon_sym_pub] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_static] = ACTIONS(2021), + [anon_sym_struct] = ACTIONS(2021), + [anon_sym_trait] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2021), + [anon_sym_unsafe] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_yield] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2021), + [sym_integer_literal] = ACTIONS(2019), + [aux_sym_string_literal_token1] = ACTIONS(2019), + [sym_char_literal] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2021), + [sym_super] = ACTIONS(2021), + [sym_crate] = ACTIONS(2021), + [sym_metavariable] = ACTIONS(2019), + [sym__raw_string_literal_start] = ACTIONS(2019), + [sym_float_literal] = ACTIONS(2019), }, [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym__raw_string_literal_start] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_macro_rules_BANG] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_u8] = ACTIONS(2025), + [anon_sym_i8] = ACTIONS(2025), + [anon_sym_u16] = ACTIONS(2025), + [anon_sym_i16] = ACTIONS(2025), + [anon_sym_u32] = ACTIONS(2025), + [anon_sym_i32] = ACTIONS(2025), + [anon_sym_u64] = ACTIONS(2025), + [anon_sym_i64] = ACTIONS(2025), + [anon_sym_u128] = ACTIONS(2025), + [anon_sym_i128] = ACTIONS(2025), + [anon_sym_isize] = ACTIONS(2025), + [anon_sym_usize] = ACTIONS(2025), + [anon_sym_f32] = ACTIONS(2025), + [anon_sym_f64] = ACTIONS(2025), + [anon_sym_bool] = ACTIONS(2025), + [anon_sym_str] = ACTIONS(2025), + [anon_sym_char] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2023), + [anon_sym_COLON_COLON] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_async] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_default] = ACTIONS(2025), + [anon_sym_enum] = ACTIONS(2025), + [anon_sym_fn] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_gen] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_impl] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_mod] = ACTIONS(2025), + [anon_sym_pub] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_static] = ACTIONS(2025), + [anon_sym_struct] = ACTIONS(2025), + [anon_sym_trait] = ACTIONS(2025), + [anon_sym_type] = ACTIONS(2025), + [anon_sym_union] = ACTIONS(2025), + [anon_sym_unsafe] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_yield] = ACTIONS(2025), + [anon_sym_move] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2025), + [sym_integer_literal] = ACTIONS(2023), + [aux_sym_string_literal_token1] = ACTIONS(2023), + [sym_char_literal] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2025), + [sym_super] = ACTIONS(2025), + [sym_crate] = ACTIONS(2025), + [sym_metavariable] = ACTIONS(2023), + [sym__raw_string_literal_start] = ACTIONS(2023), + [sym_float_literal] = ACTIONS(2023), }, [564] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym__raw_string_literal_start] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_macro_rules_BANG] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_u8] = ACTIONS(2029), + [anon_sym_i8] = ACTIONS(2029), + [anon_sym_u16] = ACTIONS(2029), + [anon_sym_i16] = ACTIONS(2029), + [anon_sym_u32] = ACTIONS(2029), + [anon_sym_i32] = ACTIONS(2029), + [anon_sym_u64] = ACTIONS(2029), + [anon_sym_i64] = ACTIONS(2029), + [anon_sym_u128] = ACTIONS(2029), + [anon_sym_i128] = ACTIONS(2029), + [anon_sym_isize] = ACTIONS(2029), + [anon_sym_usize] = ACTIONS(2029), + [anon_sym_f32] = ACTIONS(2029), + [anon_sym_f64] = ACTIONS(2029), + [anon_sym_bool] = ACTIONS(2029), + [anon_sym_str] = ACTIONS(2029), + [anon_sym_char] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2027), + [anon_sym_COLON_COLON] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_async] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_default] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_gen] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_impl] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_mod] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_static] = ACTIONS(2029), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_trait] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2029), + [anon_sym_move] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [sym_integer_literal] = ACTIONS(2027), + [aux_sym_string_literal_token1] = ACTIONS(2027), + [sym_char_literal] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2029), + [sym_super] = ACTIONS(2029), + [sym_crate] = ACTIONS(2029), + [sym_metavariable] = ACTIONS(2027), + [sym__raw_string_literal_start] = ACTIONS(2027), + [sym_float_literal] = ACTIONS(2027), }, [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym__raw_string_literal_start] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_macro_rules_BANG] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_u8] = ACTIONS(2033), + [anon_sym_i8] = ACTIONS(2033), + [anon_sym_u16] = ACTIONS(2033), + [anon_sym_i16] = ACTIONS(2033), + [anon_sym_u32] = ACTIONS(2033), + [anon_sym_i32] = ACTIONS(2033), + [anon_sym_u64] = ACTIONS(2033), + [anon_sym_i64] = ACTIONS(2033), + [anon_sym_u128] = ACTIONS(2033), + [anon_sym_i128] = ACTIONS(2033), + [anon_sym_isize] = ACTIONS(2033), + [anon_sym_usize] = ACTIONS(2033), + [anon_sym_f32] = ACTIONS(2033), + [anon_sym_f64] = ACTIONS(2033), + [anon_sym_bool] = ACTIONS(2033), + [anon_sym_str] = ACTIONS(2033), + [anon_sym_char] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_COLON_COLON] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_SQUOTE] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_fn] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_gen] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_impl] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_mod] = ACTIONS(2033), + [anon_sym_pub] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_struct] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_union] = ACTIONS(2033), + [anon_sym_unsafe] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_move] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [sym_integer_literal] = ACTIONS(2031), + [aux_sym_string_literal_token1] = ACTIONS(2031), + [sym_char_literal] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2033), + [sym_super] = ACTIONS(2033), + [sym_crate] = ACTIONS(2033), + [sym_metavariable] = ACTIONS(2031), + [sym__raw_string_literal_start] = ACTIONS(2031), + [sym_float_literal] = ACTIONS(2031), }, [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym__raw_string_literal_start] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_macro_rules_BANG] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_u8] = ACTIONS(2037), + [anon_sym_i8] = ACTIONS(2037), + [anon_sym_u16] = ACTIONS(2037), + [anon_sym_i16] = ACTIONS(2037), + [anon_sym_u32] = ACTIONS(2037), + [anon_sym_i32] = ACTIONS(2037), + [anon_sym_u64] = ACTIONS(2037), + [anon_sym_i64] = ACTIONS(2037), + [anon_sym_u128] = ACTIONS(2037), + [anon_sym_i128] = ACTIONS(2037), + [anon_sym_isize] = ACTIONS(2037), + [anon_sym_usize] = ACTIONS(2037), + [anon_sym_f32] = ACTIONS(2037), + [anon_sym_f64] = ACTIONS(2037), + [anon_sym_bool] = ACTIONS(2037), + [anon_sym_str] = ACTIONS(2037), + [anon_sym_char] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_COLON_COLON] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_default] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_gen] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_impl] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_mod] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_trait] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_yield] = ACTIONS(2037), + [anon_sym_move] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [sym_integer_literal] = ACTIONS(2035), + [aux_sym_string_literal_token1] = ACTIONS(2035), + [sym_char_literal] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2037), + [sym_super] = ACTIONS(2037), + [sym_crate] = ACTIONS(2037), + [sym_metavariable] = ACTIONS(2035), + [sym__raw_string_literal_start] = ACTIONS(2035), + [sym_float_literal] = ACTIONS(2035), }, [567] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym__raw_string_literal_start] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_macro_rules_BANG] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_u8] = ACTIONS(2041), + [anon_sym_i8] = ACTIONS(2041), + [anon_sym_u16] = ACTIONS(2041), + [anon_sym_i16] = ACTIONS(2041), + [anon_sym_u32] = ACTIONS(2041), + [anon_sym_i32] = ACTIONS(2041), + [anon_sym_u64] = ACTIONS(2041), + [anon_sym_i64] = ACTIONS(2041), + [anon_sym_u128] = ACTIONS(2041), + [anon_sym_i128] = ACTIONS(2041), + [anon_sym_isize] = ACTIONS(2041), + [anon_sym_usize] = ACTIONS(2041), + [anon_sym_f32] = ACTIONS(2041), + [anon_sym_f64] = ACTIONS(2041), + [anon_sym_bool] = ACTIONS(2041), + [anon_sym_str] = ACTIONS(2041), + [anon_sym_char] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_gen] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_impl] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_mod] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_trait] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2041), + [anon_sym_move] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2039), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2041), + [sym_super] = ACTIONS(2041), + [sym_crate] = ACTIONS(2041), + [sym_metavariable] = ACTIONS(2039), + [sym__raw_string_literal_start] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), }, [568] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym__raw_string_literal_start] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_macro_rules_BANG] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_u8] = ACTIONS(2045), + [anon_sym_i8] = ACTIONS(2045), + [anon_sym_u16] = ACTIONS(2045), + [anon_sym_i16] = ACTIONS(2045), + [anon_sym_u32] = ACTIONS(2045), + [anon_sym_i32] = ACTIONS(2045), + [anon_sym_u64] = ACTIONS(2045), + [anon_sym_i64] = ACTIONS(2045), + [anon_sym_u128] = ACTIONS(2045), + [anon_sym_i128] = ACTIONS(2045), + [anon_sym_isize] = ACTIONS(2045), + [anon_sym_usize] = ACTIONS(2045), + [anon_sym_f32] = ACTIONS(2045), + [anon_sym_f64] = ACTIONS(2045), + [anon_sym_bool] = ACTIONS(2045), + [anon_sym_str] = ACTIONS(2045), + [anon_sym_char] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2045), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_default] = ACTIONS(2045), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_fn] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_gen] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_impl] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_mod] = ACTIONS(2045), + [anon_sym_pub] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2045), + [anon_sym_trait] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_union] = ACTIONS(2045), + [anon_sym_unsafe] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_yield] = ACTIONS(2045), + [anon_sym_move] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2045), + [sym_integer_literal] = ACTIONS(2043), + [aux_sym_string_literal_token1] = ACTIONS(2043), + [sym_char_literal] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2045), + [sym_super] = ACTIONS(2045), + [sym_crate] = ACTIONS(2045), + [sym_metavariable] = ACTIONS(2043), + [sym__raw_string_literal_start] = ACTIONS(2043), + [sym_float_literal] = ACTIONS(2043), }, [569] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym__raw_string_literal_start] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_macro_rules_BANG] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_PIPE] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_COLON_COLON] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_gen] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_move] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2047), + [aux_sym_string_literal_token1] = ACTIONS(2047), + [sym_char_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2047), + [sym__raw_string_literal_start] = ACTIONS(2047), + [sym_float_literal] = ACTIONS(2047), }, [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym__raw_string_literal_start] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_macro_rules_BANG] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_u8] = ACTIONS(2053), + [anon_sym_i8] = ACTIONS(2053), + [anon_sym_u16] = ACTIONS(2053), + [anon_sym_i16] = ACTIONS(2053), + [anon_sym_u32] = ACTIONS(2053), + [anon_sym_i32] = ACTIONS(2053), + [anon_sym_u64] = ACTIONS(2053), + [anon_sym_i64] = ACTIONS(2053), + [anon_sym_u128] = ACTIONS(2053), + [anon_sym_i128] = ACTIONS(2053), + [anon_sym_isize] = ACTIONS(2053), + [anon_sym_usize] = ACTIONS(2053), + [anon_sym_f32] = ACTIONS(2053), + [anon_sym_f64] = ACTIONS(2053), + [anon_sym_bool] = ACTIONS(2053), + [anon_sym_str] = ACTIONS(2053), + [anon_sym_char] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_gen] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_impl] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_mod] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_move] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2051), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2053), + [sym_super] = ACTIONS(2053), + [sym_crate] = ACTIONS(2053), + [sym_metavariable] = ACTIONS(2051), + [sym__raw_string_literal_start] = ACTIONS(2051), + [sym_float_literal] = ACTIONS(2051), }, [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym__raw_string_literal_start] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_macro_rules_BANG] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_u8] = ACTIONS(2057), + [anon_sym_i8] = ACTIONS(2057), + [anon_sym_u16] = ACTIONS(2057), + [anon_sym_i16] = ACTIONS(2057), + [anon_sym_u32] = ACTIONS(2057), + [anon_sym_i32] = ACTIONS(2057), + [anon_sym_u64] = ACTIONS(2057), + [anon_sym_i64] = ACTIONS(2057), + [anon_sym_u128] = ACTIONS(2057), + [anon_sym_i128] = ACTIONS(2057), + [anon_sym_isize] = ACTIONS(2057), + [anon_sym_usize] = ACTIONS(2057), + [anon_sym_f32] = ACTIONS(2057), + [anon_sym_f64] = ACTIONS(2057), + [anon_sym_bool] = ACTIONS(2057), + [anon_sym_str] = ACTIONS(2057), + [anon_sym_char] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_COLON_COLON] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_gen] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_impl] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_mod] = ACTIONS(2057), + [anon_sym_pub] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_move] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2055), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_crate] = ACTIONS(2057), + [sym_metavariable] = ACTIONS(2055), + [sym__raw_string_literal_start] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), }, [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_macro_rules_BANG] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2034), - [aux_sym_string_literal_token1] = ACTIONS(2034), - [sym_char_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym__raw_string_literal_start] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_macro_rules_BANG] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2061), + [anon_sym_i8] = ACTIONS(2061), + [anon_sym_u16] = ACTIONS(2061), + [anon_sym_i16] = ACTIONS(2061), + [anon_sym_u32] = ACTIONS(2061), + [anon_sym_i32] = ACTIONS(2061), + [anon_sym_u64] = ACTIONS(2061), + [anon_sym_i64] = ACTIONS(2061), + [anon_sym_u128] = ACTIONS(2061), + [anon_sym_i128] = ACTIONS(2061), + [anon_sym_isize] = ACTIONS(2061), + [anon_sym_usize] = ACTIONS(2061), + [anon_sym_f32] = ACTIONS(2061), + [anon_sym_f64] = ACTIONS(2061), + [anon_sym_bool] = ACTIONS(2061), + [anon_sym_str] = ACTIONS(2061), + [anon_sym_char] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_COLON_COLON] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_gen] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_impl] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_mod] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_extern] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_move] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [sym_integer_literal] = ACTIONS(2059), + [aux_sym_string_literal_token1] = ACTIONS(2059), + [sym_char_literal] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_crate] = ACTIONS(2061), + [sym_metavariable] = ACTIONS(2059), + [sym__raw_string_literal_start] = ACTIONS(2059), + [sym_float_literal] = ACTIONS(2059), }, [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_macro_rules_BANG] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2038), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym__raw_string_literal_start] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_macro_rules_BANG] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_u8] = ACTIONS(2065), + [anon_sym_i8] = ACTIONS(2065), + [anon_sym_u16] = ACTIONS(2065), + [anon_sym_i16] = ACTIONS(2065), + [anon_sym_u32] = ACTIONS(2065), + [anon_sym_i32] = ACTIONS(2065), + [anon_sym_u64] = ACTIONS(2065), + [anon_sym_i64] = ACTIONS(2065), + [anon_sym_u128] = ACTIONS(2065), + [anon_sym_i128] = ACTIONS(2065), + [anon_sym_isize] = ACTIONS(2065), + [anon_sym_usize] = ACTIONS(2065), + [anon_sym_f32] = ACTIONS(2065), + [anon_sym_f64] = ACTIONS(2065), + [anon_sym_bool] = ACTIONS(2065), + [anon_sym_str] = ACTIONS(2065), + [anon_sym_char] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_COLON_COLON] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_gen] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_impl] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_mod] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_trait] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_extern] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [sym_integer_literal] = ACTIONS(2063), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_crate] = ACTIONS(2065), + [sym_metavariable] = ACTIONS(2063), + [sym__raw_string_literal_start] = ACTIONS(2063), + [sym_float_literal] = ACTIONS(2063), }, [574] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_macro_rules_BANG] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_move] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [aux_sym_string_literal_token1] = ACTIONS(2042), - [sym_char_literal] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2042), - [sym__raw_string_literal_start] = ACTIONS(2042), - [sym_float_literal] = ACTIONS(2042), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_macro_rules_BANG] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2069), + [anon_sym_i8] = ACTIONS(2069), + [anon_sym_u16] = ACTIONS(2069), + [anon_sym_i16] = ACTIONS(2069), + [anon_sym_u32] = ACTIONS(2069), + [anon_sym_i32] = ACTIONS(2069), + [anon_sym_u64] = ACTIONS(2069), + [anon_sym_i64] = ACTIONS(2069), + [anon_sym_u128] = ACTIONS(2069), + [anon_sym_i128] = ACTIONS(2069), + [anon_sym_isize] = ACTIONS(2069), + [anon_sym_usize] = ACTIONS(2069), + [anon_sym_f32] = ACTIONS(2069), + [anon_sym_f64] = ACTIONS(2069), + [anon_sym_bool] = ACTIONS(2069), + [anon_sym_str] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_gen] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_impl] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_mod] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [sym_integer_literal] = ACTIONS(2067), + [aux_sym_string_literal_token1] = ACTIONS(2067), + [sym_char_literal] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2069), + [sym_super] = ACTIONS(2069), + [sym_crate] = ACTIONS(2069), + [sym_metavariable] = ACTIONS(2067), + [sym__raw_string_literal_start] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), }, [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_macro_rules_BANG] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_u8] = ACTIONS(2048), - [anon_sym_i8] = ACTIONS(2048), - [anon_sym_u16] = ACTIONS(2048), - [anon_sym_i16] = ACTIONS(2048), - [anon_sym_u32] = ACTIONS(2048), - [anon_sym_i32] = ACTIONS(2048), - [anon_sym_u64] = ACTIONS(2048), - [anon_sym_i64] = ACTIONS(2048), - [anon_sym_u128] = ACTIONS(2048), - [anon_sym_i128] = ACTIONS(2048), - [anon_sym_isize] = ACTIONS(2048), - [anon_sym_usize] = ACTIONS(2048), - [anon_sym_f32] = ACTIONS(2048), - [anon_sym_f64] = ACTIONS(2048), - [anon_sym_bool] = ACTIONS(2048), - [anon_sym_str] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_fn] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_impl] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_loop] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_mod] = ACTIONS(2048), - [anon_sym_pub] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_trait] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_unsafe] = ACTIONS(2048), - [anon_sym_use] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_move] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [sym_integer_literal] = ACTIONS(2046), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_crate] = ACTIONS(2048), - [sym_metavariable] = ACTIONS(2046), - [sym__raw_string_literal_start] = ACTIONS(2046), - [sym_float_literal] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_macro_rules_BANG] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [anon_sym_COLON_COLON] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_gen] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_extern] = ACTIONS(2073), + [anon_sym_yield] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2073), + [sym_integer_literal] = ACTIONS(2071), + [aux_sym_string_literal_token1] = ACTIONS(2071), + [sym_char_literal] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), + [sym_metavariable] = ACTIONS(2071), + [sym__raw_string_literal_start] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), }, [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_macro_rules_BANG] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_COLON_COLON] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_move] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2050), - [sym__raw_string_literal_start] = ACTIONS(2050), - [sym_float_literal] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_macro_rules_BANG] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_u8] = ACTIONS(2077), + [anon_sym_i8] = ACTIONS(2077), + [anon_sym_u16] = ACTIONS(2077), + [anon_sym_i16] = ACTIONS(2077), + [anon_sym_u32] = ACTIONS(2077), + [anon_sym_i32] = ACTIONS(2077), + [anon_sym_u64] = ACTIONS(2077), + [anon_sym_i64] = ACTIONS(2077), + [anon_sym_u128] = ACTIONS(2077), + [anon_sym_i128] = ACTIONS(2077), + [anon_sym_isize] = ACTIONS(2077), + [anon_sym_usize] = ACTIONS(2077), + [anon_sym_f32] = ACTIONS(2077), + [anon_sym_f64] = ACTIONS(2077), + [anon_sym_bool] = ACTIONS(2077), + [anon_sym_str] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_COLON_COLON] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_gen] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_extern] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2075), + [sym__raw_string_literal_start] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), }, [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_macro_rules_BANG] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2054), - [anon_sym_COLON_COLON] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_move] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2054), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_metavariable] = ACTIONS(2054), - [sym__raw_string_literal_start] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_macro_rules_BANG] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_u8] = ACTIONS(2081), + [anon_sym_i8] = ACTIONS(2081), + [anon_sym_u16] = ACTIONS(2081), + [anon_sym_i16] = ACTIONS(2081), + [anon_sym_u32] = ACTIONS(2081), + [anon_sym_i32] = ACTIONS(2081), + [anon_sym_u64] = ACTIONS(2081), + [anon_sym_i64] = ACTIONS(2081), + [anon_sym_u128] = ACTIONS(2081), + [anon_sym_i128] = ACTIONS(2081), + [anon_sym_isize] = ACTIONS(2081), + [anon_sym_usize] = ACTIONS(2081), + [anon_sym_f32] = ACTIONS(2081), + [anon_sym_f64] = ACTIONS(2081), + [anon_sym_bool] = ACTIONS(2081), + [anon_sym_str] = ACTIONS(2081), + [anon_sym_char] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_gen] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_yield] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [sym_integer_literal] = ACTIONS(2079), + [aux_sym_string_literal_token1] = ACTIONS(2079), + [sym_char_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2079), + [sym__raw_string_literal_start] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2079), }, [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_macro_rules_BANG] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2060), - [anon_sym_i8] = ACTIONS(2060), - [anon_sym_u16] = ACTIONS(2060), - [anon_sym_i16] = ACTIONS(2060), - [anon_sym_u32] = ACTIONS(2060), - [anon_sym_i32] = ACTIONS(2060), - [anon_sym_u64] = ACTIONS(2060), - [anon_sym_i64] = ACTIONS(2060), - [anon_sym_u128] = ACTIONS(2060), - [anon_sym_i128] = ACTIONS(2060), - [anon_sym_isize] = ACTIONS(2060), - [anon_sym_usize] = ACTIONS(2060), - [anon_sym_f32] = ACTIONS(2060), - [anon_sym_f64] = ACTIONS(2060), - [anon_sym_bool] = ACTIONS(2060), - [anon_sym_str] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2058), - [anon_sym_COLON_COLON] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_fn] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_impl] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_loop] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_mod] = ACTIONS(2060), - [anon_sym_pub] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_trait] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_unsafe] = ACTIONS(2060), - [anon_sym_use] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2060), - [anon_sym_false] = ACTIONS(2060), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_crate] = ACTIONS(2060), - [sym_metavariable] = ACTIONS(2058), - [sym__raw_string_literal_start] = ACTIONS(2058), - [sym_float_literal] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_macro_rules_BANG] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_u8] = ACTIONS(2085), + [anon_sym_i8] = ACTIONS(2085), + [anon_sym_u16] = ACTIONS(2085), + [anon_sym_i16] = ACTIONS(2085), + [anon_sym_u32] = ACTIONS(2085), + [anon_sym_i32] = ACTIONS(2085), + [anon_sym_u64] = ACTIONS(2085), + [anon_sym_i64] = ACTIONS(2085), + [anon_sym_u128] = ACTIONS(2085), + [anon_sym_i128] = ACTIONS(2085), + [anon_sym_isize] = ACTIONS(2085), + [anon_sym_usize] = ACTIONS(2085), + [anon_sym_f32] = ACTIONS(2085), + [anon_sym_f64] = ACTIONS(2085), + [anon_sym_bool] = ACTIONS(2085), + [anon_sym_str] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_COLON_COLON] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_gen] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_move] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2083), + [aux_sym_string_literal_token1] = ACTIONS(2083), + [sym_char_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2083), + [sym__raw_string_literal_start] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), }, [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_macro_rules_BANG] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_u8] = ACTIONS(2064), - [anon_sym_i8] = ACTIONS(2064), - [anon_sym_u16] = ACTIONS(2064), - [anon_sym_i16] = ACTIONS(2064), - [anon_sym_u32] = ACTIONS(2064), - [anon_sym_i32] = ACTIONS(2064), - [anon_sym_u64] = ACTIONS(2064), - [anon_sym_i64] = ACTIONS(2064), - [anon_sym_u128] = ACTIONS(2064), - [anon_sym_i128] = ACTIONS(2064), - [anon_sym_isize] = ACTIONS(2064), - [anon_sym_usize] = ACTIONS(2064), - [anon_sym_f32] = ACTIONS(2064), - [anon_sym_f64] = ACTIONS(2064), - [anon_sym_bool] = ACTIONS(2064), - [anon_sym_str] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_fn] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_impl] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_mod] = ACTIONS(2064), - [anon_sym_pub] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_trait] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [anon_sym_move] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [aux_sym_string_literal_token1] = ACTIONS(2062), - [sym_char_literal] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2064), - [sym_super] = ACTIONS(2064), - [sym_crate] = ACTIONS(2064), - [sym_metavariable] = ACTIONS(2062), - [sym__raw_string_literal_start] = ACTIONS(2062), - [sym_float_literal] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_macro_rules_BANG] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2087), + [anon_sym_u8] = ACTIONS(2089), + [anon_sym_i8] = ACTIONS(2089), + [anon_sym_u16] = ACTIONS(2089), + [anon_sym_i16] = ACTIONS(2089), + [anon_sym_u32] = ACTIONS(2089), + [anon_sym_i32] = ACTIONS(2089), + [anon_sym_u64] = ACTIONS(2089), + [anon_sym_i64] = ACTIONS(2089), + [anon_sym_u128] = ACTIONS(2089), + [anon_sym_i128] = ACTIONS(2089), + [anon_sym_isize] = ACTIONS(2089), + [anon_sym_usize] = ACTIONS(2089), + [anon_sym_f32] = ACTIONS(2089), + [anon_sym_f64] = ACTIONS(2089), + [anon_sym_bool] = ACTIONS(2089), + [anon_sym_str] = ACTIONS(2089), + [anon_sym_char] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_COLON_COLON] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_gen] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_impl] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_mod] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_extern] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_move] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2087), + [aux_sym_string_literal_token1] = ACTIONS(2087), + [sym_char_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2087), + [sym__raw_string_literal_start] = ACTIONS(2087), + [sym_float_literal] = ACTIONS(2087), }, [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_macro_rules_BANG] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_u8] = ACTIONS(2068), - [anon_sym_i8] = ACTIONS(2068), - [anon_sym_u16] = ACTIONS(2068), - [anon_sym_i16] = ACTIONS(2068), - [anon_sym_u32] = ACTIONS(2068), - [anon_sym_i32] = ACTIONS(2068), - [anon_sym_u64] = ACTIONS(2068), - [anon_sym_i64] = ACTIONS(2068), - [anon_sym_u128] = ACTIONS(2068), - [anon_sym_i128] = ACTIONS(2068), - [anon_sym_isize] = ACTIONS(2068), - [anon_sym_usize] = ACTIONS(2068), - [anon_sym_f32] = ACTIONS(2068), - [anon_sym_f64] = ACTIONS(2068), - [anon_sym_bool] = ACTIONS(2068), - [anon_sym_str] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_COLON_COLON] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_impl] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_mod] = ACTIONS(2068), - [anon_sym_pub] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_trait] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_unsafe] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_move] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [aux_sym_string_literal_token1] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2066), - [sym__raw_string_literal_start] = ACTIONS(2066), - [sym_float_literal] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_macro_rules_BANG] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2091), + [anon_sym_POUND] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_gen] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_move] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2091), + [aux_sym_string_literal_token1] = ACTIONS(2091), + [sym_char_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2091), + [sym__raw_string_literal_start] = ACTIONS(2091), + [sym_float_literal] = ACTIONS(2091), }, [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_macro_rules_BANG] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_u8] = ACTIONS(2072), - [anon_sym_i8] = ACTIONS(2072), - [anon_sym_u16] = ACTIONS(2072), - [anon_sym_i16] = ACTIONS(2072), - [anon_sym_u32] = ACTIONS(2072), - [anon_sym_i32] = ACTIONS(2072), - [anon_sym_u64] = ACTIONS(2072), - [anon_sym_i64] = ACTIONS(2072), - [anon_sym_u128] = ACTIONS(2072), - [anon_sym_i128] = ACTIONS(2072), - [anon_sym_isize] = ACTIONS(2072), - [anon_sym_usize] = ACTIONS(2072), - [anon_sym_f32] = ACTIONS(2072), - [anon_sym_f64] = ACTIONS(2072), - [anon_sym_bool] = ACTIONS(2072), - [anon_sym_str] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_COLON_COLON] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_impl] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_mod] = ACTIONS(2072), - [anon_sym_pub] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_trait] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_unsafe] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [anon_sym_move] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [aux_sym_string_literal_token1] = ACTIONS(2070), - [sym_char_literal] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2070), - [sym__raw_string_literal_start] = ACTIONS(2070), - [sym_float_literal] = ACTIONS(2070), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_macro_rules_BANG] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_u8] = ACTIONS(2097), + [anon_sym_i8] = ACTIONS(2097), + [anon_sym_u16] = ACTIONS(2097), + [anon_sym_i16] = ACTIONS(2097), + [anon_sym_u32] = ACTIONS(2097), + [anon_sym_i32] = ACTIONS(2097), + [anon_sym_u64] = ACTIONS(2097), + [anon_sym_i64] = ACTIONS(2097), + [anon_sym_u128] = ACTIONS(2097), + [anon_sym_i128] = ACTIONS(2097), + [anon_sym_isize] = ACTIONS(2097), + [anon_sym_usize] = ACTIONS(2097), + [anon_sym_f32] = ACTIONS(2097), + [anon_sym_f64] = ACTIONS(2097), + [anon_sym_bool] = ACTIONS(2097), + [anon_sym_str] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_DOT_DOT] = ACTIONS(2095), + [anon_sym_COLON_COLON] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_gen] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_impl] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_mod] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_move] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(2095), + [aux_sym_string_literal_token1] = ACTIONS(2095), + [sym_char_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), + [sym_metavariable] = ACTIONS(2095), + [sym__raw_string_literal_start] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), }, [582] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [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_LBRACK] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2074), - [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_extern] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2076), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2076), - [sym_super] = ACTIONS(2076), - [sym_crate] = ACTIONS(2076), - [sym_metavariable] = ACTIONS(2074), - [sym__raw_string_literal_start] = ACTIONS(2074), - [sym_float_literal] = ACTIONS(2074), + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_macro_rules_BANG] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_u8] = ACTIONS(2101), + [anon_sym_i8] = ACTIONS(2101), + [anon_sym_u16] = ACTIONS(2101), + [anon_sym_i16] = ACTIONS(2101), + [anon_sym_u32] = ACTIONS(2101), + [anon_sym_i32] = ACTIONS(2101), + [anon_sym_u64] = ACTIONS(2101), + [anon_sym_i64] = ACTIONS(2101), + [anon_sym_u128] = ACTIONS(2101), + [anon_sym_i128] = ACTIONS(2101), + [anon_sym_isize] = ACTIONS(2101), + [anon_sym_usize] = ACTIONS(2101), + [anon_sym_f32] = ACTIONS(2101), + [anon_sym_f64] = ACTIONS(2101), + [anon_sym_bool] = ACTIONS(2101), + [anon_sym_str] = ACTIONS(2101), + [anon_sym_char] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2099), + [anon_sym_COLON_COLON] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_gen] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_impl] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_mod] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_move] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [sym_integer_literal] = ACTIONS(2099), + [aux_sym_string_literal_token1] = ACTIONS(2099), + [sym_char_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2101), + [sym_super] = ACTIONS(2101), + [sym_crate] = ACTIONS(2101), + [sym_metavariable] = ACTIONS(2099), + [sym__raw_string_literal_start] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), }, [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [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_LBRACK] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [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_extern] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2080), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_crate] = ACTIONS(2080), - [sym_metavariable] = ACTIONS(2078), - [sym__raw_string_literal_start] = ACTIONS(2078), - [sym_float_literal] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_macro_rules_BANG] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_u8] = ACTIONS(2105), + [anon_sym_i8] = ACTIONS(2105), + [anon_sym_u16] = ACTIONS(2105), + [anon_sym_i16] = ACTIONS(2105), + [anon_sym_u32] = ACTIONS(2105), + [anon_sym_i32] = ACTIONS(2105), + [anon_sym_u64] = ACTIONS(2105), + [anon_sym_i64] = ACTIONS(2105), + [anon_sym_u128] = ACTIONS(2105), + [anon_sym_i128] = ACTIONS(2105), + [anon_sym_isize] = ACTIONS(2105), + [anon_sym_usize] = ACTIONS(2105), + [anon_sym_f32] = ACTIONS(2105), + [anon_sym_f64] = ACTIONS(2105), + [anon_sym_bool] = ACTIONS(2105), + [anon_sym_str] = ACTIONS(2105), + [anon_sym_char] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2103), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_gen] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_impl] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_mod] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_move] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [sym_integer_literal] = ACTIONS(2103), + [aux_sym_string_literal_token1] = ACTIONS(2103), + [sym_char_literal] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_crate] = ACTIONS(2105), + [sym_metavariable] = ACTIONS(2103), + [sym__raw_string_literal_start] = ACTIONS(2103), + [sym_float_literal] = ACTIONS(2103), }, [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [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_LBRACK] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2082), - [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_extern] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2084), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2082), - [sym__raw_string_literal_start] = ACTIONS(2082), - [sym_float_literal] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_macro_rules_BANG] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_u8] = ACTIONS(2109), + [anon_sym_i8] = ACTIONS(2109), + [anon_sym_u16] = ACTIONS(2109), + [anon_sym_i16] = ACTIONS(2109), + [anon_sym_u32] = ACTIONS(2109), + [anon_sym_i32] = ACTIONS(2109), + [anon_sym_u64] = ACTIONS(2109), + [anon_sym_i64] = ACTIONS(2109), + [anon_sym_u128] = ACTIONS(2109), + [anon_sym_i128] = ACTIONS(2109), + [anon_sym_isize] = ACTIONS(2109), + [anon_sym_usize] = ACTIONS(2109), + [anon_sym_f32] = ACTIONS(2109), + [anon_sym_f64] = ACTIONS(2109), + [anon_sym_bool] = ACTIONS(2109), + [anon_sym_str] = ACTIONS(2109), + [anon_sym_char] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2107), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_fn] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_gen] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_impl] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_mod] = ACTIONS(2109), + [anon_sym_pub] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [anon_sym_unsafe] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_move] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [sym_integer_literal] = ACTIONS(2107), + [aux_sym_string_literal_token1] = ACTIONS(2107), + [sym_char_literal] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_crate] = ACTIONS(2109), + [sym_metavariable] = ACTIONS(2107), + [sym__raw_string_literal_start] = ACTIONS(2107), + [sym_float_literal] = ACTIONS(2107), }, [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [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_LBRACK] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_COLON_COLON] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2086), - [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_extern] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2088), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2088), - [sym_super] = ACTIONS(2088), - [sym_crate] = ACTIONS(2088), - [sym_metavariable] = ACTIONS(2086), - [sym__raw_string_literal_start] = ACTIONS(2086), - [sym_float_literal] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_macro_rules_BANG] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_u8] = ACTIONS(2113), + [anon_sym_i8] = ACTIONS(2113), + [anon_sym_u16] = ACTIONS(2113), + [anon_sym_i16] = ACTIONS(2113), + [anon_sym_u32] = ACTIONS(2113), + [anon_sym_i32] = ACTIONS(2113), + [anon_sym_u64] = ACTIONS(2113), + [anon_sym_i64] = ACTIONS(2113), + [anon_sym_u128] = ACTIONS(2113), + [anon_sym_i128] = ACTIONS(2113), + [anon_sym_isize] = ACTIONS(2113), + [anon_sym_usize] = ACTIONS(2113), + [anon_sym_f32] = ACTIONS(2113), + [anon_sym_f64] = ACTIONS(2113), + [anon_sym_bool] = ACTIONS(2113), + [anon_sym_str] = ACTIONS(2113), + [anon_sym_char] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2111), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_fn] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_gen] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_impl] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_mod] = ACTIONS(2113), + [anon_sym_pub] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [anon_sym_unsafe] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_move] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [sym_integer_literal] = ACTIONS(2111), + [aux_sym_string_literal_token1] = ACTIONS(2111), + [sym_char_literal] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_crate] = ACTIONS(2113), + [sym_metavariable] = ACTIONS(2111), + [sym__raw_string_literal_start] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2111), }, [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [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_LBRACK] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2090), - [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_extern] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_crate] = ACTIONS(2092), - [sym_metavariable] = ACTIONS(2090), - [sym__raw_string_literal_start] = ACTIONS(2090), - [sym_float_literal] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_macro_rules_BANG] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_u8] = ACTIONS(2117), + [anon_sym_i8] = ACTIONS(2117), + [anon_sym_u16] = ACTIONS(2117), + [anon_sym_i16] = ACTIONS(2117), + [anon_sym_u32] = ACTIONS(2117), + [anon_sym_i32] = ACTIONS(2117), + [anon_sym_u64] = ACTIONS(2117), + [anon_sym_i64] = ACTIONS(2117), + [anon_sym_u128] = ACTIONS(2117), + [anon_sym_i128] = ACTIONS(2117), + [anon_sym_isize] = ACTIONS(2117), + [anon_sym_usize] = ACTIONS(2117), + [anon_sym_f32] = ACTIONS(2117), + [anon_sym_f64] = ACTIONS(2117), + [anon_sym_bool] = ACTIONS(2117), + [anon_sym_str] = ACTIONS(2117), + [anon_sym_char] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_COLON_COLON] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_fn] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_gen] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_impl] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_mod] = ACTIONS(2117), + [anon_sym_pub] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsafe] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_move] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [sym_integer_literal] = ACTIONS(2115), + [aux_sym_string_literal_token1] = ACTIONS(2115), + [sym_char_literal] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_crate] = ACTIONS(2117), + [sym_metavariable] = ACTIONS(2115), + [sym__raw_string_literal_start] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), }, [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [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_LBRACK] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_COLON_COLON] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2094), - [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_extern] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_crate] = ACTIONS(2096), - [sym_metavariable] = ACTIONS(2094), - [sym__raw_string_literal_start] = ACTIONS(2094), - [sym_float_literal] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_macro_rules_BANG] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_u8] = ACTIONS(2121), + [anon_sym_i8] = ACTIONS(2121), + [anon_sym_u16] = ACTIONS(2121), + [anon_sym_i16] = ACTIONS(2121), + [anon_sym_u32] = ACTIONS(2121), + [anon_sym_i32] = ACTIONS(2121), + [anon_sym_u64] = ACTIONS(2121), + [anon_sym_i64] = ACTIONS(2121), + [anon_sym_u128] = ACTIONS(2121), + [anon_sym_i128] = ACTIONS(2121), + [anon_sym_isize] = ACTIONS(2121), + [anon_sym_usize] = ACTIONS(2121), + [anon_sym_f32] = ACTIONS(2121), + [anon_sym_f64] = ACTIONS(2121), + [anon_sym_bool] = ACTIONS(2121), + [anon_sym_str] = ACTIONS(2121), + [anon_sym_char] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_DOT_DOT] = ACTIONS(2119), + [anon_sym_COLON_COLON] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_fn] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_gen] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_impl] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_loop] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_mod] = ACTIONS(2121), + [anon_sym_pub] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_move] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2119), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2121), + [sym_super] = ACTIONS(2121), + [sym_crate] = ACTIONS(2121), + [sym_metavariable] = ACTIONS(2119), + [sym__raw_string_literal_start] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), }, [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [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_LBRACK] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2098), - [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_extern] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_crate] = ACTIONS(2100), - [sym_metavariable] = ACTIONS(2098), - [sym__raw_string_literal_start] = ACTIONS(2098), - [sym_float_literal] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_macro_rules_BANG] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_DOT_DOT] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_gen] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_move] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2123), + [aux_sym_string_literal_token1] = ACTIONS(2123), + [sym_char_literal] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2123), + [sym__raw_string_literal_start] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2123), }, [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [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_LBRACK] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_COLON_COLON] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2102), - [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_extern] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2104), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_crate] = ACTIONS(2104), - [sym_metavariable] = ACTIONS(2102), - [sym__raw_string_literal_start] = ACTIONS(2102), - [sym_float_literal] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_macro_rules_BANG] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_COLON_COLON] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_gen] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_move] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(2127), + [aux_sym_string_literal_token1] = ACTIONS(2127), + [sym_char_literal] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2127), + [sym__raw_string_literal_start] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), }, [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [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_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2106), - [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_extern] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_crate] = ACTIONS(2108), - [sym_metavariable] = ACTIONS(2106), - [sym__raw_string_literal_start] = ACTIONS(2106), - [sym_float_literal] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_macro_rules_BANG] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_u8] = ACTIONS(2133), + [anon_sym_i8] = ACTIONS(2133), + [anon_sym_u16] = ACTIONS(2133), + [anon_sym_i16] = ACTIONS(2133), + [anon_sym_u32] = ACTIONS(2133), + [anon_sym_i32] = ACTIONS(2133), + [anon_sym_u64] = ACTIONS(2133), + [anon_sym_i64] = ACTIONS(2133), + [anon_sym_u128] = ACTIONS(2133), + [anon_sym_i128] = ACTIONS(2133), + [anon_sym_isize] = ACTIONS(2133), + [anon_sym_usize] = ACTIONS(2133), + [anon_sym_f32] = ACTIONS(2133), + [anon_sym_f64] = ACTIONS(2133), + [anon_sym_bool] = ACTIONS(2133), + [anon_sym_str] = ACTIONS(2133), + [anon_sym_char] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_default] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_gen] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_impl] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_mod] = ACTIONS(2133), + [anon_sym_pub] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_move] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [sym_integer_literal] = ACTIONS(2131), + [aux_sym_string_literal_token1] = ACTIONS(2131), + [sym_char_literal] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2133), + [sym_super] = ACTIONS(2133), + [sym_crate] = ACTIONS(2133), + [sym_metavariable] = ACTIONS(2131), + [sym__raw_string_literal_start] = ACTIONS(2131), + [sym_float_literal] = ACTIONS(2131), }, [591] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [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_LBRACK] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2110), - [anon_sym_COLON_COLON] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2110), - [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_extern] = ACTIONS(2112), - [anon_sym_yield] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2112), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2112), - [sym_super] = ACTIONS(2112), - [sym_crate] = ACTIONS(2112), - [sym_metavariable] = ACTIONS(2110), - [sym__raw_string_literal_start] = ACTIONS(2110), - [sym_float_literal] = ACTIONS(2110), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_macro_rules_BANG] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_u8] = ACTIONS(2137), + [anon_sym_i8] = ACTIONS(2137), + [anon_sym_u16] = ACTIONS(2137), + [anon_sym_i16] = ACTIONS(2137), + [anon_sym_u32] = ACTIONS(2137), + [anon_sym_i32] = ACTIONS(2137), + [anon_sym_u64] = ACTIONS(2137), + [anon_sym_i64] = ACTIONS(2137), + [anon_sym_u128] = ACTIONS(2137), + [anon_sym_i128] = ACTIONS(2137), + [anon_sym_isize] = ACTIONS(2137), + [anon_sym_usize] = ACTIONS(2137), + [anon_sym_f32] = ACTIONS(2137), + [anon_sym_f64] = ACTIONS(2137), + [anon_sym_bool] = ACTIONS(2137), + [anon_sym_str] = ACTIONS(2137), + [anon_sym_char] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(2135), + [anon_sym_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_COLON_COLON] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_gen] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_impl] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_loop] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_mod] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_extern] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_move] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [sym_integer_literal] = ACTIONS(2135), + [aux_sym_string_literal_token1] = ACTIONS(2135), + [sym_char_literal] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_crate] = ACTIONS(2137), + [sym_metavariable] = ACTIONS(2135), + [sym__raw_string_literal_start] = ACTIONS(2135), + [sym_float_literal] = ACTIONS(2135), }, [592] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [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_LBRACK] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_DOT_DOT] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2114), - [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_extern] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2116), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_crate] = ACTIONS(2116), - [sym_metavariable] = ACTIONS(2114), - [sym__raw_string_literal_start] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2114), + [ts_builtin_sym_end] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2141), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_macro_rules_BANG] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2139), + [anon_sym_COLON_COLON] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_gen] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_extern] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_move] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2139), + [aux_sym_string_literal_token1] = ACTIONS(2139), + [sym_char_literal] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2139), + [sym__raw_string_literal_start] = ACTIONS(2139), + [sym_float_literal] = ACTIONS(2139), }, [593] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [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_LBRACK] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_COLON_COLON] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2118), - [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_extern] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2120), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_crate] = ACTIONS(2120), - [sym_metavariable] = ACTIONS(2118), - [sym__raw_string_literal_start] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_macro_rules_BANG] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_u8] = ACTIONS(2145), + [anon_sym_i8] = ACTIONS(2145), + [anon_sym_u16] = ACTIONS(2145), + [anon_sym_i16] = ACTIONS(2145), + [anon_sym_u32] = ACTIONS(2145), + [anon_sym_i32] = ACTIONS(2145), + [anon_sym_u64] = ACTIONS(2145), + [anon_sym_i64] = ACTIONS(2145), + [anon_sym_u128] = ACTIONS(2145), + [anon_sym_i128] = ACTIONS(2145), + [anon_sym_isize] = ACTIONS(2145), + [anon_sym_usize] = ACTIONS(2145), + [anon_sym_f32] = ACTIONS(2145), + [anon_sym_f64] = ACTIONS(2145), + [anon_sym_bool] = ACTIONS(2145), + [anon_sym_str] = ACTIONS(2145), + [anon_sym_char] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2143), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_gen] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_impl] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_loop] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2145), + [anon_sym_mod] = ACTIONS(2145), + [anon_sym_pub] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_unsafe] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_extern] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_move] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [sym_integer_literal] = ACTIONS(2143), + [aux_sym_string_literal_token1] = ACTIONS(2143), + [sym_char_literal] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_crate] = ACTIONS(2145), + [sym_metavariable] = ACTIONS(2143), + [sym__raw_string_literal_start] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2143), }, [594] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [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_LBRACK] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2122), - [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_extern] = ACTIONS(2124), - [anon_sym_yield] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2124), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2124), - [sym_super] = ACTIONS(2124), - [sym_crate] = ACTIONS(2124), - [sym_metavariable] = ACTIONS(2122), - [sym__raw_string_literal_start] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_macro_rules_BANG] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_u8] = ACTIONS(2149), + [anon_sym_i8] = ACTIONS(2149), + [anon_sym_u16] = ACTIONS(2149), + [anon_sym_i16] = ACTIONS(2149), + [anon_sym_u32] = ACTIONS(2149), + [anon_sym_i32] = ACTIONS(2149), + [anon_sym_u64] = ACTIONS(2149), + [anon_sym_i64] = ACTIONS(2149), + [anon_sym_u128] = ACTIONS(2149), + [anon_sym_i128] = ACTIONS(2149), + [anon_sym_isize] = ACTIONS(2149), + [anon_sym_usize] = ACTIONS(2149), + [anon_sym_f32] = ACTIONS(2149), + [anon_sym_f64] = ACTIONS(2149), + [anon_sym_bool] = ACTIONS(2149), + [anon_sym_str] = ACTIONS(2149), + [anon_sym_char] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_COLON_COLON] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_gen] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_impl] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_loop] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_mod] = ACTIONS(2149), + [anon_sym_pub] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_extern] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_move] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(2147), + [aux_sym_string_literal_token1] = ACTIONS(2147), + [sym_char_literal] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_crate] = ACTIONS(2149), + [sym_metavariable] = ACTIONS(2147), + [sym__raw_string_literal_start] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), }, [595] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [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_LBRACK] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_COLON_COLON] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2126), - [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_extern] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2128), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_crate] = ACTIONS(2128), - [sym_metavariable] = ACTIONS(2126), - [sym__raw_string_literal_start] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2153), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_macro_rules_BANG] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2153), + [anon_sym_i8] = ACTIONS(2153), + [anon_sym_u16] = ACTIONS(2153), + [anon_sym_i16] = ACTIONS(2153), + [anon_sym_u32] = ACTIONS(2153), + [anon_sym_i32] = ACTIONS(2153), + [anon_sym_u64] = ACTIONS(2153), + [anon_sym_i64] = ACTIONS(2153), + [anon_sym_u128] = ACTIONS(2153), + [anon_sym_i128] = ACTIONS(2153), + [anon_sym_isize] = ACTIONS(2153), + [anon_sym_usize] = ACTIONS(2153), + [anon_sym_f32] = ACTIONS(2153), + [anon_sym_f64] = ACTIONS(2153), + [anon_sym_bool] = ACTIONS(2153), + [anon_sym_str] = ACTIONS(2153), + [anon_sym_char] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_DOT_DOT] = ACTIONS(2151), + [anon_sym_COLON_COLON] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_gen] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_impl] = ACTIONS(2153), + [anon_sym_let] = ACTIONS(2153), + [anon_sym_loop] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2153), + [anon_sym_mod] = ACTIONS(2153), + [anon_sym_pub] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2153), + [anon_sym_unsafe] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_extern] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_move] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [sym_integer_literal] = ACTIONS(2151), + [aux_sym_string_literal_token1] = ACTIONS(2151), + [sym_char_literal] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2153), + [sym_super] = ACTIONS(2153), + [sym_crate] = ACTIONS(2153), + [sym_metavariable] = ACTIONS(2151), + [sym__raw_string_literal_start] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2151), }, [596] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [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_LBRACK] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_COLON_COLON] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2130), - [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_extern] = ACTIONS(2132), - [anon_sym_yield] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2132), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2132), - [sym_super] = ACTIONS(2132), - [sym_crate] = ACTIONS(2132), - [sym_metavariable] = ACTIONS(2130), - [sym__raw_string_literal_start] = ACTIONS(2130), - [sym_float_literal] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_macro_rules_BANG] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_u8] = ACTIONS(2157), + [anon_sym_i8] = ACTIONS(2157), + [anon_sym_u16] = ACTIONS(2157), + [anon_sym_i16] = ACTIONS(2157), + [anon_sym_u32] = ACTIONS(2157), + [anon_sym_i32] = ACTIONS(2157), + [anon_sym_u64] = ACTIONS(2157), + [anon_sym_i64] = ACTIONS(2157), + [anon_sym_u128] = ACTIONS(2157), + [anon_sym_i128] = ACTIONS(2157), + [anon_sym_isize] = ACTIONS(2157), + [anon_sym_usize] = ACTIONS(2157), + [anon_sym_f32] = ACTIONS(2157), + [anon_sym_f64] = ACTIONS(2157), + [anon_sym_bool] = ACTIONS(2157), + [anon_sym_str] = ACTIONS(2157), + [anon_sym_char] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2155), + [anon_sym_COLON_COLON] = ACTIONS(2155), + [anon_sym_POUND] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_fn] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_gen] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_impl] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_mod] = ACTIONS(2157), + [anon_sym_pub] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_union] = ACTIONS(2157), + [anon_sym_unsafe] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_move] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [sym_integer_literal] = ACTIONS(2155), + [aux_sym_string_literal_token1] = ACTIONS(2155), + [sym_char_literal] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2157), + [sym_super] = ACTIONS(2157), + [sym_crate] = ACTIONS(2157), + [sym_metavariable] = ACTIONS(2155), + [sym__raw_string_literal_start] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), }, [597] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [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_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [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_extern] = ACTIONS(2136), - [anon_sym_yield] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2136), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2136), - [sym_super] = ACTIONS(2136), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2134), - [sym__raw_string_literal_start] = ACTIONS(2134), - [sym_float_literal] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_macro_rules_BANG] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_u8] = ACTIONS(2161), + [anon_sym_i8] = ACTIONS(2161), + [anon_sym_u16] = ACTIONS(2161), + [anon_sym_i16] = ACTIONS(2161), + [anon_sym_u32] = ACTIONS(2161), + [anon_sym_i32] = ACTIONS(2161), + [anon_sym_u64] = ACTIONS(2161), + [anon_sym_i64] = ACTIONS(2161), + [anon_sym_u128] = ACTIONS(2161), + [anon_sym_i128] = ACTIONS(2161), + [anon_sym_isize] = ACTIONS(2161), + [anon_sym_usize] = ACTIONS(2161), + [anon_sym_f32] = ACTIONS(2161), + [anon_sym_f64] = ACTIONS(2161), + [anon_sym_bool] = ACTIONS(2161), + [anon_sym_str] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_gen] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_move] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2159), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2159), + [sym__raw_string_literal_start] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), }, [598] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [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_LBRACK] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_COLON_COLON] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2138), - [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_extern] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2140), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_crate] = ACTIONS(2140), - [sym_metavariable] = ACTIONS(2138), - [sym__raw_string_literal_start] = ACTIONS(2138), - [sym_float_literal] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2165), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_macro_rules_BANG] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_u8] = ACTIONS(2165), + [anon_sym_i8] = ACTIONS(2165), + [anon_sym_u16] = ACTIONS(2165), + [anon_sym_i16] = ACTIONS(2165), + [anon_sym_u32] = ACTIONS(2165), + [anon_sym_i32] = ACTIONS(2165), + [anon_sym_u64] = ACTIONS(2165), + [anon_sym_i64] = ACTIONS(2165), + [anon_sym_u128] = ACTIONS(2165), + [anon_sym_i128] = ACTIONS(2165), + [anon_sym_isize] = ACTIONS(2165), + [anon_sym_usize] = ACTIONS(2165), + [anon_sym_f32] = ACTIONS(2165), + [anon_sym_f64] = ACTIONS(2165), + [anon_sym_bool] = ACTIONS(2165), + [anon_sym_str] = ACTIONS(2165), + [anon_sym_char] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_COLON_COLON] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_fn] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_gen] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_impl] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_mod] = ACTIONS(2165), + [anon_sym_pub] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_union] = ACTIONS(2165), + [anon_sym_unsafe] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_move] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [sym_integer_literal] = ACTIONS(2163), + [aux_sym_string_literal_token1] = ACTIONS(2163), + [sym_char_literal] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2165), + [sym_super] = ACTIONS(2165), + [sym_crate] = ACTIONS(2165), + [sym_metavariable] = ACTIONS(2163), + [sym__raw_string_literal_start] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), }, [599] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_macro_rules_BANG] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_async] = 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_while] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_yield] = ACTIONS(2144), - [anon_sym_move] = ACTIONS(2144), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2142), - [sym__raw_string_literal_start] = ACTIONS(2142), - [sym_float_literal] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_macro_rules_BANG] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_u8] = ACTIONS(2169), + [anon_sym_i8] = ACTIONS(2169), + [anon_sym_u16] = ACTIONS(2169), + [anon_sym_i16] = ACTIONS(2169), + [anon_sym_u32] = ACTIONS(2169), + [anon_sym_i32] = ACTIONS(2169), + [anon_sym_u64] = ACTIONS(2169), + [anon_sym_i64] = ACTIONS(2169), + [anon_sym_u128] = ACTIONS(2169), + [anon_sym_i128] = ACTIONS(2169), + [anon_sym_isize] = ACTIONS(2169), + [anon_sym_usize] = ACTIONS(2169), + [anon_sym_f32] = ACTIONS(2169), + [anon_sym_f64] = ACTIONS(2169), + [anon_sym_bool] = ACTIONS(2169), + [anon_sym_str] = ACTIONS(2169), + [anon_sym_char] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_DOT_DOT] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_fn] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_gen] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_impl] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_mod] = ACTIONS(2169), + [anon_sym_pub] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_union] = ACTIONS(2169), + [anon_sym_unsafe] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_move] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [sym_integer_literal] = ACTIONS(2167), + [aux_sym_string_literal_token1] = ACTIONS(2167), + [sym_char_literal] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2169), + [sym_super] = ACTIONS(2169), + [sym_crate] = ACTIONS(2169), + [sym_metavariable] = ACTIONS(2167), + [sym__raw_string_literal_start] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), }, [600] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_macro_rules_BANG] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_u8] = ACTIONS(2148), - [anon_sym_i8] = ACTIONS(2148), - [anon_sym_u16] = ACTIONS(2148), - [anon_sym_i16] = ACTIONS(2148), - [anon_sym_u32] = ACTIONS(2148), - [anon_sym_i32] = ACTIONS(2148), - [anon_sym_u64] = ACTIONS(2148), - [anon_sym_i64] = ACTIONS(2148), - [anon_sym_u128] = ACTIONS(2148), - [anon_sym_i128] = ACTIONS(2148), - [anon_sym_isize] = ACTIONS(2148), - [anon_sym_usize] = ACTIONS(2148), - [anon_sym_f32] = ACTIONS(2148), - [anon_sym_f64] = ACTIONS(2148), - [anon_sym_bool] = ACTIONS(2148), - [anon_sym_str] = ACTIONS(2148), - [anon_sym_char] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_async] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_impl] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_mod] = ACTIONS(2148), - [anon_sym_pub] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_trait] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_unsafe] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_yield] = ACTIONS(2148), - [anon_sym_move] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2146), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2148), - [sym_super] = ACTIONS(2148), - [sym_crate] = ACTIONS(2148), - [sym_metavariable] = ACTIONS(2146), - [sym__raw_string_literal_start] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_macro_rules_BANG] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_u8] = ACTIONS(2173), + [anon_sym_i8] = ACTIONS(2173), + [anon_sym_u16] = ACTIONS(2173), + [anon_sym_i16] = ACTIONS(2173), + [anon_sym_u32] = ACTIONS(2173), + [anon_sym_i32] = ACTIONS(2173), + [anon_sym_u64] = ACTIONS(2173), + [anon_sym_i64] = ACTIONS(2173), + [anon_sym_u128] = ACTIONS(2173), + [anon_sym_i128] = ACTIONS(2173), + [anon_sym_isize] = ACTIONS(2173), + [anon_sym_usize] = ACTIONS(2173), + [anon_sym_f32] = ACTIONS(2173), + [anon_sym_f64] = ACTIONS(2173), + [anon_sym_bool] = ACTIONS(2173), + [anon_sym_str] = ACTIONS(2173), + [anon_sym_char] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_DOT_DOT] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_fn] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_gen] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_impl] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_mod] = ACTIONS(2173), + [anon_sym_pub] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_union] = ACTIONS(2173), + [anon_sym_unsafe] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_move] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [sym_integer_literal] = ACTIONS(2171), + [aux_sym_string_literal_token1] = ACTIONS(2171), + [sym_char_literal] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_crate] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2171), + [sym__raw_string_literal_start] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), }, [601] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_macro_rules_BANG] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2152), - [anon_sym_i8] = ACTIONS(2152), - [anon_sym_u16] = ACTIONS(2152), - [anon_sym_i16] = ACTIONS(2152), - [anon_sym_u32] = ACTIONS(2152), - [anon_sym_i32] = ACTIONS(2152), - [anon_sym_u64] = ACTIONS(2152), - [anon_sym_i64] = ACTIONS(2152), - [anon_sym_u128] = ACTIONS(2152), - [anon_sym_i128] = ACTIONS(2152), - [anon_sym_isize] = ACTIONS(2152), - [anon_sym_usize] = ACTIONS(2152), - [anon_sym_f32] = ACTIONS(2152), - [anon_sym_f64] = ACTIONS(2152), - [anon_sym_bool] = ACTIONS(2152), - [anon_sym_str] = ACTIONS(2152), - [anon_sym_char] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2150), - [anon_sym_COLON_COLON] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_fn] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_impl] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_mod] = ACTIONS(2152), - [anon_sym_pub] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_trait] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [anon_sym_unsafe] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_move] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [sym_integer_literal] = ACTIONS(2150), - [aux_sym_string_literal_token1] = ACTIONS(2150), - [sym_char_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_crate] = ACTIONS(2152), - [sym_metavariable] = ACTIONS(2150), - [sym__raw_string_literal_start] = ACTIONS(2150), - [sym_float_literal] = ACTIONS(2150), + [ts_builtin_sym_end] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_macro_rules_BANG] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_gen] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_move] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2175), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_metavariable] = ACTIONS(2175), + [sym__raw_string_literal_start] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), }, [602] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_macro_rules_BANG] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR] = 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_DASH] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_DOT_DOT] = ACTIONS(2154), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_impl] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_mod] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_trait] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_move] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [sym_integer_literal] = ACTIONS(2154), - [aux_sym_string_literal_token1] = ACTIONS(2154), - [sym_char_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_crate] = ACTIONS(2156), - [sym_metavariable] = ACTIONS(2154), - [sym__raw_string_literal_start] = ACTIONS(2154), - [sym_float_literal] = ACTIONS(2154), + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_macro_rules_BANG] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2179), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_COLON_COLON] = ACTIONS(2179), + [anon_sym_POUND] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_gen] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_extern] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_move] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2179), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2179), + [sym__raw_string_literal_start] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), }, [603] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_macro_rules_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_u8] = ACTIONS(2160), - [anon_sym_i8] = ACTIONS(2160), - [anon_sym_u16] = ACTIONS(2160), - [anon_sym_i16] = ACTIONS(2160), - [anon_sym_u32] = ACTIONS(2160), - [anon_sym_i32] = ACTIONS(2160), - [anon_sym_u64] = ACTIONS(2160), - [anon_sym_i64] = ACTIONS(2160), - [anon_sym_u128] = ACTIONS(2160), - [anon_sym_i128] = ACTIONS(2160), - [anon_sym_isize] = ACTIONS(2160), - [anon_sym_usize] = ACTIONS(2160), - [anon_sym_f32] = ACTIONS(2160), - [anon_sym_f64] = ACTIONS(2160), - [anon_sym_bool] = ACTIONS(2160), - [anon_sym_str] = ACTIONS(2160), - [anon_sym_char] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2158), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_async] = 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_while] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_move] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(2158), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2158), - [sym__raw_string_literal_start] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_macro_rules_BANG] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_COLON_COLON] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_gen] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_move] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2183), + [aux_sym_string_literal_token1] = ACTIONS(2183), + [sym_char_literal] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_metavariable] = ACTIONS(2183), + [sym__raw_string_literal_start] = ACTIONS(2183), + [sym_float_literal] = ACTIONS(2183), }, [604] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_macro_rules_BANG] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_u8] = ACTIONS(2164), - [anon_sym_i8] = ACTIONS(2164), - [anon_sym_u16] = ACTIONS(2164), - [anon_sym_i16] = ACTIONS(2164), - [anon_sym_u32] = ACTIONS(2164), - [anon_sym_i32] = ACTIONS(2164), - [anon_sym_u64] = ACTIONS(2164), - [anon_sym_i64] = ACTIONS(2164), - [anon_sym_u128] = ACTIONS(2164), - [anon_sym_i128] = ACTIONS(2164), - [anon_sym_isize] = ACTIONS(2164), - [anon_sym_usize] = ACTIONS(2164), - [anon_sym_f32] = ACTIONS(2164), - [anon_sym_f64] = ACTIONS(2164), - [anon_sym_bool] = ACTIONS(2164), - [anon_sym_str] = ACTIONS(2164), - [anon_sym_char] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_impl] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_loop] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_mod] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_trait] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_use] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_move] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2162), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_crate] = ACTIONS(2164), - [sym_metavariable] = ACTIONS(2162), - [sym__raw_string_literal_start] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_macro_rules_BANG] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2189), + [anon_sym_i8] = ACTIONS(2189), + [anon_sym_u16] = ACTIONS(2189), + [anon_sym_i16] = ACTIONS(2189), + [anon_sym_u32] = ACTIONS(2189), + [anon_sym_i32] = ACTIONS(2189), + [anon_sym_u64] = ACTIONS(2189), + [anon_sym_i64] = ACTIONS(2189), + [anon_sym_u128] = ACTIONS(2189), + [anon_sym_i128] = ACTIONS(2189), + [anon_sym_isize] = ACTIONS(2189), + [anon_sym_usize] = ACTIONS(2189), + [anon_sym_f32] = ACTIONS(2189), + [anon_sym_f64] = ACTIONS(2189), + [anon_sym_bool] = ACTIONS(2189), + [anon_sym_str] = ACTIONS(2189), + [anon_sym_char] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_DOT_DOT] = ACTIONS(2187), + [anon_sym_COLON_COLON] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_gen] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_impl] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_loop] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_mod] = ACTIONS(2189), + [anon_sym_pub] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_extern] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_move] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [sym_integer_literal] = ACTIONS(2187), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_crate] = ACTIONS(2189), + [sym_metavariable] = ACTIONS(2187), + [sym__raw_string_literal_start] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), }, [605] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_macro_rules_BANG] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_u8] = ACTIONS(2168), - [anon_sym_i8] = ACTIONS(2168), - [anon_sym_u16] = ACTIONS(2168), - [anon_sym_i16] = ACTIONS(2168), - [anon_sym_u32] = ACTIONS(2168), - [anon_sym_i32] = ACTIONS(2168), - [anon_sym_u64] = ACTIONS(2168), - [anon_sym_i64] = ACTIONS(2168), - [anon_sym_u128] = ACTIONS(2168), - [anon_sym_i128] = ACTIONS(2168), - [anon_sym_isize] = ACTIONS(2168), - [anon_sym_usize] = ACTIONS(2168), - [anon_sym_f32] = ACTIONS(2168), - [anon_sym_f64] = ACTIONS(2168), - [anon_sym_bool] = ACTIONS(2168), - [anon_sym_str] = ACTIONS(2168), - [anon_sym_char] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [anon_sym_fn] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_impl] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_loop] = ACTIONS(2168), - [anon_sym_match] = ACTIONS(2168), - [anon_sym_mod] = ACTIONS(2168), - [anon_sym_pub] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_trait] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2168), - [anon_sym_unsafe] = ACTIONS(2168), - [anon_sym_use] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_move] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [sym_integer_literal] = ACTIONS(2166), - [aux_sym_string_literal_token1] = ACTIONS(2166), - [sym_char_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_crate] = ACTIONS(2168), - [sym_metavariable] = ACTIONS(2166), - [sym__raw_string_literal_start] = ACTIONS(2166), - [sym_float_literal] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_macro_rules_BANG] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2193), + [anon_sym_i8] = ACTIONS(2193), + [anon_sym_u16] = ACTIONS(2193), + [anon_sym_i16] = ACTIONS(2193), + [anon_sym_u32] = ACTIONS(2193), + [anon_sym_i32] = ACTIONS(2193), + [anon_sym_u64] = ACTIONS(2193), + [anon_sym_i64] = ACTIONS(2193), + [anon_sym_u128] = ACTIONS(2193), + [anon_sym_i128] = ACTIONS(2193), + [anon_sym_isize] = ACTIONS(2193), + [anon_sym_usize] = ACTIONS(2193), + [anon_sym_f32] = ACTIONS(2193), + [anon_sym_f64] = ACTIONS(2193), + [anon_sym_bool] = ACTIONS(2193), + [anon_sym_str] = ACTIONS(2193), + [anon_sym_char] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_DOT_DOT] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_gen] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_impl] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_loop] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_mod] = ACTIONS(2193), + [anon_sym_pub] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_extern] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_move] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_crate] = ACTIONS(2193), + [sym_metavariable] = ACTIONS(2191), + [sym__raw_string_literal_start] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), }, [606] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_macro_rules_BANG] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_u8] = ACTIONS(2172), - [anon_sym_i8] = ACTIONS(2172), - [anon_sym_u16] = ACTIONS(2172), - [anon_sym_i16] = ACTIONS(2172), - [anon_sym_u32] = ACTIONS(2172), - [anon_sym_i32] = ACTIONS(2172), - [anon_sym_u64] = ACTIONS(2172), - [anon_sym_i64] = ACTIONS(2172), - [anon_sym_u128] = ACTIONS(2172), - [anon_sym_i128] = ACTIONS(2172), - [anon_sym_isize] = ACTIONS(2172), - [anon_sym_usize] = ACTIONS(2172), - [anon_sym_f32] = ACTIONS(2172), - [anon_sym_f64] = ACTIONS(2172), - [anon_sym_bool] = ACTIONS(2172), - [anon_sym_str] = ACTIONS(2172), - [anon_sym_char] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_COLON_COLON] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_async] = 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_while] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_move] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2170), - [aux_sym_string_literal_token1] = ACTIONS(2170), - [sym_char_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2170), - [sym__raw_string_literal_start] = ACTIONS(2170), - [sym_float_literal] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_macro_rules_BANG] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_u8] = ACTIONS(2197), + [anon_sym_i8] = ACTIONS(2197), + [anon_sym_u16] = ACTIONS(2197), + [anon_sym_i16] = ACTIONS(2197), + [anon_sym_u32] = ACTIONS(2197), + [anon_sym_i32] = ACTIONS(2197), + [anon_sym_u64] = ACTIONS(2197), + [anon_sym_i64] = ACTIONS(2197), + [anon_sym_u128] = ACTIONS(2197), + [anon_sym_i128] = ACTIONS(2197), + [anon_sym_isize] = ACTIONS(2197), + [anon_sym_usize] = ACTIONS(2197), + [anon_sym_f32] = ACTIONS(2197), + [anon_sym_f64] = ACTIONS(2197), + [anon_sym_bool] = ACTIONS(2197), + [anon_sym_str] = ACTIONS(2197), + [anon_sym_char] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_PIPE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2195), + [anon_sym_DOT_DOT] = ACTIONS(2195), + [anon_sym_COLON_COLON] = ACTIONS(2195), + [anon_sym_POUND] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_gen] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_move] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2195), + [aux_sym_string_literal_token1] = ACTIONS(2195), + [sym_char_literal] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2195), + [sym__raw_string_literal_start] = ACTIONS(2195), + [sym_float_literal] = ACTIONS(2195), }, [607] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2174), - [anon_sym_u8] = ACTIONS(2176), - [anon_sym_i8] = ACTIONS(2176), - [anon_sym_u16] = ACTIONS(2176), - [anon_sym_i16] = ACTIONS(2176), - [anon_sym_u32] = ACTIONS(2176), - [anon_sym_i32] = ACTIONS(2176), - [anon_sym_u64] = ACTIONS(2176), - [anon_sym_i64] = ACTIONS(2176), - [anon_sym_u128] = ACTIONS(2176), - [anon_sym_i128] = ACTIONS(2176), - [anon_sym_isize] = ACTIONS(2176), - [anon_sym_usize] = ACTIONS(2176), - [anon_sym_f32] = ACTIONS(2176), - [anon_sym_f64] = ACTIONS(2176), - [anon_sym_bool] = ACTIONS(2176), - [anon_sym_str] = ACTIONS(2176), - [anon_sym_char] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_DOT_DOT] = ACTIONS(2174), - [anon_sym_COLON_COLON] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [anon_sym_fn] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_impl] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_loop] = ACTIONS(2176), - [anon_sym_match] = ACTIONS(2176), - [anon_sym_mod] = ACTIONS(2176), - [anon_sym_pub] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_trait] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2176), - [anon_sym_unsafe] = ACTIONS(2176), - [anon_sym_use] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_move] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [sym_integer_literal] = ACTIONS(2174), - [aux_sym_string_literal_token1] = ACTIONS(2174), - [sym_char_literal] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_crate] = ACTIONS(2176), - [sym_metavariable] = ACTIONS(2174), - [sym__raw_string_literal_start] = ACTIONS(2174), - [sym_float_literal] = ACTIONS(2174), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_macro_rules_BANG] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2201), + [anon_sym_i8] = ACTIONS(2201), + [anon_sym_u16] = ACTIONS(2201), + [anon_sym_i16] = ACTIONS(2201), + [anon_sym_u32] = ACTIONS(2201), + [anon_sym_i32] = ACTIONS(2201), + [anon_sym_u64] = ACTIONS(2201), + [anon_sym_i64] = ACTIONS(2201), + [anon_sym_u128] = ACTIONS(2201), + [anon_sym_i128] = ACTIONS(2201), + [anon_sym_isize] = ACTIONS(2201), + [anon_sym_usize] = ACTIONS(2201), + [anon_sym_f32] = ACTIONS(2201), + [anon_sym_f64] = ACTIONS(2201), + [anon_sym_bool] = ACTIONS(2201), + [anon_sym_str] = ACTIONS(2201), + [anon_sym_char] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2199), + [anon_sym_COLON_COLON] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_gen] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_impl] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_mod] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_move] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2199), + [aux_sym_string_literal_token1] = ACTIONS(2199), + [sym_char_literal] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2199), + [sym__raw_string_literal_start] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2199), }, [608] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_u8] = ACTIONS(2180), - [anon_sym_i8] = ACTIONS(2180), - [anon_sym_u16] = ACTIONS(2180), - [anon_sym_i16] = ACTIONS(2180), - [anon_sym_u32] = ACTIONS(2180), - [anon_sym_i32] = ACTIONS(2180), - [anon_sym_u64] = ACTIONS(2180), - [anon_sym_i64] = ACTIONS(2180), - [anon_sym_u128] = ACTIONS(2180), - [anon_sym_i128] = ACTIONS(2180), - [anon_sym_isize] = ACTIONS(2180), - [anon_sym_usize] = ACTIONS(2180), - [anon_sym_f32] = ACTIONS(2180), - [anon_sym_f64] = ACTIONS(2180), - [anon_sym_bool] = ACTIONS(2180), - [anon_sym_str] = ACTIONS(2180), - [anon_sym_char] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_async] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_const] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_default] = ACTIONS(2180), - [anon_sym_enum] = ACTIONS(2180), - [anon_sym_fn] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2180), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_impl] = ACTIONS(2180), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_loop] = ACTIONS(2180), - [anon_sym_match] = ACTIONS(2180), - [anon_sym_mod] = ACTIONS(2180), - [anon_sym_pub] = ACTIONS(2180), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_struct] = ACTIONS(2180), - [anon_sym_trait] = ACTIONS(2180), - [anon_sym_type] = ACTIONS(2180), - [anon_sym_union] = ACTIONS(2180), - [anon_sym_unsafe] = ACTIONS(2180), - [anon_sym_use] = ACTIONS(2180), - [anon_sym_while] = ACTIONS(2180), - [anon_sym_extern] = ACTIONS(2180), - [anon_sym_yield] = ACTIONS(2180), - [anon_sym_move] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2180), - [sym_integer_literal] = ACTIONS(2178), - [aux_sym_string_literal_token1] = ACTIONS(2178), - [sym_char_literal] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2180), - [sym_super] = ACTIONS(2180), - [sym_crate] = ACTIONS(2180), - [sym_metavariable] = ACTIONS(2178), - [sym__raw_string_literal_start] = ACTIONS(2178), - [sym_float_literal] = ACTIONS(2178), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_macro_rules_BANG] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_COLON_COLON] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_gen] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_move] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2203), + [aux_sym_string_literal_token1] = ACTIONS(2203), + [sym_char_literal] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2203), + [sym__raw_string_literal_start] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), }, [609] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_macro_rules_BANG] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_u8] = ACTIONS(2184), - [anon_sym_i8] = ACTIONS(2184), - [anon_sym_u16] = ACTIONS(2184), - [anon_sym_i16] = ACTIONS(2184), - [anon_sym_u32] = ACTIONS(2184), - [anon_sym_i32] = ACTIONS(2184), - [anon_sym_u64] = ACTIONS(2184), - [anon_sym_i64] = ACTIONS(2184), - [anon_sym_u128] = ACTIONS(2184), - [anon_sym_i128] = ACTIONS(2184), - [anon_sym_isize] = ACTIONS(2184), - [anon_sym_usize] = ACTIONS(2184), - [anon_sym_f32] = ACTIONS(2184), - [anon_sym_f64] = ACTIONS(2184), - [anon_sym_bool] = ACTIONS(2184), - [anon_sym_str] = ACTIONS(2184), - [anon_sym_char] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_DOT_DOT] = ACTIONS(2182), - [anon_sym_COLON_COLON] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_async] = 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_while] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_move] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [sym_integer_literal] = ACTIONS(2182), - [aux_sym_string_literal_token1] = ACTIONS(2182), - [sym_char_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_crate] = ACTIONS(2184), - [sym_metavariable] = ACTIONS(2182), - [sym__raw_string_literal_start] = ACTIONS(2182), - [sym_float_literal] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_macro_rules_BANG] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2209), + [anon_sym_i8] = ACTIONS(2209), + [anon_sym_u16] = ACTIONS(2209), + [anon_sym_i16] = ACTIONS(2209), + [anon_sym_u32] = ACTIONS(2209), + [anon_sym_i32] = ACTIONS(2209), + [anon_sym_u64] = ACTIONS(2209), + [anon_sym_i64] = ACTIONS(2209), + [anon_sym_u128] = ACTIONS(2209), + [anon_sym_i128] = ACTIONS(2209), + [anon_sym_isize] = ACTIONS(2209), + [anon_sym_usize] = ACTIONS(2209), + [anon_sym_f32] = ACTIONS(2209), + [anon_sym_f64] = ACTIONS(2209), + [anon_sym_bool] = ACTIONS(2209), + [anon_sym_str] = ACTIONS(2209), + [anon_sym_char] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_COLON_COLON] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_gen] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_impl] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_mod] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_extern] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_move] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2207), + [aux_sym_string_literal_token1] = ACTIONS(2207), + [sym_char_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_metavariable] = ACTIONS(2207), + [sym__raw_string_literal_start] = ACTIONS(2207), + [sym_float_literal] = ACTIONS(2207), }, [610] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_macro_rules_BANG] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_u8] = ACTIONS(2188), - [anon_sym_i8] = ACTIONS(2188), - [anon_sym_u16] = ACTIONS(2188), - [anon_sym_i16] = ACTIONS(2188), - [anon_sym_u32] = ACTIONS(2188), - [anon_sym_i32] = ACTIONS(2188), - [anon_sym_u64] = ACTIONS(2188), - [anon_sym_i64] = ACTIONS(2188), - [anon_sym_u128] = ACTIONS(2188), - [anon_sym_i128] = ACTIONS(2188), - [anon_sym_isize] = ACTIONS(2188), - [anon_sym_usize] = ACTIONS(2188), - [anon_sym_f32] = ACTIONS(2188), - [anon_sym_f64] = ACTIONS(2188), - [anon_sym_bool] = ACTIONS(2188), - [anon_sym_str] = ACTIONS(2188), - [anon_sym_char] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_DOT_DOT] = ACTIONS(2186), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_async] = 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_while] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_move] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(2186), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_crate] = ACTIONS(2188), - [sym_metavariable] = ACTIONS(2186), - [sym__raw_string_literal_start] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_macro_rules_BANG] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2213), + [anon_sym_i8] = ACTIONS(2213), + [anon_sym_u16] = ACTIONS(2213), + [anon_sym_i16] = ACTIONS(2213), + [anon_sym_u32] = ACTIONS(2213), + [anon_sym_i32] = ACTIONS(2213), + [anon_sym_u64] = ACTIONS(2213), + [anon_sym_i64] = ACTIONS(2213), + [anon_sym_u128] = ACTIONS(2213), + [anon_sym_i128] = ACTIONS(2213), + [anon_sym_isize] = ACTIONS(2213), + [anon_sym_usize] = ACTIONS(2213), + [anon_sym_f32] = ACTIONS(2213), + [anon_sym_f64] = ACTIONS(2213), + [anon_sym_bool] = ACTIONS(2213), + [anon_sym_str] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_COLON_COLON] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_gen] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_move] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(2211), + [aux_sym_string_literal_token1] = ACTIONS(2211), + [sym_char_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_metavariable] = ACTIONS(2211), + [sym__raw_string_literal_start] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), }, [611] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_macro_rules_BANG] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_u8] = ACTIONS(2192), - [anon_sym_i8] = ACTIONS(2192), - [anon_sym_u16] = ACTIONS(2192), - [anon_sym_i16] = ACTIONS(2192), - [anon_sym_u32] = ACTIONS(2192), - [anon_sym_i32] = ACTIONS(2192), - [anon_sym_u64] = ACTIONS(2192), - [anon_sym_i64] = ACTIONS(2192), - [anon_sym_u128] = ACTIONS(2192), - [anon_sym_i128] = ACTIONS(2192), - [anon_sym_isize] = ACTIONS(2192), - [anon_sym_usize] = ACTIONS(2192), - [anon_sym_f32] = ACTIONS(2192), - [anon_sym_f64] = ACTIONS(2192), - [anon_sym_bool] = ACTIONS(2192), - [anon_sym_str] = ACTIONS(2192), - [anon_sym_char] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [anon_sym_COLON_COLON] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_loop] = ACTIONS(2192), - [anon_sym_match] = ACTIONS(2192), - [anon_sym_mod] = ACTIONS(2192), - [anon_sym_pub] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2192), - [anon_sym_trait] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_union] = ACTIONS(2192), - [anon_sym_unsafe] = ACTIONS(2192), - [anon_sym_use] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_move] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [sym_integer_literal] = ACTIONS(2190), - [aux_sym_string_literal_token1] = ACTIONS(2190), - [sym_char_literal] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_crate] = ACTIONS(2192), - [sym_metavariable] = ACTIONS(2190), - [sym__raw_string_literal_start] = ACTIONS(2190), - [sym_float_literal] = ACTIONS(2190), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_macro_rules_BANG] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_u8] = ACTIONS(2217), + [anon_sym_i8] = ACTIONS(2217), + [anon_sym_u16] = ACTIONS(2217), + [anon_sym_i16] = ACTIONS(2217), + [anon_sym_u32] = ACTIONS(2217), + [anon_sym_i32] = ACTIONS(2217), + [anon_sym_u64] = ACTIONS(2217), + [anon_sym_i64] = ACTIONS(2217), + [anon_sym_u128] = ACTIONS(2217), + [anon_sym_i128] = ACTIONS(2217), + [anon_sym_isize] = ACTIONS(2217), + [anon_sym_usize] = ACTIONS(2217), + [anon_sym_f32] = ACTIONS(2217), + [anon_sym_f64] = ACTIONS(2217), + [anon_sym_bool] = ACTIONS(2217), + [anon_sym_str] = ACTIONS(2217), + [anon_sym_char] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_COLON_COLON] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_gen] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_impl] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_mod] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_move] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2215), + [aux_sym_string_literal_token1] = ACTIONS(2215), + [sym_char_literal] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2215), + [sym__raw_string_literal_start] = ACTIONS(2215), + [sym_float_literal] = ACTIONS(2215), }, [612] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_macro_rules_BANG] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_u8] = ACTIONS(2196), - [anon_sym_i8] = ACTIONS(2196), - [anon_sym_u16] = ACTIONS(2196), - [anon_sym_i16] = ACTIONS(2196), - [anon_sym_u32] = ACTIONS(2196), - [anon_sym_i32] = ACTIONS(2196), - [anon_sym_u64] = ACTIONS(2196), - [anon_sym_i64] = ACTIONS(2196), - [anon_sym_u128] = ACTIONS(2196), - [anon_sym_i128] = ACTIONS(2196), - [anon_sym_isize] = ACTIONS(2196), - [anon_sym_usize] = ACTIONS(2196), - [anon_sym_f32] = ACTIONS(2196), - [anon_sym_f64] = ACTIONS(2196), - [anon_sym_bool] = ACTIONS(2196), - [anon_sym_str] = ACTIONS(2196), - [anon_sym_char] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [anon_sym_fn] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2196), - [anon_sym_pub] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_struct] = ACTIONS(2196), - [anon_sym_trait] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_union] = ACTIONS(2196), - [anon_sym_unsafe] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_move] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [sym_integer_literal] = ACTIONS(2194), - [aux_sym_string_literal_token1] = ACTIONS(2194), - [sym_char_literal] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_crate] = ACTIONS(2196), - [sym_metavariable] = ACTIONS(2194), - [sym__raw_string_literal_start] = ACTIONS(2194), - [sym_float_literal] = ACTIONS(2194), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_macro_rules_BANG] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_COLON_COLON] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_gen] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_mod] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_extern] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_move] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2219), + [aux_sym_string_literal_token1] = ACTIONS(2219), + [sym_char_literal] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2219), + [sym__raw_string_literal_start] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), }, [613] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3493), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_macro_rules_BANG] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2198), - [anon_sym_u8] = ACTIONS(2200), - [anon_sym_i8] = ACTIONS(2200), - [anon_sym_u16] = ACTIONS(2200), - [anon_sym_i16] = ACTIONS(2200), - [anon_sym_u32] = ACTIONS(2200), - [anon_sym_i32] = ACTIONS(2200), - [anon_sym_u64] = ACTIONS(2200), - [anon_sym_i64] = ACTIONS(2200), - [anon_sym_u128] = ACTIONS(2200), - [anon_sym_i128] = ACTIONS(2200), - [anon_sym_isize] = ACTIONS(2200), - [anon_sym_usize] = ACTIONS(2200), - [anon_sym_f32] = ACTIONS(2200), - [anon_sym_f64] = ACTIONS(2200), - [anon_sym_bool] = ACTIONS(2200), - [anon_sym_str] = ACTIONS(2200), - [anon_sym_char] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_BANG] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(2198), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [anon_sym_fn] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_impl] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2200), - [anon_sym_pub] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2200), - [anon_sym_trait] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_union] = ACTIONS(2200), - [anon_sym_unsafe] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_move] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [sym_integer_literal] = ACTIONS(2198), - [aux_sym_string_literal_token1] = ACTIONS(2198), - [sym_char_literal] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_crate] = ACTIONS(2200), - [sym_metavariable] = ACTIONS(2198), - [sym__raw_string_literal_start] = ACTIONS(2198), - [sym_float_literal] = ACTIONS(2198), + [aux_sym_match_block_repeat1] = STATE(753), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [614] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_macro_rules_BANG] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_u8] = ACTIONS(2204), - [anon_sym_i8] = ACTIONS(2204), - [anon_sym_u16] = ACTIONS(2204), - [anon_sym_i16] = ACTIONS(2204), - [anon_sym_u32] = ACTIONS(2204), - [anon_sym_i32] = ACTIONS(2204), - [anon_sym_u64] = ACTIONS(2204), - [anon_sym_i64] = ACTIONS(2204), - [anon_sym_u128] = ACTIONS(2204), - [anon_sym_i128] = ACTIONS(2204), - [anon_sym_isize] = ACTIONS(2204), - [anon_sym_usize] = ACTIONS(2204), - [anon_sym_f32] = ACTIONS(2204), - [anon_sym_f64] = ACTIONS(2204), - [anon_sym_bool] = ACTIONS(2204), - [anon_sym_str] = ACTIONS(2204), - [anon_sym_char] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_async] = 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_while] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_move] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [sym_integer_literal] = ACTIONS(2202), - [aux_sym_string_literal_token1] = ACTIONS(2202), - [sym_char_literal] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_crate] = ACTIONS(2204), - [sym_metavariable] = ACTIONS(2202), - [sym__raw_string_literal_start] = ACTIONS(2202), - [sym_float_literal] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_macro_rules_BANG] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_u8] = ACTIONS(2225), + [anon_sym_i8] = ACTIONS(2225), + [anon_sym_u16] = ACTIONS(2225), + [anon_sym_i16] = ACTIONS(2225), + [anon_sym_u32] = ACTIONS(2225), + [anon_sym_i32] = ACTIONS(2225), + [anon_sym_u64] = ACTIONS(2225), + [anon_sym_i64] = ACTIONS(2225), + [anon_sym_u128] = ACTIONS(2225), + [anon_sym_i128] = ACTIONS(2225), + [anon_sym_isize] = ACTIONS(2225), + [anon_sym_usize] = ACTIONS(2225), + [anon_sym_f32] = ACTIONS(2225), + [anon_sym_f64] = ACTIONS(2225), + [anon_sym_bool] = ACTIONS(2225), + [anon_sym_str] = ACTIONS(2225), + [anon_sym_char] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_COLON_COLON] = ACTIONS(2223), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_gen] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_impl] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_mod] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_extern] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_move] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), + [sym_metavariable] = ACTIONS(2223), + [sym__raw_string_literal_start] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), }, [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_macro_rules_BANG] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_u8] = ACTIONS(2208), - [anon_sym_i8] = ACTIONS(2208), - [anon_sym_u16] = ACTIONS(2208), - [anon_sym_i16] = ACTIONS(2208), - [anon_sym_u32] = ACTIONS(2208), - [anon_sym_i32] = ACTIONS(2208), - [anon_sym_u64] = ACTIONS(2208), - [anon_sym_i64] = ACTIONS(2208), - [anon_sym_u128] = ACTIONS(2208), - [anon_sym_i128] = ACTIONS(2208), - [anon_sym_isize] = ACTIONS(2208), - [anon_sym_usize] = ACTIONS(2208), - [anon_sym_f32] = ACTIONS(2208), - [anon_sym_f64] = ACTIONS(2208), - [anon_sym_bool] = ACTIONS(2208), - [anon_sym_str] = ACTIONS(2208), - [anon_sym_char] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_COLON_COLON] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [anon_sym_fn] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_impl] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_loop] = ACTIONS(2208), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_mod] = ACTIONS(2208), - [anon_sym_pub] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_struct] = ACTIONS(2208), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2208), - [anon_sym_use] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_move] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [sym_integer_literal] = ACTIONS(2206), - [aux_sym_string_literal_token1] = ACTIONS(2206), - [sym_char_literal] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_crate] = ACTIONS(2208), - [sym_metavariable] = ACTIONS(2206), - [sym__raw_string_literal_start] = ACTIONS(2206), - [sym_float_literal] = ACTIONS(2206), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_macro_rules_BANG] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_u8] = ACTIONS(2229), + [anon_sym_i8] = ACTIONS(2229), + [anon_sym_u16] = ACTIONS(2229), + [anon_sym_i16] = ACTIONS(2229), + [anon_sym_u32] = ACTIONS(2229), + [anon_sym_i32] = ACTIONS(2229), + [anon_sym_u64] = ACTIONS(2229), + [anon_sym_i64] = ACTIONS(2229), + [anon_sym_u128] = ACTIONS(2229), + [anon_sym_i128] = ACTIONS(2229), + [anon_sym_isize] = ACTIONS(2229), + [anon_sym_usize] = ACTIONS(2229), + [anon_sym_f32] = ACTIONS(2229), + [anon_sym_f64] = ACTIONS(2229), + [anon_sym_bool] = ACTIONS(2229), + [anon_sym_str] = ACTIONS(2229), + [anon_sym_char] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_COLON_COLON] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_gen] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_impl] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_mod] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_move] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [sym_integer_literal] = ACTIONS(2227), + [aux_sym_string_literal_token1] = ACTIONS(2227), + [sym_char_literal] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_crate] = ACTIONS(2229), + [sym_metavariable] = ACTIONS(2227), + [sym__raw_string_literal_start] = ACTIONS(2227), + [sym_float_literal] = ACTIONS(2227), }, [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_macro_rules_BANG] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_u8] = ACTIONS(2212), - [anon_sym_i8] = ACTIONS(2212), - [anon_sym_u16] = ACTIONS(2212), - [anon_sym_i16] = ACTIONS(2212), - [anon_sym_u32] = ACTIONS(2212), - [anon_sym_i32] = ACTIONS(2212), - [anon_sym_u64] = ACTIONS(2212), - [anon_sym_i64] = ACTIONS(2212), - [anon_sym_u128] = ACTIONS(2212), - [anon_sym_i128] = ACTIONS(2212), - [anon_sym_isize] = ACTIONS(2212), - [anon_sym_usize] = ACTIONS(2212), - [anon_sym_f32] = ACTIONS(2212), - [anon_sym_f64] = ACTIONS(2212), - [anon_sym_bool] = ACTIONS(2212), - [anon_sym_str] = ACTIONS(2212), - [anon_sym_char] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2210), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_DOT_DOT] = ACTIONS(2210), - [anon_sym_COLON_COLON] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [anon_sym_fn] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_impl] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_mod] = ACTIONS(2212), - [anon_sym_pub] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_struct] = ACTIONS(2212), - [anon_sym_trait] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_move] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [sym_integer_literal] = ACTIONS(2210), - [aux_sym_string_literal_token1] = ACTIONS(2210), - [sym_char_literal] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_crate] = ACTIONS(2212), - [sym_metavariable] = ACTIONS(2210), - [sym__raw_string_literal_start] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_macro_rules_BANG] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_COLON_COLON] = ACTIONS(2231), + [anon_sym_POUND] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_gen] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_extern] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_move] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2231), + [aux_sym_string_literal_token1] = ACTIONS(2231), + [sym_char_literal] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_metavariable] = ACTIONS(2231), + [sym__raw_string_literal_start] = ACTIONS(2231), + [sym_float_literal] = ACTIONS(2231), }, [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_macro_rules_BANG] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_u8] = ACTIONS(2216), - [anon_sym_i8] = ACTIONS(2216), - [anon_sym_u16] = ACTIONS(2216), - [anon_sym_i16] = ACTIONS(2216), - [anon_sym_u32] = ACTIONS(2216), - [anon_sym_i32] = ACTIONS(2216), - [anon_sym_u64] = ACTIONS(2216), - [anon_sym_i64] = ACTIONS(2216), - [anon_sym_u128] = ACTIONS(2216), - [anon_sym_i128] = ACTIONS(2216), - [anon_sym_isize] = ACTIONS(2216), - [anon_sym_usize] = ACTIONS(2216), - [anon_sym_f32] = ACTIONS(2216), - [anon_sym_f64] = ACTIONS(2216), - [anon_sym_bool] = ACTIONS(2216), - [anon_sym_str] = ACTIONS(2216), - [anon_sym_char] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [anon_sym_COLON_COLON] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [anon_sym_fn] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_impl] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_mod] = ACTIONS(2216), - [anon_sym_pub] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_struct] = ACTIONS(2216), - [anon_sym_trait] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_union] = ACTIONS(2216), - [anon_sym_unsafe] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_move] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [sym_integer_literal] = ACTIONS(2214), - [aux_sym_string_literal_token1] = ACTIONS(2214), - [sym_char_literal] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2216), - [sym_metavariable] = ACTIONS(2214), - [sym__raw_string_literal_start] = ACTIONS(2214), - [sym_float_literal] = ACTIONS(2214), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_COLON_COLON] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_gen] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_extern] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2235), + [aux_sym_string_literal_token1] = ACTIONS(2235), + [sym_char_literal] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2235), + [sym__raw_string_literal_start] = ACTIONS(2235), + [sym_float_literal] = ACTIONS(2235), }, [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_macro_rules_BANG] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2218), - [anon_sym_u8] = ACTIONS(2220), - [anon_sym_i8] = ACTIONS(2220), - [anon_sym_u16] = ACTIONS(2220), - [anon_sym_i16] = ACTIONS(2220), - [anon_sym_u32] = ACTIONS(2220), - [anon_sym_i32] = ACTIONS(2220), - [anon_sym_u64] = ACTIONS(2220), - [anon_sym_i64] = ACTIONS(2220), - [anon_sym_u128] = ACTIONS(2220), - [anon_sym_i128] = ACTIONS(2220), - [anon_sym_isize] = ACTIONS(2220), - [anon_sym_usize] = ACTIONS(2220), - [anon_sym_f32] = ACTIONS(2220), - [anon_sym_f64] = ACTIONS(2220), - [anon_sym_bool] = ACTIONS(2220), - [anon_sym_str] = ACTIONS(2220), - [anon_sym_char] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(2218), - [anon_sym_DOT_DOT] = ACTIONS(2218), - [anon_sym_COLON_COLON] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_async] = 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_while] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_yield] = ACTIONS(2220), - [anon_sym_move] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2220), - [sym_integer_literal] = ACTIONS(2218), - [aux_sym_string_literal_token1] = ACTIONS(2218), - [sym_char_literal] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2220), - [sym_metavariable] = ACTIONS(2218), - [sym__raw_string_literal_start] = ACTIONS(2218), - [sym_float_literal] = ACTIONS(2218), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_macro_rules_BANG] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_COLON_COLON] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_gen] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_move] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2239), + [aux_sym_string_literal_token1] = ACTIONS(2239), + [sym_char_literal] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2239), + [sym__raw_string_literal_start] = ACTIONS(2239), + [sym_float_literal] = ACTIONS(2239), }, [619] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_macro_rules_BANG] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_u8] = ACTIONS(2224), - [anon_sym_i8] = ACTIONS(2224), - [anon_sym_u16] = ACTIONS(2224), - [anon_sym_i16] = ACTIONS(2224), - [anon_sym_u32] = ACTIONS(2224), - [anon_sym_i32] = ACTIONS(2224), - [anon_sym_u64] = ACTIONS(2224), - [anon_sym_i64] = ACTIONS(2224), - [anon_sym_u128] = ACTIONS(2224), - [anon_sym_i128] = ACTIONS(2224), - [anon_sym_isize] = ACTIONS(2224), - [anon_sym_usize] = ACTIONS(2224), - [anon_sym_f32] = ACTIONS(2224), - [anon_sym_f64] = ACTIONS(2224), - [anon_sym_bool] = ACTIONS(2224), - [anon_sym_str] = ACTIONS(2224), - [anon_sym_char] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_COLON_COLON] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_async] = 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_while] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_yield] = ACTIONS(2224), - [anon_sym_move] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [sym_integer_literal] = ACTIONS(2222), - [aux_sym_string_literal_token1] = ACTIONS(2222), - [sym_char_literal] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2224), - [sym_super] = ACTIONS(2224), - [sym_crate] = ACTIONS(2224), - [sym_metavariable] = ACTIONS(2222), - [sym__raw_string_literal_start] = ACTIONS(2222), - [sym_float_literal] = ACTIONS(2222), + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_macro_rules_BANG] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_gen] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_extern] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_move] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2243), + [aux_sym_string_literal_token1] = ACTIONS(2243), + [sym_char_literal] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_metavariable] = ACTIONS(2243), + [sym__raw_string_literal_start] = ACTIONS(2243), + [sym_float_literal] = ACTIONS(2243), }, [620] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_macro_rules_BANG] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(2228), - [anon_sym_i8] = ACTIONS(2228), - [anon_sym_u16] = ACTIONS(2228), - [anon_sym_i16] = ACTIONS(2228), - [anon_sym_u32] = ACTIONS(2228), - [anon_sym_i32] = ACTIONS(2228), - [anon_sym_u64] = ACTIONS(2228), - [anon_sym_i64] = ACTIONS(2228), - [anon_sym_u128] = ACTIONS(2228), - [anon_sym_i128] = ACTIONS(2228), - [anon_sym_isize] = ACTIONS(2228), - [anon_sym_usize] = ACTIONS(2228), - [anon_sym_f32] = ACTIONS(2228), - [anon_sym_f64] = ACTIONS(2228), - [anon_sym_bool] = ACTIONS(2228), - [anon_sym_str] = ACTIONS(2228), - [anon_sym_char] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_async] = 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_while] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_move] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [aux_sym_string_literal_token1] = ACTIONS(2226), - [sym_char_literal] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_crate] = ACTIONS(2228), - [sym_metavariable] = ACTIONS(2226), - [sym__raw_string_literal_start] = ACTIONS(2226), - [sym_float_literal] = ACTIONS(2226), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_macro_rules_BANG] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_COLON_COLON] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_gen] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_move] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2247), + [aux_sym_string_literal_token1] = ACTIONS(2247), + [sym_char_literal] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2247), + [sym__raw_string_literal_start] = ACTIONS(2247), + [sym_float_literal] = ACTIONS(2247), }, [621] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_macro_rules_BANG] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_u8] = ACTIONS(2232), - [anon_sym_i8] = ACTIONS(2232), - [anon_sym_u16] = ACTIONS(2232), - [anon_sym_i16] = ACTIONS(2232), - [anon_sym_u32] = ACTIONS(2232), - [anon_sym_i32] = ACTIONS(2232), - [anon_sym_u64] = ACTIONS(2232), - [anon_sym_i64] = ACTIONS(2232), - [anon_sym_u128] = ACTIONS(2232), - [anon_sym_i128] = ACTIONS(2232), - [anon_sym_isize] = ACTIONS(2232), - [anon_sym_usize] = ACTIONS(2232), - [anon_sym_f32] = ACTIONS(2232), - [anon_sym_f64] = ACTIONS(2232), - [anon_sym_bool] = ACTIONS(2232), - [anon_sym_str] = ACTIONS(2232), - [anon_sym_char] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_async] = 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_while] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_move] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [sym_integer_literal] = ACTIONS(2230), - [aux_sym_string_literal_token1] = ACTIONS(2230), - [sym_char_literal] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2230), - [sym__raw_string_literal_start] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_macro_rules_BANG] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2251), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_gen] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_move] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2251), + [aux_sym_string_literal_token1] = ACTIONS(2251), + [sym_char_literal] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2251), + [sym__raw_string_literal_start] = ACTIONS(2251), + [sym_float_literal] = ACTIONS(2251), }, [622] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_macro_rules_BANG] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_u8] = ACTIONS(2236), - [anon_sym_i8] = ACTIONS(2236), - [anon_sym_u16] = ACTIONS(2236), - [anon_sym_i16] = ACTIONS(2236), - [anon_sym_u32] = ACTIONS(2236), - [anon_sym_i32] = ACTIONS(2236), - [anon_sym_u64] = ACTIONS(2236), - [anon_sym_i64] = ACTIONS(2236), - [anon_sym_u128] = ACTIONS(2236), - [anon_sym_i128] = ACTIONS(2236), - [anon_sym_isize] = ACTIONS(2236), - [anon_sym_usize] = ACTIONS(2236), - [anon_sym_f32] = ACTIONS(2236), - [anon_sym_f64] = ACTIONS(2236), - [anon_sym_bool] = ACTIONS(2236), - [anon_sym_str] = ACTIONS(2236), - [anon_sym_char] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_async] = 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_while] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2234), - [sym__raw_string_literal_start] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_macro_rules_BANG] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_gen] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_move] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2255), + [aux_sym_string_literal_token1] = ACTIONS(2255), + [sym_char_literal] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2255), + [sym__raw_string_literal_start] = ACTIONS(2255), + [sym_float_literal] = ACTIONS(2255), }, [623] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_macro_rules_BANG] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(2240), - [anon_sym_i8] = ACTIONS(2240), - [anon_sym_u16] = ACTIONS(2240), - [anon_sym_i16] = ACTIONS(2240), - [anon_sym_u32] = ACTIONS(2240), - [anon_sym_i32] = ACTIONS(2240), - [anon_sym_u64] = ACTIONS(2240), - [anon_sym_i64] = ACTIONS(2240), - [anon_sym_u128] = ACTIONS(2240), - [anon_sym_i128] = ACTIONS(2240), - [anon_sym_isize] = ACTIONS(2240), - [anon_sym_usize] = ACTIONS(2240), - [anon_sym_f32] = ACTIONS(2240), - [anon_sym_f64] = ACTIONS(2240), - [anon_sym_bool] = ACTIONS(2240), - [anon_sym_str] = ACTIONS(2240), - [anon_sym_char] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_async] = 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_while] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_move] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(2238), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2238), - [sym__raw_string_literal_start] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_macro_rules_BANG] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_u8] = ACTIONS(2261), + [anon_sym_i8] = ACTIONS(2261), + [anon_sym_u16] = ACTIONS(2261), + [anon_sym_i16] = ACTIONS(2261), + [anon_sym_u32] = ACTIONS(2261), + [anon_sym_i32] = ACTIONS(2261), + [anon_sym_u64] = ACTIONS(2261), + [anon_sym_i64] = ACTIONS(2261), + [anon_sym_u128] = ACTIONS(2261), + [anon_sym_i128] = ACTIONS(2261), + [anon_sym_isize] = ACTIONS(2261), + [anon_sym_usize] = ACTIONS(2261), + [anon_sym_f32] = ACTIONS(2261), + [anon_sym_f64] = ACTIONS(2261), + [anon_sym_bool] = ACTIONS(2261), + [anon_sym_str] = ACTIONS(2261), + [anon_sym_char] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_COLON_COLON] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_gen] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_impl] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_move] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [sym_integer_literal] = ACTIONS(2259), + [aux_sym_string_literal_token1] = ACTIONS(2259), + [sym_char_literal] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_crate] = ACTIONS(2261), + [sym_metavariable] = ACTIONS(2259), + [sym__raw_string_literal_start] = ACTIONS(2259), + [sym_float_literal] = ACTIONS(2259), }, [624] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_macro_rules_BANG] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_u8] = ACTIONS(2244), - [anon_sym_i8] = ACTIONS(2244), - [anon_sym_u16] = ACTIONS(2244), - [anon_sym_i16] = ACTIONS(2244), - [anon_sym_u32] = ACTIONS(2244), - [anon_sym_i32] = ACTIONS(2244), - [anon_sym_u64] = ACTIONS(2244), - [anon_sym_i64] = ACTIONS(2244), - [anon_sym_u128] = ACTIONS(2244), - [anon_sym_i128] = ACTIONS(2244), - [anon_sym_isize] = ACTIONS(2244), - [anon_sym_usize] = ACTIONS(2244), - [anon_sym_f32] = ACTIONS(2244), - [anon_sym_f64] = ACTIONS(2244), - [anon_sym_bool] = ACTIONS(2244), - [anon_sym_str] = ACTIONS(2244), - [anon_sym_char] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_COLON_COLON] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2244), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_const] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2244), - [anon_sym_enum] = ACTIONS(2244), - [anon_sym_fn] = ACTIONS(2244), - [anon_sym_for] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_impl] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2244), - [anon_sym_loop] = ACTIONS(2244), - [anon_sym_match] = ACTIONS(2244), - [anon_sym_mod] = ACTIONS(2244), - [anon_sym_pub] = ACTIONS(2244), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_struct] = ACTIONS(2244), - [anon_sym_trait] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2244), - [anon_sym_union] = ACTIONS(2244), - [anon_sym_unsafe] = ACTIONS(2244), - [anon_sym_use] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(2244), - [anon_sym_yield] = ACTIONS(2244), - [anon_sym_move] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2244), - [sym_integer_literal] = ACTIONS(2242), - [aux_sym_string_literal_token1] = ACTIONS(2242), - [sym_char_literal] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2244), - [sym_super] = ACTIONS(2244), - [sym_crate] = ACTIONS(2244), - [sym_metavariable] = ACTIONS(2242), - [sym__raw_string_literal_start] = ACTIONS(2242), - [sym_float_literal] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_macro_rules_BANG] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_u8] = ACTIONS(2265), + [anon_sym_i8] = ACTIONS(2265), + [anon_sym_u16] = ACTIONS(2265), + [anon_sym_i16] = ACTIONS(2265), + [anon_sym_u32] = ACTIONS(2265), + [anon_sym_i32] = ACTIONS(2265), + [anon_sym_u64] = ACTIONS(2265), + [anon_sym_i64] = ACTIONS(2265), + [anon_sym_u128] = ACTIONS(2265), + [anon_sym_i128] = ACTIONS(2265), + [anon_sym_isize] = ACTIONS(2265), + [anon_sym_usize] = ACTIONS(2265), + [anon_sym_f32] = ACTIONS(2265), + [anon_sym_f64] = ACTIONS(2265), + [anon_sym_bool] = ACTIONS(2265), + [anon_sym_str] = ACTIONS(2265), + [anon_sym_char] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_COLON_COLON] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_gen] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_move] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2263), + [aux_sym_string_literal_token1] = ACTIONS(2263), + [sym_char_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_metavariable] = ACTIONS(2263), + [sym__raw_string_literal_start] = ACTIONS(2263), + [sym_float_literal] = ACTIONS(2263), }, [625] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2246), - [sym_identifier] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_macro_rules_BANG] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_u8] = ACTIONS(2248), - [anon_sym_i8] = ACTIONS(2248), - [anon_sym_u16] = ACTIONS(2248), - [anon_sym_i16] = ACTIONS(2248), - [anon_sym_u32] = ACTIONS(2248), - [anon_sym_i32] = ACTIONS(2248), - [anon_sym_u64] = ACTIONS(2248), - [anon_sym_i64] = ACTIONS(2248), - [anon_sym_u128] = ACTIONS(2248), - [anon_sym_i128] = ACTIONS(2248), - [anon_sym_isize] = ACTIONS(2248), - [anon_sym_usize] = ACTIONS(2248), - [anon_sym_f32] = ACTIONS(2248), - [anon_sym_f64] = ACTIONS(2248), - [anon_sym_bool] = ACTIONS(2248), - [anon_sym_str] = ACTIONS(2248), - [anon_sym_char] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_COLON_COLON] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2248), - [anon_sym_async] = 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_while] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_yield] = ACTIONS(2248), - [anon_sym_move] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [sym_integer_literal] = ACTIONS(2246), - [aux_sym_string_literal_token1] = ACTIONS(2246), - [sym_char_literal] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2248), - [sym_super] = ACTIONS(2248), - [sym_crate] = ACTIONS(2248), - [sym_metavariable] = ACTIONS(2246), - [sym__raw_string_literal_start] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_macro_rules_BANG] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_COLON_COLON] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_gen] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_move] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2267), + [aux_sym_string_literal_token1] = ACTIONS(2267), + [sym_char_literal] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_metavariable] = ACTIONS(2267), + [sym__raw_string_literal_start] = ACTIONS(2267), + [sym_float_literal] = ACTIONS(2267), }, [626] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2250), - [sym_identifier] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_macro_rules_BANG] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_u8] = ACTIONS(2252), - [anon_sym_i8] = ACTIONS(2252), - [anon_sym_u16] = ACTIONS(2252), - [anon_sym_i16] = ACTIONS(2252), - [anon_sym_u32] = ACTIONS(2252), - [anon_sym_i32] = ACTIONS(2252), - [anon_sym_u64] = ACTIONS(2252), - [anon_sym_i64] = ACTIONS(2252), - [anon_sym_u128] = ACTIONS(2252), - [anon_sym_i128] = ACTIONS(2252), - [anon_sym_isize] = ACTIONS(2252), - [anon_sym_usize] = ACTIONS(2252), - [anon_sym_f32] = ACTIONS(2252), - [anon_sym_f64] = ACTIONS(2252), - [anon_sym_bool] = ACTIONS(2252), - [anon_sym_str] = ACTIONS(2252), - [anon_sym_char] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2250), - [anon_sym_COLON_COLON] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [anon_sym_fn] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_impl] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_mod] = ACTIONS(2252), - [anon_sym_pub] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_trait] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2252), - [anon_sym_unsafe] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_move] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [sym_integer_literal] = ACTIONS(2250), - [aux_sym_string_literal_token1] = ACTIONS(2250), - [sym_char_literal] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2252), - [anon_sym_false] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_crate] = ACTIONS(2252), - [sym_metavariable] = ACTIONS(2250), - [sym__raw_string_literal_start] = ACTIONS(2250), - [sym_float_literal] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_macro_rules_BANG] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_u8] = ACTIONS(2273), + [anon_sym_i8] = ACTIONS(2273), + [anon_sym_u16] = ACTIONS(2273), + [anon_sym_i16] = ACTIONS(2273), + [anon_sym_u32] = ACTIONS(2273), + [anon_sym_i32] = ACTIONS(2273), + [anon_sym_u64] = ACTIONS(2273), + [anon_sym_i64] = ACTIONS(2273), + [anon_sym_u128] = ACTIONS(2273), + [anon_sym_i128] = ACTIONS(2273), + [anon_sym_isize] = ACTIONS(2273), + [anon_sym_usize] = ACTIONS(2273), + [anon_sym_f32] = ACTIONS(2273), + [anon_sym_f64] = ACTIONS(2273), + [anon_sym_bool] = ACTIONS(2273), + [anon_sym_str] = ACTIONS(2273), + [anon_sym_char] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_LT] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_COLON_COLON] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_gen] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_impl] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_mod] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_extern] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_move] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [sym_integer_literal] = ACTIONS(2271), + [aux_sym_string_literal_token1] = ACTIONS(2271), + [sym_char_literal] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_crate] = ACTIONS(2273), + [sym_metavariable] = ACTIONS(2271), + [sym__raw_string_literal_start] = ACTIONS(2271), + [sym_float_literal] = ACTIONS(2271), }, [627] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_macro_rules_BANG] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_u8] = ACTIONS(2256), - [anon_sym_i8] = ACTIONS(2256), - [anon_sym_u16] = ACTIONS(2256), - [anon_sym_i16] = ACTIONS(2256), - [anon_sym_u32] = ACTIONS(2256), - [anon_sym_i32] = ACTIONS(2256), - [anon_sym_u64] = ACTIONS(2256), - [anon_sym_i64] = ACTIONS(2256), - [anon_sym_u128] = ACTIONS(2256), - [anon_sym_i128] = ACTIONS(2256), - [anon_sym_isize] = ACTIONS(2256), - [anon_sym_usize] = ACTIONS(2256), - [anon_sym_f32] = ACTIONS(2256), - [anon_sym_f64] = ACTIONS(2256), - [anon_sym_bool] = ACTIONS(2256), - [anon_sym_str] = ACTIONS(2256), - [anon_sym_char] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_COLON_COLON] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym_async] = 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_while] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_yield] = ACTIONS(2256), - [anon_sym_move] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2256), - [sym_integer_literal] = ACTIONS(2254), - [aux_sym_string_literal_token1] = ACTIONS(2254), - [sym_char_literal] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2256), - [sym_super] = ACTIONS(2256), - [sym_crate] = ACTIONS(2256), - [sym_metavariable] = ACTIONS(2254), - [sym__raw_string_literal_start] = ACTIONS(2254), - [sym_float_literal] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_macro_rules_BANG] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_DOT_DOT] = ACTIONS(2275), + [anon_sym_COLON_COLON] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_gen] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_move] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2275), + [aux_sym_string_literal_token1] = ACTIONS(2275), + [sym_char_literal] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_metavariable] = ACTIONS(2275), + [sym__raw_string_literal_start] = ACTIONS(2275), + [sym_float_literal] = ACTIONS(2275), }, [628] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_macro_rules_BANG] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_u8] = ACTIONS(2260), - [anon_sym_i8] = ACTIONS(2260), - [anon_sym_u16] = ACTIONS(2260), - [anon_sym_i16] = ACTIONS(2260), - [anon_sym_u32] = ACTIONS(2260), - [anon_sym_i32] = ACTIONS(2260), - [anon_sym_u64] = ACTIONS(2260), - [anon_sym_i64] = ACTIONS(2260), - [anon_sym_u128] = ACTIONS(2260), - [anon_sym_i128] = ACTIONS(2260), - [anon_sym_isize] = ACTIONS(2260), - [anon_sym_usize] = ACTIONS(2260), - [anon_sym_f32] = ACTIONS(2260), - [anon_sym_f64] = ACTIONS(2260), - [anon_sym_bool] = ACTIONS(2260), - [anon_sym_str] = ACTIONS(2260), - [anon_sym_char] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [anon_sym_fn] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_impl] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_loop] = ACTIONS(2260), - [anon_sym_match] = ACTIONS(2260), - [anon_sym_mod] = ACTIONS(2260), - [anon_sym_pub] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(2260), - [anon_sym_trait] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(2260), - [anon_sym_unsafe] = ACTIONS(2260), - [anon_sym_use] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_move] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [sym_integer_literal] = ACTIONS(2258), - [aux_sym_string_literal_token1] = ACTIONS(2258), - [sym_char_literal] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(2260), - [anon_sym_false] = ACTIONS(2260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_crate] = ACTIONS(2260), - [sym_metavariable] = ACTIONS(2258), - [sym__raw_string_literal_start] = ACTIONS(2258), - [sym_float_literal] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_macro_rules_BANG] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_STAR] = ACTIONS(2279), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_gen] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_move] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2279), + [aux_sym_string_literal_token1] = ACTIONS(2279), + [sym_char_literal] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2279), + [sym__raw_string_literal_start] = ACTIONS(2279), + [sym_float_literal] = ACTIONS(2279), }, [629] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_macro_rules_BANG] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_u8] = ACTIONS(2264), - [anon_sym_i8] = ACTIONS(2264), - [anon_sym_u16] = ACTIONS(2264), - [anon_sym_i16] = ACTIONS(2264), - [anon_sym_u32] = ACTIONS(2264), - [anon_sym_i32] = ACTIONS(2264), - [anon_sym_u64] = ACTIONS(2264), - [anon_sym_i64] = ACTIONS(2264), - [anon_sym_u128] = ACTIONS(2264), - [anon_sym_i128] = ACTIONS(2264), - [anon_sym_isize] = ACTIONS(2264), - [anon_sym_usize] = ACTIONS(2264), - [anon_sym_f32] = ACTIONS(2264), - [anon_sym_f64] = ACTIONS(2264), - [anon_sym_bool] = ACTIONS(2264), - [anon_sym_str] = ACTIONS(2264), - [anon_sym_char] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2262), - [anon_sym_COLON_COLON] = ACTIONS(2262), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_async] = 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_while] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_move] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [sym_integer_literal] = ACTIONS(2262), - [aux_sym_string_literal_token1] = ACTIONS(2262), - [sym_char_literal] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_crate] = ACTIONS(2264), - [sym_metavariable] = ACTIONS(2262), - [sym__raw_string_literal_start] = ACTIONS(2262), - [sym_float_literal] = ACTIONS(2262), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_macro_rules_BANG] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_gen] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_extern] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_move] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2283), + [aux_sym_string_literal_token1] = ACTIONS(2283), + [sym_char_literal] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2283), + [sym__raw_string_literal_start] = ACTIONS(2283), + [sym_float_literal] = ACTIONS(2283), }, [630] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2266), - [sym_identifier] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_macro_rules_BANG] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_u8] = ACTIONS(2268), - [anon_sym_i8] = ACTIONS(2268), - [anon_sym_u16] = ACTIONS(2268), - [anon_sym_i16] = ACTIONS(2268), - [anon_sym_u32] = ACTIONS(2268), - [anon_sym_i32] = ACTIONS(2268), - [anon_sym_u64] = ACTIONS(2268), - [anon_sym_i64] = ACTIONS(2268), - [anon_sym_u128] = ACTIONS(2268), - [anon_sym_i128] = ACTIONS(2268), - [anon_sym_isize] = ACTIONS(2268), - [anon_sym_usize] = ACTIONS(2268), - [anon_sym_f32] = ACTIONS(2268), - [anon_sym_f64] = ACTIONS(2268), - [anon_sym_bool] = ACTIONS(2268), - [anon_sym_str] = ACTIONS(2268), - [anon_sym_char] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_DOT_DOT] = ACTIONS(2266), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [anon_sym_fn] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_impl] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_loop] = ACTIONS(2268), - [anon_sym_match] = ACTIONS(2268), - [anon_sym_mod] = ACTIONS(2268), - [anon_sym_pub] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_struct] = ACTIONS(2268), - [anon_sym_trait] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_union] = ACTIONS(2268), - [anon_sym_unsafe] = ACTIONS(2268), - [anon_sym_use] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_move] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(2266), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2266), - [sym__raw_string_literal_start] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_macro_rules_BANG] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_DOT_DOT] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_gen] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_extern] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_move] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [sym_integer_literal] = ACTIONS(2287), + [aux_sym_string_literal_token1] = ACTIONS(2287), + [sym_char_literal] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2287), + [sym__raw_string_literal_start] = ACTIONS(2287), + [sym_float_literal] = ACTIONS(2287), }, [631] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2270), - [sym_identifier] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_macro_rules_BANG] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_u8] = ACTIONS(2272), - [anon_sym_i8] = ACTIONS(2272), - [anon_sym_u16] = ACTIONS(2272), - [anon_sym_i16] = ACTIONS(2272), - [anon_sym_u32] = ACTIONS(2272), - [anon_sym_i32] = ACTIONS(2272), - [anon_sym_u64] = ACTIONS(2272), - [anon_sym_i64] = ACTIONS(2272), - [anon_sym_u128] = ACTIONS(2272), - [anon_sym_i128] = ACTIONS(2272), - [anon_sym_isize] = ACTIONS(2272), - [anon_sym_usize] = ACTIONS(2272), - [anon_sym_f32] = ACTIONS(2272), - [anon_sym_f64] = ACTIONS(2272), - [anon_sym_bool] = ACTIONS(2272), - [anon_sym_str] = ACTIONS(2272), - [anon_sym_char] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2270), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [anon_sym_fn] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_impl] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_mod] = ACTIONS(2272), - [anon_sym_pub] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_struct] = ACTIONS(2272), - [anon_sym_trait] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_union] = ACTIONS(2272), - [anon_sym_unsafe] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_move] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [sym_integer_literal] = ACTIONS(2270), - [aux_sym_string_literal_token1] = ACTIONS(2270), - [sym_char_literal] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_crate] = ACTIONS(2272), - [sym_metavariable] = ACTIONS(2270), - [sym__raw_string_literal_start] = ACTIONS(2270), - [sym_float_literal] = ACTIONS(2270), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_macro_rules_BANG] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2291), + [anon_sym_POUND] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_gen] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_move] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2291), + [aux_sym_string_literal_token1] = ACTIONS(2291), + [sym_char_literal] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2291), + [sym__raw_string_literal_start] = ACTIONS(2291), + [sym_float_literal] = ACTIONS(2291), }, [632] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_macro_rules_BANG] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_u8] = ACTIONS(2276), - [anon_sym_i8] = ACTIONS(2276), - [anon_sym_u16] = ACTIONS(2276), - [anon_sym_i16] = ACTIONS(2276), - [anon_sym_u32] = ACTIONS(2276), - [anon_sym_i32] = ACTIONS(2276), - [anon_sym_u64] = ACTIONS(2276), - [anon_sym_i64] = ACTIONS(2276), - [anon_sym_u128] = ACTIONS(2276), - [anon_sym_i128] = ACTIONS(2276), - [anon_sym_isize] = ACTIONS(2276), - [anon_sym_usize] = ACTIONS(2276), - [anon_sym_f32] = ACTIONS(2276), - [anon_sym_f64] = ACTIONS(2276), - [anon_sym_bool] = ACTIONS(2276), - [anon_sym_str] = ACTIONS(2276), - [anon_sym_char] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [anon_sym_fn] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_impl] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_mod] = ACTIONS(2276), - [anon_sym_pub] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_struct] = ACTIONS(2276), - [anon_sym_trait] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_union] = ACTIONS(2276), - [anon_sym_unsafe] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_move] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [sym_integer_literal] = ACTIONS(2274), - [aux_sym_string_literal_token1] = ACTIONS(2274), - [sym_char_literal] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_crate] = ACTIONS(2276), - [sym_metavariable] = ACTIONS(2274), - [sym__raw_string_literal_start] = ACTIONS(2274), - [sym_float_literal] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_macro_rules_BANG] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(2295), + [anon_sym_LT] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2295), + [anon_sym_POUND] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_gen] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_move] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2295), + [aux_sym_string_literal_token1] = ACTIONS(2295), + [sym_char_literal] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_metavariable] = ACTIONS(2295), + [sym__raw_string_literal_start] = ACTIONS(2295), + [sym_float_literal] = ACTIONS(2295), }, [633] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2278), - [anon_sym_macro_rules_BANG] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_u8] = ACTIONS(2280), - [anon_sym_i8] = ACTIONS(2280), - [anon_sym_u16] = ACTIONS(2280), - [anon_sym_i16] = ACTIONS(2280), - [anon_sym_u32] = ACTIONS(2280), - [anon_sym_i32] = ACTIONS(2280), - [anon_sym_u64] = ACTIONS(2280), - [anon_sym_i64] = ACTIONS(2280), - [anon_sym_u128] = ACTIONS(2280), - [anon_sym_i128] = ACTIONS(2280), - [anon_sym_isize] = ACTIONS(2280), - [anon_sym_usize] = ACTIONS(2280), - [anon_sym_f32] = ACTIONS(2280), - [anon_sym_f64] = ACTIONS(2280), - [anon_sym_bool] = ACTIONS(2280), - [anon_sym_str] = ACTIONS(2280), - [anon_sym_char] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_DOT_DOT] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [anon_sym_fn] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_impl] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_loop] = ACTIONS(2280), - [anon_sym_match] = ACTIONS(2280), - [anon_sym_mod] = ACTIONS(2280), - [anon_sym_pub] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_struct] = ACTIONS(2280), - [anon_sym_trait] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_union] = ACTIONS(2280), - [anon_sym_unsafe] = ACTIONS(2280), - [anon_sym_use] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_move] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [sym_integer_literal] = ACTIONS(2278), - [aux_sym_string_literal_token1] = ACTIONS(2278), - [sym_char_literal] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = ACTIONS(2280), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_crate] = ACTIONS(2280), - [sym_metavariable] = ACTIONS(2278), - [sym__raw_string_literal_start] = ACTIONS(2278), - [sym_float_literal] = ACTIONS(2278), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_macro_rules_BANG] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(2301), + [anon_sym_i8] = ACTIONS(2301), + [anon_sym_u16] = ACTIONS(2301), + [anon_sym_i16] = ACTIONS(2301), + [anon_sym_u32] = ACTIONS(2301), + [anon_sym_i32] = ACTIONS(2301), + [anon_sym_u64] = ACTIONS(2301), + [anon_sym_i64] = ACTIONS(2301), + [anon_sym_u128] = ACTIONS(2301), + [anon_sym_i128] = ACTIONS(2301), + [anon_sym_isize] = ACTIONS(2301), + [anon_sym_usize] = ACTIONS(2301), + [anon_sym_f32] = ACTIONS(2301), + [anon_sym_f64] = ACTIONS(2301), + [anon_sym_bool] = ACTIONS(2301), + [anon_sym_str] = ACTIONS(2301), + [anon_sym_char] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_fn] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_gen] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_impl] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_mod] = ACTIONS(2301), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_move] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2299), + [aux_sym_string_literal_token1] = ACTIONS(2299), + [sym_char_literal] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_metavariable] = ACTIONS(2299), + [sym__raw_string_literal_start] = ACTIONS(2299), + [sym_float_literal] = ACTIONS(2299), }, [634] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_macro_rules_BANG] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_u8] = ACTIONS(2284), - [anon_sym_i8] = ACTIONS(2284), - [anon_sym_u16] = ACTIONS(2284), - [anon_sym_i16] = ACTIONS(2284), - [anon_sym_u32] = ACTIONS(2284), - [anon_sym_i32] = ACTIONS(2284), - [anon_sym_u64] = ACTIONS(2284), - [anon_sym_i64] = ACTIONS(2284), - [anon_sym_u128] = ACTIONS(2284), - [anon_sym_i128] = ACTIONS(2284), - [anon_sym_isize] = ACTIONS(2284), - [anon_sym_usize] = ACTIONS(2284), - [anon_sym_f32] = ACTIONS(2284), - [anon_sym_f64] = ACTIONS(2284), - [anon_sym_bool] = ACTIONS(2284), - [anon_sym_str] = ACTIONS(2284), - [anon_sym_char] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_COLON_COLON] = ACTIONS(2282), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [anon_sym_fn] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_impl] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_loop] = ACTIONS(2284), - [anon_sym_match] = ACTIONS(2284), - [anon_sym_mod] = ACTIONS(2284), - [anon_sym_pub] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_struct] = ACTIONS(2284), - [anon_sym_trait] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_union] = ACTIONS(2284), - [anon_sym_unsafe] = ACTIONS(2284), - [anon_sym_use] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_move] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [sym_integer_literal] = ACTIONS(2282), - [aux_sym_string_literal_token1] = ACTIONS(2282), - [sym_char_literal] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(2282), - [sym__raw_string_literal_start] = ACTIONS(2282), - [sym_float_literal] = ACTIONS(2282), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_macro_rules_BANG] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_gen] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_impl] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1263), + [anon_sym_loop] = ACTIONS(1263), + [anon_sym_match] = ACTIONS(1263), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_pub] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_trait] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_unsafe] = ACTIONS(1263), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_yield] = ACTIONS(1263), + [anon_sym_move] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_crate] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), }, [635] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_macro_rules_BANG] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_u8] = ACTIONS(2288), - [anon_sym_i8] = ACTIONS(2288), - [anon_sym_u16] = ACTIONS(2288), - [anon_sym_i16] = ACTIONS(2288), - [anon_sym_u32] = ACTIONS(2288), - [anon_sym_i32] = ACTIONS(2288), - [anon_sym_u64] = ACTIONS(2288), - [anon_sym_i64] = ACTIONS(2288), - [anon_sym_u128] = ACTIONS(2288), - [anon_sym_i128] = ACTIONS(2288), - [anon_sym_isize] = ACTIONS(2288), - [anon_sym_usize] = ACTIONS(2288), - [anon_sym_f32] = ACTIONS(2288), - [anon_sym_f64] = ACTIONS(2288), - [anon_sym_bool] = ACTIONS(2288), - [anon_sym_str] = ACTIONS(2288), - [anon_sym_char] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2286), - [anon_sym_COLON_COLON] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [anon_sym_fn] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_impl] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_mod] = ACTIONS(2288), - [anon_sym_pub] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_struct] = ACTIONS(2288), - [anon_sym_trait] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_union] = ACTIONS(2288), - [anon_sym_unsafe] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_move] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [sym_integer_literal] = ACTIONS(2286), - [aux_sym_string_literal_token1] = ACTIONS(2286), - [sym_char_literal] = ACTIONS(2286), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_crate] = ACTIONS(2288), - [sym_metavariable] = ACTIONS(2286), - [sym__raw_string_literal_start] = ACTIONS(2286), - [sym_float_literal] = ACTIONS(2286), + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_macro_rules_BANG] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_gen] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_move] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2303), + [aux_sym_string_literal_token1] = ACTIONS(2303), + [sym_char_literal] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2303), + [sym__raw_string_literal_start] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), }, [636] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_macro_rules_BANG] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_u8] = ACTIONS(2292), - [anon_sym_i8] = ACTIONS(2292), - [anon_sym_u16] = ACTIONS(2292), - [anon_sym_i16] = ACTIONS(2292), - [anon_sym_u32] = ACTIONS(2292), - [anon_sym_i32] = ACTIONS(2292), - [anon_sym_u64] = ACTIONS(2292), - [anon_sym_i64] = ACTIONS(2292), - [anon_sym_u128] = ACTIONS(2292), - [anon_sym_i128] = ACTIONS(2292), - [anon_sym_isize] = ACTIONS(2292), - [anon_sym_usize] = ACTIONS(2292), - [anon_sym_f32] = ACTIONS(2292), - [anon_sym_f64] = ACTIONS(2292), - [anon_sym_bool] = ACTIONS(2292), - [anon_sym_str] = ACTIONS(2292), - [anon_sym_char] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_COLON_COLON] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [anon_sym_fn] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_impl] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_loop] = ACTIONS(2292), - [anon_sym_match] = ACTIONS(2292), - [anon_sym_mod] = ACTIONS(2292), - [anon_sym_pub] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_struct] = ACTIONS(2292), - [anon_sym_trait] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_union] = ACTIONS(2292), - [anon_sym_unsafe] = ACTIONS(2292), - [anon_sym_use] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_move] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [sym_integer_literal] = ACTIONS(2290), - [aux_sym_string_literal_token1] = ACTIONS(2290), - [sym_char_literal] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2292), - [anon_sym_false] = ACTIONS(2292), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_crate] = ACTIONS(2292), - [sym_metavariable] = ACTIONS(2290), - [sym__raw_string_literal_start] = ACTIONS(2290), - [sym_float_literal] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_macro_rules_BANG] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_u8] = ACTIONS(2309), + [anon_sym_i8] = ACTIONS(2309), + [anon_sym_u16] = ACTIONS(2309), + [anon_sym_i16] = ACTIONS(2309), + [anon_sym_u32] = ACTIONS(2309), + [anon_sym_i32] = ACTIONS(2309), + [anon_sym_u64] = ACTIONS(2309), + [anon_sym_i64] = ACTIONS(2309), + [anon_sym_u128] = ACTIONS(2309), + [anon_sym_i128] = ACTIONS(2309), + [anon_sym_isize] = ACTIONS(2309), + [anon_sym_usize] = ACTIONS(2309), + [anon_sym_f32] = ACTIONS(2309), + [anon_sym_f64] = ACTIONS(2309), + [anon_sym_bool] = ACTIONS(2309), + [anon_sym_str] = ACTIONS(2309), + [anon_sym_char] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_fn] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_gen] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_impl] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_mod] = ACTIONS(2309), + [anon_sym_pub] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_union] = ACTIONS(2309), + [anon_sym_unsafe] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_move] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [sym_integer_literal] = ACTIONS(2307), + [aux_sym_string_literal_token1] = ACTIONS(2307), + [sym_char_literal] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_metavariable] = ACTIONS(2307), + [sym__raw_string_literal_start] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), }, [637] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2294), - [sym_identifier] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_macro_rules_BANG] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_u8] = ACTIONS(2296), - [anon_sym_i8] = ACTIONS(2296), - [anon_sym_u16] = ACTIONS(2296), - [anon_sym_i16] = ACTIONS(2296), - [anon_sym_u32] = ACTIONS(2296), - [anon_sym_i32] = ACTIONS(2296), - [anon_sym_u64] = ACTIONS(2296), - [anon_sym_i64] = ACTIONS(2296), - [anon_sym_u128] = ACTIONS(2296), - [anon_sym_i128] = ACTIONS(2296), - [anon_sym_isize] = ACTIONS(2296), - [anon_sym_usize] = ACTIONS(2296), - [anon_sym_f32] = ACTIONS(2296), - [anon_sym_f64] = ACTIONS(2296), - [anon_sym_bool] = ACTIONS(2296), - [anon_sym_str] = ACTIONS(2296), - [anon_sym_char] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2294), - [anon_sym_COLON_COLON] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [anon_sym_fn] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_impl] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_loop] = ACTIONS(2296), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_mod] = ACTIONS(2296), - [anon_sym_pub] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_struct] = ACTIONS(2296), - [anon_sym_trait] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_union] = ACTIONS(2296), - [anon_sym_unsafe] = ACTIONS(2296), - [anon_sym_use] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_move] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [sym_integer_literal] = ACTIONS(2294), - [aux_sym_string_literal_token1] = ACTIONS(2294), - [sym_char_literal] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_crate] = ACTIONS(2296), - [sym_metavariable] = ACTIONS(2294), - [sym__raw_string_literal_start] = ACTIONS(2294), - [sym_float_literal] = ACTIONS(2294), + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_macro_rules_BANG] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_u8] = ACTIONS(2313), + [anon_sym_i8] = ACTIONS(2313), + [anon_sym_u16] = ACTIONS(2313), + [anon_sym_i16] = ACTIONS(2313), + [anon_sym_u32] = ACTIONS(2313), + [anon_sym_i32] = ACTIONS(2313), + [anon_sym_u64] = ACTIONS(2313), + [anon_sym_i64] = ACTIONS(2313), + [anon_sym_u128] = ACTIONS(2313), + [anon_sym_i128] = ACTIONS(2313), + [anon_sym_isize] = ACTIONS(2313), + [anon_sym_usize] = ACTIONS(2313), + [anon_sym_f32] = ACTIONS(2313), + [anon_sym_f64] = ACTIONS(2313), + [anon_sym_bool] = ACTIONS(2313), + [anon_sym_str] = ACTIONS(2313), + [anon_sym_char] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [anon_sym_COLON_COLON] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_fn] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_gen] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_impl] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_mod] = ACTIONS(2313), + [anon_sym_pub] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_unsafe] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_move] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2311), + [aux_sym_string_literal_token1] = ACTIONS(2311), + [sym_char_literal] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_crate] = ACTIONS(2313), + [sym_metavariable] = ACTIONS(2311), + [sym__raw_string_literal_start] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), }, [638] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_macro_rules_BANG] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_u8] = ACTIONS(2300), - [anon_sym_i8] = ACTIONS(2300), - [anon_sym_u16] = ACTIONS(2300), - [anon_sym_i16] = ACTIONS(2300), - [anon_sym_u32] = ACTIONS(2300), - [anon_sym_i32] = ACTIONS(2300), - [anon_sym_u64] = ACTIONS(2300), - [anon_sym_i64] = ACTIONS(2300), - [anon_sym_u128] = ACTIONS(2300), - [anon_sym_i128] = ACTIONS(2300), - [anon_sym_isize] = ACTIONS(2300), - [anon_sym_usize] = ACTIONS(2300), - [anon_sym_f32] = ACTIONS(2300), - [anon_sym_f64] = ACTIONS(2300), - [anon_sym_bool] = ACTIONS(2300), - [anon_sym_str] = ACTIONS(2300), - [anon_sym_char] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_DOT_DOT] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_fn] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_impl] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_mod] = ACTIONS(2300), - [anon_sym_pub] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_trait] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [anon_sym_unsafe] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_move] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [sym_integer_literal] = ACTIONS(2298), - [aux_sym_string_literal_token1] = ACTIONS(2298), - [sym_char_literal] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_crate] = ACTIONS(2300), - [sym_metavariable] = ACTIONS(2298), - [sym__raw_string_literal_start] = ACTIONS(2298), - [sym_float_literal] = ACTIONS(2298), + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_u8] = ACTIONS(2317), + [anon_sym_i8] = ACTIONS(2317), + [anon_sym_u16] = ACTIONS(2317), + [anon_sym_i16] = ACTIONS(2317), + [anon_sym_u32] = ACTIONS(2317), + [anon_sym_i32] = ACTIONS(2317), + [anon_sym_u64] = ACTIONS(2317), + [anon_sym_i64] = ACTIONS(2317), + [anon_sym_u128] = ACTIONS(2317), + [anon_sym_i128] = ACTIONS(2317), + [anon_sym_isize] = ACTIONS(2317), + [anon_sym_usize] = ACTIONS(2317), + [anon_sym_f32] = ACTIONS(2317), + [anon_sym_f64] = ACTIONS(2317), + [anon_sym_bool] = ACTIONS(2317), + [anon_sym_str] = ACTIONS(2317), + [anon_sym_char] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_fn] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_gen] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_impl] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_mod] = ACTIONS(2317), + [anon_sym_pub] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_move] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [sym_integer_literal] = ACTIONS(2315), + [aux_sym_string_literal_token1] = ACTIONS(2315), + [sym_char_literal] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_crate] = ACTIONS(2317), + [sym_metavariable] = ACTIONS(2315), + [sym__raw_string_literal_start] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), }, [639] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_macro_rules_BANG] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_u8] = ACTIONS(2304), - [anon_sym_i8] = ACTIONS(2304), - [anon_sym_u16] = ACTIONS(2304), - [anon_sym_i16] = ACTIONS(2304), - [anon_sym_u32] = ACTIONS(2304), - [anon_sym_i32] = ACTIONS(2304), - [anon_sym_u64] = ACTIONS(2304), - [anon_sym_i64] = ACTIONS(2304), - [anon_sym_u128] = ACTIONS(2304), - [anon_sym_i128] = ACTIONS(2304), - [anon_sym_isize] = ACTIONS(2304), - [anon_sym_usize] = ACTIONS(2304), - [anon_sym_f32] = ACTIONS(2304), - [anon_sym_f64] = ACTIONS(2304), - [anon_sym_bool] = ACTIONS(2304), - [anon_sym_str] = ACTIONS(2304), - [anon_sym_char] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [anon_sym_fn] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_impl] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_mod] = ACTIONS(2304), - [anon_sym_pub] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_struct] = ACTIONS(2304), - [anon_sym_trait] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_union] = ACTIONS(2304), - [anon_sym_unsafe] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_move] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [sym_integer_literal] = ACTIONS(2302), - [aux_sym_string_literal_token1] = ACTIONS(2302), - [sym_char_literal] = ACTIONS(2302), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_crate] = ACTIONS(2304), - [sym_metavariable] = ACTIONS(2302), - [sym__raw_string_literal_start] = ACTIONS(2302), - [sym_float_literal] = ACTIONS(2302), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_macro_rules_BANG] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_u8] = ACTIONS(2321), + [anon_sym_i8] = ACTIONS(2321), + [anon_sym_u16] = ACTIONS(2321), + [anon_sym_i16] = ACTIONS(2321), + [anon_sym_u32] = ACTIONS(2321), + [anon_sym_i32] = ACTIONS(2321), + [anon_sym_u64] = ACTIONS(2321), + [anon_sym_i64] = ACTIONS(2321), + [anon_sym_u128] = ACTIONS(2321), + [anon_sym_i128] = ACTIONS(2321), + [anon_sym_isize] = ACTIONS(2321), + [anon_sym_usize] = ACTIONS(2321), + [anon_sym_f32] = ACTIONS(2321), + [anon_sym_f64] = ACTIONS(2321), + [anon_sym_bool] = ACTIONS(2321), + [anon_sym_str] = ACTIONS(2321), + [anon_sym_char] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_gen] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_impl] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_mod] = ACTIONS(2321), + [anon_sym_pub] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_move] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [sym_integer_literal] = ACTIONS(2319), + [aux_sym_string_literal_token1] = ACTIONS(2319), + [sym_char_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_crate] = ACTIONS(2321), + [sym_metavariable] = ACTIONS(2319), + [sym__raw_string_literal_start] = ACTIONS(2319), + [sym_float_literal] = ACTIONS(2319), }, [640] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_macro_rules_BANG] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2306), - [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), - [anon_sym_DASH] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2306), - [anon_sym_DOT_DOT] = ACTIONS(2306), - [anon_sym_COLON_COLON] = ACTIONS(2306), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_async] = 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_while] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_move] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [sym_integer_literal] = ACTIONS(2306), - [aux_sym_string_literal_token1] = ACTIONS(2306), - [sym_char_literal] = ACTIONS(2306), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_crate] = ACTIONS(2308), - [sym_metavariable] = ACTIONS(2306), - [sym__raw_string_literal_start] = ACTIONS(2306), - [sym_float_literal] = ACTIONS(2306), + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_macro_rules_BANG] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_u8] = ACTIONS(2325), + [anon_sym_i8] = ACTIONS(2325), + [anon_sym_u16] = ACTIONS(2325), + [anon_sym_i16] = ACTIONS(2325), + [anon_sym_u32] = ACTIONS(2325), + [anon_sym_i32] = ACTIONS(2325), + [anon_sym_u64] = ACTIONS(2325), + [anon_sym_i64] = ACTIONS(2325), + [anon_sym_u128] = ACTIONS(2325), + [anon_sym_i128] = ACTIONS(2325), + [anon_sym_isize] = ACTIONS(2325), + [anon_sym_usize] = ACTIONS(2325), + [anon_sym_f32] = ACTIONS(2325), + [anon_sym_f64] = ACTIONS(2325), + [anon_sym_bool] = ACTIONS(2325), + [anon_sym_str] = ACTIONS(2325), + [anon_sym_char] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2323), + [anon_sym_LT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_fn] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_gen] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_impl] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_loop] = ACTIONS(2325), + [anon_sym_match] = ACTIONS(2325), + [anon_sym_mod] = ACTIONS(2325), + [anon_sym_pub] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_unsafe] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_move] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [sym_integer_literal] = ACTIONS(2323), + [aux_sym_string_literal_token1] = ACTIONS(2323), + [sym_char_literal] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2325), + [sym_super] = ACTIONS(2325), + [sym_crate] = ACTIONS(2325), + [sym_metavariable] = ACTIONS(2323), + [sym__raw_string_literal_start] = ACTIONS(2323), + [sym_float_literal] = ACTIONS(2323), }, [641] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2310), - [sym_identifier] = ACTIONS(2312), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_macro_rules_BANG] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [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), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_DOT_DOT] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2312), - [anon_sym_async] = 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_while] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2312), - [anon_sym_move] = ACTIONS(2312), - [anon_sym_try] = ACTIONS(2312), - [sym_integer_literal] = ACTIONS(2310), - [aux_sym_string_literal_token1] = ACTIONS(2310), - [sym_char_literal] = ACTIONS(2310), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2312), - [sym_super] = ACTIONS(2312), - [sym_crate] = ACTIONS(2312), - [sym_metavariable] = ACTIONS(2310), - [sym__raw_string_literal_start] = ACTIONS(2310), - [sym_float_literal] = ACTIONS(2310), + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_macro_rules_BANG] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_u8] = ACTIONS(2329), + [anon_sym_i8] = ACTIONS(2329), + [anon_sym_u16] = ACTIONS(2329), + [anon_sym_i16] = ACTIONS(2329), + [anon_sym_u32] = ACTIONS(2329), + [anon_sym_i32] = ACTIONS(2329), + [anon_sym_u64] = ACTIONS(2329), + [anon_sym_i64] = ACTIONS(2329), + [anon_sym_u128] = ACTIONS(2329), + [anon_sym_i128] = ACTIONS(2329), + [anon_sym_isize] = ACTIONS(2329), + [anon_sym_usize] = ACTIONS(2329), + [anon_sym_f32] = ACTIONS(2329), + [anon_sym_f64] = ACTIONS(2329), + [anon_sym_bool] = ACTIONS(2329), + [anon_sym_str] = ACTIONS(2329), + [anon_sym_char] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_DOT_DOT] = ACTIONS(2327), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_gen] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_impl] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_loop] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2329), + [anon_sym_mod] = ACTIONS(2329), + [anon_sym_pub] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_unsafe] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_move] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [sym_integer_literal] = ACTIONS(2327), + [aux_sym_string_literal_token1] = ACTIONS(2327), + [sym_char_literal] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_crate] = ACTIONS(2329), + [sym_metavariable] = ACTIONS(2327), + [sym__raw_string_literal_start] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), }, [642] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2314), - [sym_identifier] = ACTIONS(2316), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_macro_rules_BANG] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [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), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_DOT_DOT] = ACTIONS(2314), - [anon_sym_COLON_COLON] = ACTIONS(2314), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2316), - [anon_sym_async] = 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_while] = ACTIONS(2316), - [anon_sym_extern] = ACTIONS(2316), - [anon_sym_yield] = ACTIONS(2316), - [anon_sym_move] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2314), - [aux_sym_string_literal_token1] = ACTIONS(2314), - [sym_char_literal] = ACTIONS(2314), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2316), - [sym_super] = ACTIONS(2316), - [sym_crate] = ACTIONS(2316), - [sym_metavariable] = ACTIONS(2314), - [sym__raw_string_literal_start] = ACTIONS(2314), - [sym_float_literal] = ACTIONS(2314), + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_macro_rules_BANG] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_u8] = ACTIONS(2333), + [anon_sym_i8] = ACTIONS(2333), + [anon_sym_u16] = ACTIONS(2333), + [anon_sym_i16] = ACTIONS(2333), + [anon_sym_u32] = ACTIONS(2333), + [anon_sym_i32] = ACTIONS(2333), + [anon_sym_u64] = ACTIONS(2333), + [anon_sym_i64] = ACTIONS(2333), + [anon_sym_u128] = ACTIONS(2333), + [anon_sym_i128] = ACTIONS(2333), + [anon_sym_isize] = ACTIONS(2333), + [anon_sym_usize] = ACTIONS(2333), + [anon_sym_f32] = ACTIONS(2333), + [anon_sym_f64] = ACTIONS(2333), + [anon_sym_bool] = ACTIONS(2333), + [anon_sym_str] = ACTIONS(2333), + [anon_sym_char] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_DOT_DOT] = ACTIONS(2331), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_fn] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_gen] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_mod] = ACTIONS(2333), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_unsafe] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_move] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [sym_integer_literal] = ACTIONS(2331), + [aux_sym_string_literal_token1] = ACTIONS(2331), + [sym_char_literal] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_crate] = ACTIONS(2333), + [sym_metavariable] = ACTIONS(2331), + [sym__raw_string_literal_start] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), }, [643] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_macro_rules_BANG] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2318), - [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), - [anon_sym_DASH] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2318), - [anon_sym_DOT_DOT] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_async] = 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_while] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_yield] = ACTIONS(2320), - [anon_sym_move] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [sym_integer_literal] = ACTIONS(2318), - [aux_sym_string_literal_token1] = ACTIONS(2318), - [sym_char_literal] = ACTIONS(2318), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2320), - [sym_super] = ACTIONS(2320), - [sym_crate] = ACTIONS(2320), - [sym_metavariable] = ACTIONS(2318), - [sym__raw_string_literal_start] = ACTIONS(2318), - [sym_float_literal] = ACTIONS(2318), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_macro_rules_BANG] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_u8] = ACTIONS(2337), + [anon_sym_i8] = ACTIONS(2337), + [anon_sym_u16] = ACTIONS(2337), + [anon_sym_i16] = ACTIONS(2337), + [anon_sym_u32] = ACTIONS(2337), + [anon_sym_i32] = ACTIONS(2337), + [anon_sym_u64] = ACTIONS(2337), + [anon_sym_i64] = ACTIONS(2337), + [anon_sym_u128] = ACTIONS(2337), + [anon_sym_i128] = ACTIONS(2337), + [anon_sym_isize] = ACTIONS(2337), + [anon_sym_usize] = ACTIONS(2337), + [anon_sym_f32] = ACTIONS(2337), + [anon_sym_f64] = ACTIONS(2337), + [anon_sym_bool] = ACTIONS(2337), + [anon_sym_str] = ACTIONS(2337), + [anon_sym_char] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_gen] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_impl] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2337), + [anon_sym_pub] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_move] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [sym_integer_literal] = ACTIONS(2335), + [aux_sym_string_literal_token1] = ACTIONS(2335), + [sym_char_literal] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2337), + [sym_super] = ACTIONS(2337), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(2335), + [sym__raw_string_literal_start] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), }, [644] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_macro_rules_BANG] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2322), - [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), - [anon_sym_DASH] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2322), - [anon_sym_COLON_COLON] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2324), - [anon_sym_async] = 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_while] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_yield] = ACTIONS(2324), - [anon_sym_move] = ACTIONS(2324), - [anon_sym_try] = ACTIONS(2324), - [sym_integer_literal] = ACTIONS(2322), - [aux_sym_string_literal_token1] = ACTIONS(2322), - [sym_char_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2324), - [sym_super] = ACTIONS(2324), - [sym_crate] = ACTIONS(2324), - [sym_metavariable] = ACTIONS(2322), - [sym__raw_string_literal_start] = ACTIONS(2322), - [sym_float_literal] = ACTIONS(2322), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_macro_rules_BANG] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2339), + [anon_sym_LT] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2339), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_POUND] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_gen] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_move] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2339), + [aux_sym_string_literal_token1] = ACTIONS(2339), + [sym_char_literal] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(2339), + [sym__raw_string_literal_start] = ACTIONS(2339), + [sym_float_literal] = ACTIONS(2339), }, [645] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(2326), - [sym_identifier] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_macro_rules_BANG] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [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), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2326), - [anon_sym_DOT_DOT] = ACTIONS(2326), - [anon_sym_COLON_COLON] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_async] = 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_while] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_move] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [sym_integer_literal] = ACTIONS(2326), - [aux_sym_string_literal_token1] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_crate] = ACTIONS(2328), - [sym_metavariable] = ACTIONS(2326), - [sym__raw_string_literal_start] = ACTIONS(2326), - [sym_float_literal] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_macro_rules_BANG] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_u8] = ACTIONS(2345), + [anon_sym_i8] = ACTIONS(2345), + [anon_sym_u16] = ACTIONS(2345), + [anon_sym_i16] = ACTIONS(2345), + [anon_sym_u32] = ACTIONS(2345), + [anon_sym_i32] = ACTIONS(2345), + [anon_sym_u64] = ACTIONS(2345), + [anon_sym_i64] = ACTIONS(2345), + [anon_sym_u128] = ACTIONS(2345), + [anon_sym_i128] = ACTIONS(2345), + [anon_sym_isize] = ACTIONS(2345), + [anon_sym_usize] = ACTIONS(2345), + [anon_sym_f32] = ACTIONS(2345), + [anon_sym_f64] = ACTIONS(2345), + [anon_sym_bool] = ACTIONS(2345), + [anon_sym_str] = ACTIONS(2345), + [anon_sym_char] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2343), + [anon_sym_PIPE] = ACTIONS(2343), + [anon_sym_LT] = ACTIONS(2343), + [anon_sym_DOT_DOT] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_POUND] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_gen] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_impl] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_mod] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_move] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_metavariable] = ACTIONS(2343), + [sym__raw_string_literal_start] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), }, [646] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_macro_rules_BANG] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_u8] = ACTIONS(2349), + [anon_sym_i8] = ACTIONS(2349), + [anon_sym_u16] = ACTIONS(2349), + [anon_sym_i16] = ACTIONS(2349), + [anon_sym_u32] = ACTIONS(2349), + [anon_sym_i32] = ACTIONS(2349), + [anon_sym_u64] = ACTIONS(2349), + [anon_sym_i64] = ACTIONS(2349), + [anon_sym_u128] = ACTIONS(2349), + [anon_sym_i128] = ACTIONS(2349), + [anon_sym_isize] = ACTIONS(2349), + [anon_sym_usize] = ACTIONS(2349), + [anon_sym_f32] = ACTIONS(2349), + [anon_sym_f64] = ACTIONS(2349), + [anon_sym_bool] = ACTIONS(2349), + [anon_sym_str] = ACTIONS(2349), + [anon_sym_char] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2347), + [anon_sym_PIPE] = ACTIONS(2347), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_POUND] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_fn] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_gen] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_impl] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_loop] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_mod] = ACTIONS(2349), + [anon_sym_pub] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_move] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [sym_integer_literal] = ACTIONS(2347), + [aux_sym_string_literal_token1] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2349), + [sym_super] = ACTIONS(2349), + [sym_crate] = ACTIONS(2349), + [sym_metavariable] = ACTIONS(2347), + [sym__raw_string_literal_start] = ACTIONS(2347), + [sym_float_literal] = ACTIONS(2347), }, [647] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_macro_rules_BANG] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2380), - [anon_sym_u8] = ACTIONS(2382), - [anon_sym_i8] = ACTIONS(2382), - [anon_sym_u16] = ACTIONS(2382), - [anon_sym_i16] = ACTIONS(2382), - [anon_sym_u32] = ACTIONS(2382), - [anon_sym_i32] = ACTIONS(2382), - [anon_sym_u64] = ACTIONS(2382), - [anon_sym_i64] = ACTIONS(2382), - [anon_sym_u128] = ACTIONS(2382), - [anon_sym_i128] = ACTIONS(2382), - [anon_sym_isize] = ACTIONS(2382), - [anon_sym_usize] = ACTIONS(2382), - [anon_sym_f32] = ACTIONS(2382), - [anon_sym_f64] = ACTIONS(2382), - [anon_sym_bool] = ACTIONS(2382), - [anon_sym_str] = ACTIONS(2382), - [anon_sym_char] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_DOT_DOT] = ACTIONS(2380), - [anon_sym_COLON_COLON] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [anon_sym_fn] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_impl] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_loop] = ACTIONS(2382), - [anon_sym_match] = ACTIONS(2382), - [anon_sym_mod] = ACTIONS(2382), - [anon_sym_pub] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(2382), - [anon_sym_trait] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_union] = ACTIONS(2382), - [anon_sym_unsafe] = ACTIONS(2382), - [anon_sym_use] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_move] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [sym_integer_literal] = ACTIONS(2380), - [aux_sym_string_literal_token1] = ACTIONS(2380), - [sym_char_literal] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2382), - [anon_sym_false] = ACTIONS(2382), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_crate] = ACTIONS(2382), - [sym_metavariable] = ACTIONS(2380), - [sym__raw_string_literal_start] = ACTIONS(2380), - [sym_float_literal] = ACTIONS(2380), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_macro_rules_BANG] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [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), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_DOT_DOT] = ACTIONS(2351), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_move] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2351), + [aux_sym_string_literal_token1] = ACTIONS(2351), + [sym_char_literal] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_metavariable] = ACTIONS(2351), + [sym__raw_string_literal_start] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), }, [648] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2384), - [sym_identifier] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_macro_rules_BANG] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_u8] = ACTIONS(2386), - [anon_sym_i8] = ACTIONS(2386), - [anon_sym_u16] = ACTIONS(2386), - [anon_sym_i16] = ACTIONS(2386), - [anon_sym_u32] = ACTIONS(2386), - [anon_sym_i32] = ACTIONS(2386), - [anon_sym_u64] = ACTIONS(2386), - [anon_sym_i64] = ACTIONS(2386), - [anon_sym_u128] = ACTIONS(2386), - [anon_sym_i128] = ACTIONS(2386), - [anon_sym_isize] = ACTIONS(2386), - [anon_sym_usize] = ACTIONS(2386), - [anon_sym_f32] = ACTIONS(2386), - [anon_sym_f64] = ACTIONS(2386), - [anon_sym_bool] = ACTIONS(2386), - [anon_sym_str] = ACTIONS(2386), - [anon_sym_char] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_DOT_DOT] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_async] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_default] = ACTIONS(2386), - [anon_sym_enum] = ACTIONS(2386), - [anon_sym_fn] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_impl] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), - [anon_sym_mod] = ACTIONS(2386), - [anon_sym_pub] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_static] = ACTIONS(2386), - [anon_sym_struct] = ACTIONS(2386), - [anon_sym_trait] = ACTIONS(2386), - [anon_sym_type] = ACTIONS(2386), - [anon_sym_union] = ACTIONS(2386), - [anon_sym_unsafe] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_yield] = ACTIONS(2386), - [anon_sym_move] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [sym_integer_literal] = ACTIONS(2384), - [aux_sym_string_literal_token1] = ACTIONS(2384), - [sym_char_literal] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2386), - [anon_sym_false] = ACTIONS(2386), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2386), - [sym_super] = ACTIONS(2386), - [sym_crate] = ACTIONS(2386), - [sym_metavariable] = ACTIONS(2384), - [sym__raw_string_literal_start] = ACTIONS(2384), - [sym_float_literal] = ACTIONS(2384), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_macro_rules_BANG] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [649] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_macro_rules_BANG] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_u8] = ACTIONS(2390), - [anon_sym_i8] = ACTIONS(2390), - [anon_sym_u16] = ACTIONS(2390), - [anon_sym_i16] = ACTIONS(2390), - [anon_sym_u32] = ACTIONS(2390), - [anon_sym_i32] = ACTIONS(2390), - [anon_sym_u64] = ACTIONS(2390), - [anon_sym_i64] = ACTIONS(2390), - [anon_sym_u128] = ACTIONS(2390), - [anon_sym_i128] = ACTIONS(2390), - [anon_sym_isize] = ACTIONS(2390), - [anon_sym_usize] = ACTIONS(2390), - [anon_sym_f32] = ACTIONS(2390), - [anon_sym_f64] = ACTIONS(2390), - [anon_sym_bool] = ACTIONS(2390), - [anon_sym_str] = ACTIONS(2390), - [anon_sym_char] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_DOT_DOT] = ACTIONS(2388), - [anon_sym_COLON_COLON] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), - [anon_sym_fn] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_impl] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_mod] = ACTIONS(2390), - [anon_sym_pub] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2390), - [anon_sym_trait] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_union] = ACTIONS(2390), - [anon_sym_unsafe] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_move] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [sym_integer_literal] = ACTIONS(2388), - [aux_sym_string_literal_token1] = ACTIONS(2388), - [sym_char_literal] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_crate] = ACTIONS(2390), - [sym_metavariable] = ACTIONS(2388), - [sym__raw_string_literal_start] = ACTIONS(2388), - [sym_float_literal] = ACTIONS(2388), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_macro_rules_BANG] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u128] = ACTIONS(1251), + [anon_sym_i128] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_str] = ACTIONS(1251), + [anon_sym_char] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_fn] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_gen] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_impl] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_mod] = ACTIONS(1251), + [anon_sym_pub] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_trait] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_unsafe] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [sym_integer_literal] = ACTIONS(1249), + [aux_sym_string_literal_token1] = ACTIONS(1249), + [sym_char_literal] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1251), + [sym_super] = ACTIONS(1251), + [sym_crate] = ACTIONS(1251), + [sym_metavariable] = ACTIONS(1249), + [sym__raw_string_literal_start] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1249), }, [650] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2392), - [sym_identifier] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_macro_rules_BANG] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_u8] = ACTIONS(2394), - [anon_sym_i8] = ACTIONS(2394), - [anon_sym_u16] = ACTIONS(2394), - [anon_sym_i16] = ACTIONS(2394), - [anon_sym_u32] = ACTIONS(2394), - [anon_sym_i32] = ACTIONS(2394), - [anon_sym_u64] = ACTIONS(2394), - [anon_sym_i64] = ACTIONS(2394), - [anon_sym_u128] = ACTIONS(2394), - [anon_sym_i128] = ACTIONS(2394), - [anon_sym_isize] = ACTIONS(2394), - [anon_sym_usize] = ACTIONS(2394), - [anon_sym_f32] = ACTIONS(2394), - [anon_sym_f64] = ACTIONS(2394), - [anon_sym_bool] = ACTIONS(2394), - [anon_sym_str] = ACTIONS(2394), - [anon_sym_char] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_impl] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_mod] = ACTIONS(2394), - [anon_sym_pub] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_trait] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_unsafe] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_move] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [sym_integer_literal] = ACTIONS(2392), - [aux_sym_string_literal_token1] = ACTIONS(2392), - [sym_char_literal] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_crate] = ACTIONS(2394), - [sym_metavariable] = ACTIONS(2392), - [sym__raw_string_literal_start] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_macro_rules_BANG] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_u8] = ACTIONS(1247), + [anon_sym_i8] = ACTIONS(1247), + [anon_sym_u16] = ACTIONS(1247), + [anon_sym_i16] = ACTIONS(1247), + [anon_sym_u32] = ACTIONS(1247), + [anon_sym_i32] = ACTIONS(1247), + [anon_sym_u64] = ACTIONS(1247), + [anon_sym_i64] = ACTIONS(1247), + [anon_sym_u128] = ACTIONS(1247), + [anon_sym_i128] = ACTIONS(1247), + [anon_sym_isize] = ACTIONS(1247), + [anon_sym_usize] = ACTIONS(1247), + [anon_sym_f32] = ACTIONS(1247), + [anon_sym_f64] = ACTIONS(1247), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_str] = ACTIONS(1247), + [anon_sym_char] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_fn] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_gen] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_impl] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1247), + [anon_sym_loop] = ACTIONS(1247), + [anon_sym_match] = ACTIONS(1247), + [anon_sym_mod] = ACTIONS(1247), + [anon_sym_pub] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_trait] = ACTIONS(1247), + [anon_sym_type] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_unsafe] = ACTIONS(1247), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_move] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1247), + [sym_integer_literal] = ACTIONS(1245), + [aux_sym_string_literal_token1] = ACTIONS(1245), + [sym_char_literal] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1247), + [sym_super] = ACTIONS(1247), + [sym_crate] = ACTIONS(1247), + [sym_metavariable] = ACTIONS(1245), + [sym__raw_string_literal_start] = ACTIONS(1245), + [sym_float_literal] = ACTIONS(1245), }, [651] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_macro_rules_BANG] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_u8] = ACTIONS(2398), - [anon_sym_i8] = ACTIONS(2398), - [anon_sym_u16] = ACTIONS(2398), - [anon_sym_i16] = ACTIONS(2398), - [anon_sym_u32] = ACTIONS(2398), - [anon_sym_i32] = ACTIONS(2398), - [anon_sym_u64] = ACTIONS(2398), - [anon_sym_i64] = ACTIONS(2398), - [anon_sym_u128] = ACTIONS(2398), - [anon_sym_i128] = ACTIONS(2398), - [anon_sym_isize] = ACTIONS(2398), - [anon_sym_usize] = ACTIONS(2398), - [anon_sym_f32] = ACTIONS(2398), - [anon_sym_f64] = ACTIONS(2398), - [anon_sym_bool] = ACTIONS(2398), - [anon_sym_str] = ACTIONS(2398), - [anon_sym_char] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_DOT_DOT] = ACTIONS(2396), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2396), - [anon_sym_SQUOTE] = ACTIONS(2398), - [anon_sym_async] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_mod] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_static] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_trait] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_yield] = ACTIONS(2398), - [anon_sym_move] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [sym_integer_literal] = ACTIONS(2396), - [aux_sym_string_literal_token1] = ACTIONS(2396), - [sym_char_literal] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2398), - [sym_super] = ACTIONS(2398), - [sym_crate] = ACTIONS(2398), - [sym_metavariable] = ACTIONS(2396), - [sym__raw_string_literal_start] = ACTIONS(2396), - [sym_float_literal] = ACTIONS(2396), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_macro_rules_BANG] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u128] = ACTIONS(1255), + [anon_sym_i128] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_str] = ACTIONS(1255), + [anon_sym_char] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_async] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_gen] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_impl] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_pub] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_trait] = ACTIONS(1255), + [anon_sym_type] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_unsafe] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_move] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1253), + [aux_sym_string_literal_token1] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1255), + [sym_super] = ACTIONS(1255), + [sym_crate] = ACTIONS(1255), + [sym_metavariable] = ACTIONS(1253), + [sym__raw_string_literal_start] = ACTIONS(1253), + [sym_float_literal] = ACTIONS(1253), }, [652] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_macro_rules_BANG] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [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_DASH] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_gen] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_move] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2355), + [aux_sym_string_literal_token1] = ACTIONS(2355), + [sym_char_literal] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2355), + [sym__raw_string_literal_start] = ACTIONS(2355), + [sym_float_literal] = ACTIONS(2355), }, [653] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_macro_rules_BANG] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [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), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_DOT_DOT] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_async] = 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_while] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_move] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2400), - [aux_sym_string_literal_token1] = ACTIONS(2400), - [sym_char_literal] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), + [ts_builtin_sym_end] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_macro_rules_BANG] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(2359), + [anon_sym_DOT_DOT] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_POUND] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_gen] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_move] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_metavariable] = ACTIONS(2359), + [sym__raw_string_literal_start] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), }, [654] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [aux_sym_declaration_list_repeat1] = STATE(646), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_macro_rules_BANG] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_u8] = ACTIONS(2365), + [anon_sym_i8] = ACTIONS(2365), + [anon_sym_u16] = ACTIONS(2365), + [anon_sym_i16] = ACTIONS(2365), + [anon_sym_u32] = ACTIONS(2365), + [anon_sym_i32] = ACTIONS(2365), + [anon_sym_u64] = ACTIONS(2365), + [anon_sym_i64] = ACTIONS(2365), + [anon_sym_u128] = ACTIONS(2365), + [anon_sym_i128] = ACTIONS(2365), + [anon_sym_isize] = ACTIONS(2365), + [anon_sym_usize] = ACTIONS(2365), + [anon_sym_f32] = ACTIONS(2365), + [anon_sym_f64] = ACTIONS(2365), + [anon_sym_bool] = ACTIONS(2365), + [anon_sym_str] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2363), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_gen] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_impl] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_loop] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_mod] = ACTIONS(2365), + [anon_sym_pub] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_unsafe] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_move] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_crate] = ACTIONS(2365), + [sym_metavariable] = ACTIONS(2363), + [sym__raw_string_literal_start] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), }, [655] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2406), - [sym_identifier] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_macro_rules_BANG] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_u8] = ACTIONS(2408), - [anon_sym_i8] = ACTIONS(2408), - [anon_sym_u16] = ACTIONS(2408), - [anon_sym_i16] = ACTIONS(2408), - [anon_sym_u32] = ACTIONS(2408), - [anon_sym_i32] = ACTIONS(2408), - [anon_sym_u64] = ACTIONS(2408), - [anon_sym_i64] = ACTIONS(2408), - [anon_sym_u128] = ACTIONS(2408), - [anon_sym_i128] = ACTIONS(2408), - [anon_sym_isize] = ACTIONS(2408), - [anon_sym_usize] = ACTIONS(2408), - [anon_sym_f32] = ACTIONS(2408), - [anon_sym_f64] = ACTIONS(2408), - [anon_sym_bool] = ACTIONS(2408), - [anon_sym_str] = ACTIONS(2408), - [anon_sym_char] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_DOT_DOT] = ACTIONS(2406), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2408), - [anon_sym_async] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_fn] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_impl] = ACTIONS(2408), - [anon_sym_let] = ACTIONS(2408), - [anon_sym_loop] = ACTIONS(2408), - [anon_sym_match] = ACTIONS(2408), - [anon_sym_mod] = ACTIONS(2408), - [anon_sym_pub] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_trait] = ACTIONS(2408), - [anon_sym_type] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_unsafe] = ACTIONS(2408), - [anon_sym_use] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_yield] = ACTIONS(2408), - [anon_sym_move] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2408), - [sym_integer_literal] = ACTIONS(2406), - [aux_sym_string_literal_token1] = ACTIONS(2406), - [sym_char_literal] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2408), - [sym_super] = ACTIONS(2408), - [sym_crate] = ACTIONS(2408), - [sym_metavariable] = ACTIONS(2406), - [sym__raw_string_literal_start] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_macro_rules_BANG] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2367), + [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), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_DOT_DOT] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_move] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2367), + [aux_sym_string_literal_token1] = ACTIONS(2367), + [sym_char_literal] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2367), + [sym__raw_string_literal_start] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), }, [656] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(2410), - [sym_identifier] = ACTIONS(2412), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_macro_rules_BANG] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2412), - [anon_sym_i8] = ACTIONS(2412), - [anon_sym_u16] = ACTIONS(2412), - [anon_sym_i16] = ACTIONS(2412), - [anon_sym_u32] = ACTIONS(2412), - [anon_sym_i32] = ACTIONS(2412), - [anon_sym_u64] = ACTIONS(2412), - [anon_sym_i64] = ACTIONS(2412), - [anon_sym_u128] = ACTIONS(2412), - [anon_sym_i128] = ACTIONS(2412), - [anon_sym_isize] = ACTIONS(2412), - [anon_sym_usize] = ACTIONS(2412), - [anon_sym_f32] = ACTIONS(2412), - [anon_sym_f64] = ACTIONS(2412), - [anon_sym_bool] = ACTIONS(2412), - [anon_sym_str] = ACTIONS(2412), - [anon_sym_char] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COLON_COLON] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_enum] = ACTIONS(2412), - [anon_sym_fn] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_impl] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_mod] = ACTIONS(2412), - [anon_sym_pub] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_struct] = ACTIONS(2412), - [anon_sym_trait] = ACTIONS(2412), - [anon_sym_type] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_use] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_move] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [aux_sym_string_literal_token1] = ACTIONS(2410), - [sym_char_literal] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2410), - [sym__raw_string_literal_start] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(2410), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_macro_rules_BANG] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [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), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_move] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2371), + [sym__raw_string_literal_start] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), }, [657] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_macro_rules_BANG] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2414), - [anon_sym_u8] = ACTIONS(2416), - [anon_sym_i8] = ACTIONS(2416), - [anon_sym_u16] = ACTIONS(2416), - [anon_sym_i16] = ACTIONS(2416), - [anon_sym_u32] = ACTIONS(2416), - [anon_sym_i32] = ACTIONS(2416), - [anon_sym_u64] = ACTIONS(2416), - [anon_sym_i64] = ACTIONS(2416), - [anon_sym_u128] = ACTIONS(2416), - [anon_sym_i128] = ACTIONS(2416), - [anon_sym_isize] = ACTIONS(2416), - [anon_sym_usize] = ACTIONS(2416), - [anon_sym_f32] = ACTIONS(2416), - [anon_sym_f64] = ACTIONS(2416), - [anon_sym_bool] = ACTIONS(2416), - [anon_sym_str] = ACTIONS(2416), - [anon_sym_char] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2414), - [anon_sym_LT] = ACTIONS(2414), - [anon_sym_DOT_DOT] = ACTIONS(2414), - [anon_sym_COLON_COLON] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [anon_sym_fn] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_impl] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_mod] = ACTIONS(2416), - [anon_sym_pub] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_struct] = ACTIONS(2416), - [anon_sym_trait] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_union] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_move] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [sym_integer_literal] = ACTIONS(2414), - [aux_sym_string_literal_token1] = ACTIONS(2414), - [sym_char_literal] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_crate] = ACTIONS(2416), - [sym_metavariable] = ACTIONS(2414), - [sym__raw_string_literal_start] = ACTIONS(2414), - [sym_float_literal] = ACTIONS(2414), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_macro_rules_BANG] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2375), + [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), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_DOT_DOT] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_move] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2375), + [sym__raw_string_literal_start] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), }, [658] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2418), - [sym_identifier] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_macro_rules_BANG] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_u8] = ACTIONS(2420), - [anon_sym_i8] = ACTIONS(2420), - [anon_sym_u16] = ACTIONS(2420), - [anon_sym_i16] = ACTIONS(2420), - [anon_sym_u32] = ACTIONS(2420), - [anon_sym_i32] = ACTIONS(2420), - [anon_sym_u64] = ACTIONS(2420), - [anon_sym_i64] = ACTIONS(2420), - [anon_sym_u128] = ACTIONS(2420), - [anon_sym_i128] = ACTIONS(2420), - [anon_sym_isize] = ACTIONS(2420), - [anon_sym_usize] = ACTIONS(2420), - [anon_sym_f32] = ACTIONS(2420), - [anon_sym_f64] = ACTIONS(2420), - [anon_sym_bool] = ACTIONS(2420), - [anon_sym_str] = ACTIONS(2420), - [anon_sym_char] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_DOT_DOT] = ACTIONS(2418), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2420), - [anon_sym_async] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_default] = ACTIONS(2420), - [anon_sym_enum] = ACTIONS(2420), - [anon_sym_fn] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_impl] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_mod] = ACTIONS(2420), - [anon_sym_pub] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_struct] = ACTIONS(2420), - [anon_sym_trait] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_union] = ACTIONS(2420), - [anon_sym_unsafe] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_yield] = ACTIONS(2420), - [anon_sym_move] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2420), - [sym_integer_literal] = ACTIONS(2418), - [aux_sym_string_literal_token1] = ACTIONS(2418), - [sym_char_literal] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2420), - [sym_super] = ACTIONS(2420), - [sym_crate] = ACTIONS(2420), - [sym_metavariable] = ACTIONS(2418), - [sym__raw_string_literal_start] = ACTIONS(2418), - [sym_float_literal] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_macro_rules_BANG] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_DOT_DOT] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_move] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_crate] = ACTIONS(2381), + [sym_metavariable] = ACTIONS(2379), + [sym__raw_string_literal_start] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), }, [659] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_macro_rules_BANG] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_u8] = ACTIONS(2424), - [anon_sym_i8] = ACTIONS(2424), - [anon_sym_u16] = ACTIONS(2424), - [anon_sym_i16] = ACTIONS(2424), - [anon_sym_u32] = ACTIONS(2424), - [anon_sym_i32] = ACTIONS(2424), - [anon_sym_u64] = ACTIONS(2424), - [anon_sym_i64] = ACTIONS(2424), - [anon_sym_u128] = ACTIONS(2424), - [anon_sym_i128] = ACTIONS(2424), - [anon_sym_isize] = ACTIONS(2424), - [anon_sym_usize] = ACTIONS(2424), - [anon_sym_f32] = ACTIONS(2424), - [anon_sym_f64] = ACTIONS(2424), - [anon_sym_bool] = ACTIONS(2424), - [anon_sym_str] = ACTIONS(2424), - [anon_sym_char] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_DOT_DOT] = ACTIONS(2422), - [anon_sym_COLON_COLON] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_default] = ACTIONS(2424), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_fn] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_impl] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_mod] = ACTIONS(2424), - [anon_sym_pub] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_struct] = ACTIONS(2424), - [anon_sym_trait] = ACTIONS(2424), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_union] = ACTIONS(2424), - [anon_sym_unsafe] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_yield] = ACTIONS(2424), - [anon_sym_move] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2424), - [sym_integer_literal] = ACTIONS(2422), - [aux_sym_string_literal_token1] = ACTIONS(2422), - [sym_char_literal] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2424), - [sym_super] = ACTIONS(2424), - [sym_crate] = ACTIONS(2424), - [sym_metavariable] = ACTIONS(2422), - [sym__raw_string_literal_start] = ACTIONS(2422), - [sym_float_literal] = ACTIONS(2422), + [ts_builtin_sym_end] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_macro_rules_BANG] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [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), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_move] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2383), + [aux_sym_string_literal_token1] = ACTIONS(2383), + [sym_char_literal] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_metavariable] = ACTIONS(2383), + [sym__raw_string_literal_start] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), }, [660] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2426), - [sym_identifier] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_macro_rules_BANG] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_u8] = ACTIONS(2428), - [anon_sym_i8] = ACTIONS(2428), - [anon_sym_u16] = ACTIONS(2428), - [anon_sym_i16] = ACTIONS(2428), - [anon_sym_u32] = ACTIONS(2428), - [anon_sym_i32] = ACTIONS(2428), - [anon_sym_u64] = ACTIONS(2428), - [anon_sym_i64] = ACTIONS(2428), - [anon_sym_u128] = ACTIONS(2428), - [anon_sym_i128] = ACTIONS(2428), - [anon_sym_isize] = ACTIONS(2428), - [anon_sym_usize] = ACTIONS(2428), - [anon_sym_f32] = ACTIONS(2428), - [anon_sym_f64] = ACTIONS(2428), - [anon_sym_bool] = ACTIONS(2428), - [anon_sym_str] = ACTIONS(2428), - [anon_sym_char] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_COLON_COLON] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2428), - [anon_sym_fn] = ACTIONS(2428), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_impl] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2428), - [anon_sym_loop] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_mod] = ACTIONS(2428), - [anon_sym_pub] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_static] = ACTIONS(2428), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_trait] = ACTIONS(2428), - [anon_sym_type] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(2428), - [anon_sym_use] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_yield] = ACTIONS(2428), - [anon_sym_move] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2428), - [sym_integer_literal] = ACTIONS(2426), - [aux_sym_string_literal_token1] = ACTIONS(2426), - [sym_char_literal] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2428), - [sym_super] = ACTIONS(2428), - [sym_crate] = ACTIONS(2428), - [sym_metavariable] = ACTIONS(2426), - [sym__raw_string_literal_start] = ACTIONS(2426), - [sym_float_literal] = ACTIONS(2426), + [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_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1325), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_POUND] = ACTIONS(1325), + [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_gen] = 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_extern] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_move] = ACTIONS(1327), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1325), + [sym_float_literal] = ACTIONS(1325), }, [661] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_macro_rules_BANG] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_u8] = ACTIONS(2432), - [anon_sym_i8] = ACTIONS(2432), - [anon_sym_u16] = ACTIONS(2432), - [anon_sym_i16] = ACTIONS(2432), - [anon_sym_u32] = ACTIONS(2432), - [anon_sym_i32] = ACTIONS(2432), - [anon_sym_u64] = ACTIONS(2432), - [anon_sym_i64] = ACTIONS(2432), - [anon_sym_u128] = ACTIONS(2432), - [anon_sym_i128] = ACTIONS(2432), - [anon_sym_isize] = ACTIONS(2432), - [anon_sym_usize] = ACTIONS(2432), - [anon_sym_f32] = ACTIONS(2432), - [anon_sym_f64] = ACTIONS(2432), - [anon_sym_bool] = ACTIONS(2432), - [anon_sym_str] = ACTIONS(2432), - [anon_sym_char] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_DOT_DOT] = ACTIONS(2430), - [anon_sym_COLON_COLON] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_SQUOTE] = ACTIONS(2432), - [anon_sym_async] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_fn] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_impl] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_loop] = ACTIONS(2432), - [anon_sym_match] = ACTIONS(2432), - [anon_sym_mod] = ACTIONS(2432), - [anon_sym_pub] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_struct] = ACTIONS(2432), - [anon_sym_trait] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_union] = ACTIONS(2432), - [anon_sym_unsafe] = ACTIONS(2432), - [anon_sym_use] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_yield] = ACTIONS(2432), - [anon_sym_move] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2432), - [sym_integer_literal] = ACTIONS(2430), - [aux_sym_string_literal_token1] = ACTIONS(2430), - [sym_char_literal] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2432), - [anon_sym_false] = ACTIONS(2432), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2432), - [sym_super] = ACTIONS(2432), - [sym_crate] = ACTIONS(2432), - [sym_metavariable] = ACTIONS(2430), - [sym__raw_string_literal_start] = ACTIONS(2430), - [sym_float_literal] = ACTIONS(2430), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_macro_rules_BANG] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2387), + [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), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_move] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2387), + [sym__raw_string_literal_start] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), }, [662] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2434), - [sym_identifier] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_macro_rules_BANG] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_u8] = ACTIONS(2436), - [anon_sym_i8] = ACTIONS(2436), - [anon_sym_u16] = ACTIONS(2436), - [anon_sym_i16] = ACTIONS(2436), - [anon_sym_u32] = ACTIONS(2436), - [anon_sym_i32] = ACTIONS(2436), - [anon_sym_u64] = ACTIONS(2436), - [anon_sym_i64] = ACTIONS(2436), - [anon_sym_u128] = ACTIONS(2436), - [anon_sym_i128] = ACTIONS(2436), - [anon_sym_isize] = ACTIONS(2436), - [anon_sym_usize] = ACTIONS(2436), - [anon_sym_f32] = ACTIONS(2436), - [anon_sym_f64] = ACTIONS(2436), - [anon_sym_bool] = ACTIONS(2436), - [anon_sym_str] = ACTIONS(2436), - [anon_sym_char] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_DOT_DOT] = ACTIONS(2434), - [anon_sym_COLON_COLON] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2436), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_default] = ACTIONS(2436), - [anon_sym_enum] = ACTIONS(2436), - [anon_sym_fn] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_impl] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_loop] = ACTIONS(2436), - [anon_sym_match] = ACTIONS(2436), - [anon_sym_mod] = ACTIONS(2436), - [anon_sym_pub] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(2436), - [anon_sym_trait] = ACTIONS(2436), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_union] = ACTIONS(2436), - [anon_sym_unsafe] = ACTIONS(2436), - [anon_sym_use] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_yield] = ACTIONS(2436), - [anon_sym_move] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2436), - [sym_integer_literal] = ACTIONS(2434), - [aux_sym_string_literal_token1] = ACTIONS(2434), - [sym_char_literal] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2436), - [anon_sym_false] = ACTIONS(2436), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2436), - [sym_super] = ACTIONS(2436), - [sym_crate] = ACTIONS(2436), - [sym_metavariable] = ACTIONS(2434), - [sym__raw_string_literal_start] = ACTIONS(2434), - [sym_float_literal] = ACTIONS(2434), + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_macro_rules_BANG] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_STAR] = ACTIONS(2391), + [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), + [anon_sym_DASH] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2391), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_DOT_DOT] = ACTIONS(2391), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_POUND] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_move] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2391), + [sym__raw_string_literal_start] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), }, [663] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_macro_rules_BANG] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [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), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_DOT_DOT] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_move] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_metavariable] = ACTIONS(2395), + [sym__raw_string_literal_start] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), }, [664] = { [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(2438), - [sym_identifier] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_macro_rules_BANG] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_u8] = ACTIONS(2440), - [anon_sym_i8] = ACTIONS(2440), - [anon_sym_u16] = ACTIONS(2440), - [anon_sym_i16] = ACTIONS(2440), - [anon_sym_u32] = ACTIONS(2440), - [anon_sym_i32] = ACTIONS(2440), - [anon_sym_u64] = ACTIONS(2440), - [anon_sym_i64] = ACTIONS(2440), - [anon_sym_u128] = ACTIONS(2440), - [anon_sym_i128] = ACTIONS(2440), - [anon_sym_isize] = ACTIONS(2440), - [anon_sym_usize] = ACTIONS(2440), - [anon_sym_f32] = ACTIONS(2440), - [anon_sym_f64] = ACTIONS(2440), - [anon_sym_bool] = ACTIONS(2440), - [anon_sym_str] = ACTIONS(2440), - [anon_sym_char] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_DOT_DOT] = ACTIONS(2438), - [anon_sym_COLON_COLON] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_const] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_default] = ACTIONS(2440), - [anon_sym_enum] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2440), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_impl] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_loop] = ACTIONS(2440), - [anon_sym_match] = ACTIONS(2440), - [anon_sym_mod] = ACTIONS(2440), - [anon_sym_pub] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_struct] = ACTIONS(2440), - [anon_sym_trait] = ACTIONS(2440), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_union] = ACTIONS(2440), - [anon_sym_unsafe] = ACTIONS(2440), - [anon_sym_use] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_extern] = ACTIONS(2440), - [anon_sym_yield] = ACTIONS(2440), - [anon_sym_move] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2440), - [sym_integer_literal] = ACTIONS(2438), - [aux_sym_string_literal_token1] = ACTIONS(2438), - [sym_char_literal] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2440), - [anon_sym_false] = ACTIONS(2440), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2440), - [sym_super] = ACTIONS(2440), - [sym_crate] = ACTIONS(2440), - [sym_metavariable] = ACTIONS(2438), - [sym__raw_string_literal_start] = ACTIONS(2438), - [sym_float_literal] = ACTIONS(2438), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_macro_rules_BANG] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [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), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2399), + [anon_sym_POUND] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_move] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2399), + [sym__raw_string_literal_start] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), }, [665] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_macro_rules_BANG] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_u8] = ACTIONS(2444), - [anon_sym_i8] = ACTIONS(2444), - [anon_sym_u16] = ACTIONS(2444), - [anon_sym_i16] = ACTIONS(2444), - [anon_sym_u32] = ACTIONS(2444), - [anon_sym_i32] = ACTIONS(2444), - [anon_sym_u64] = ACTIONS(2444), - [anon_sym_i64] = ACTIONS(2444), - [anon_sym_u128] = ACTIONS(2444), - [anon_sym_i128] = ACTIONS(2444), - [anon_sym_isize] = ACTIONS(2444), - [anon_sym_usize] = ACTIONS(2444), - [anon_sym_f32] = ACTIONS(2444), - [anon_sym_f64] = ACTIONS(2444), - [anon_sym_bool] = ACTIONS(2444), - [anon_sym_str] = ACTIONS(2444), - [anon_sym_char] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_DOT_DOT] = ACTIONS(2442), - [anon_sym_COLON_COLON] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_const] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_default] = ACTIONS(2444), - [anon_sym_enum] = ACTIONS(2444), - [anon_sym_fn] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_impl] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_loop] = ACTIONS(2444), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_mod] = ACTIONS(2444), - [anon_sym_pub] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_struct] = ACTIONS(2444), - [anon_sym_trait] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_union] = ACTIONS(2444), - [anon_sym_unsafe] = ACTIONS(2444), - [anon_sym_use] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_extern] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [anon_sym_move] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [sym_integer_literal] = ACTIONS(2442), - [aux_sym_string_literal_token1] = ACTIONS(2442), - [sym_char_literal] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2444), - [anon_sym_false] = ACTIONS(2444), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2444), - [sym_super] = ACTIONS(2444), - [sym_crate] = ACTIONS(2444), - [sym_metavariable] = ACTIONS(2442), - [sym__raw_string_literal_start] = ACTIONS(2442), - [sym_float_literal] = ACTIONS(2442), + [ts_builtin_sym_end] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_macro_rules_BANG] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [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), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2403), + [anon_sym_POUND] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_move] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2403), + [sym__raw_string_literal_start] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), }, [666] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2448), - [anon_sym_SEMI] = ACTIONS(2446), - [anon_sym_macro_rules_BANG] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_RBRACE] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_u8] = ACTIONS(2448), - [anon_sym_i8] = ACTIONS(2448), - [anon_sym_u16] = ACTIONS(2448), - [anon_sym_i16] = ACTIONS(2448), - [anon_sym_u32] = ACTIONS(2448), - [anon_sym_i32] = ACTIONS(2448), - [anon_sym_u64] = ACTIONS(2448), - [anon_sym_i64] = ACTIONS(2448), - [anon_sym_u128] = ACTIONS(2448), - [anon_sym_i128] = ACTIONS(2448), - [anon_sym_isize] = ACTIONS(2448), - [anon_sym_usize] = ACTIONS(2448), - [anon_sym_f32] = ACTIONS(2448), - [anon_sym_f64] = ACTIONS(2448), - [anon_sym_bool] = ACTIONS(2448), - [anon_sym_str] = ACTIONS(2448), - [anon_sym_char] = ACTIONS(2448), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_AMP] = ACTIONS(2446), - [anon_sym_PIPE] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_DOT_DOT] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(2446), - [anon_sym_POUND] = ACTIONS(2446), - [anon_sym_SQUOTE] = ACTIONS(2448), - [anon_sym_async] = ACTIONS(2448), - [anon_sym_break] = ACTIONS(2448), - [anon_sym_const] = ACTIONS(2448), - [anon_sym_continue] = ACTIONS(2448), - [anon_sym_default] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2448), - [anon_sym_fn] = ACTIONS(2448), - [anon_sym_for] = ACTIONS(2448), - [anon_sym_if] = ACTIONS(2448), - [anon_sym_impl] = ACTIONS(2448), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_loop] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2448), - [anon_sym_mod] = ACTIONS(2448), - [anon_sym_pub] = ACTIONS(2448), - [anon_sym_return] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2448), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_trait] = ACTIONS(2448), - [anon_sym_type] = ACTIONS(2448), - [anon_sym_union] = ACTIONS(2448), - [anon_sym_unsafe] = ACTIONS(2448), - [anon_sym_use] = ACTIONS(2448), - [anon_sym_while] = ACTIONS(2448), - [anon_sym_extern] = ACTIONS(2448), - [anon_sym_yield] = ACTIONS(2448), - [anon_sym_move] = ACTIONS(2448), - [anon_sym_try] = ACTIONS(2448), - [sym_integer_literal] = ACTIONS(2446), - [aux_sym_string_literal_token1] = ACTIONS(2446), - [sym_char_literal] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(2448), - [anon_sym_false] = ACTIONS(2448), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2448), - [sym_super] = ACTIONS(2448), - [sym_crate] = ACTIONS(2448), - [sym_metavariable] = ACTIONS(2446), - [sym__raw_string_literal_start] = ACTIONS(2446), - [sym_float_literal] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_macro_rules_BANG] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2407), + [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), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_PIPE] = ACTIONS(2407), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_move] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2407), + [sym__raw_string_literal_start] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), }, [667] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_macro_rules_BANG] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_u8] = ACTIONS(2452), - [anon_sym_i8] = ACTIONS(2452), - [anon_sym_u16] = ACTIONS(2452), - [anon_sym_i16] = ACTIONS(2452), - [anon_sym_u32] = ACTIONS(2452), - [anon_sym_i32] = ACTIONS(2452), - [anon_sym_u64] = ACTIONS(2452), - [anon_sym_i64] = ACTIONS(2452), - [anon_sym_u128] = ACTIONS(2452), - [anon_sym_i128] = ACTIONS(2452), - [anon_sym_isize] = ACTIONS(2452), - [anon_sym_usize] = ACTIONS(2452), - [anon_sym_f32] = ACTIONS(2452), - [anon_sym_f64] = ACTIONS(2452), - [anon_sym_bool] = ACTIONS(2452), - [anon_sym_str] = ACTIONS(2452), - [anon_sym_char] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_DOT_DOT] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2450), - [anon_sym_POUND] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), - [anon_sym_fn] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_impl] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_loop] = ACTIONS(2452), - [anon_sym_match] = ACTIONS(2452), - [anon_sym_mod] = ACTIONS(2452), - [anon_sym_pub] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_struct] = ACTIONS(2452), - [anon_sym_trait] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_union] = ACTIONS(2452), - [anon_sym_unsafe] = ACTIONS(2452), - [anon_sym_use] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_move] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [sym_integer_literal] = ACTIONS(2450), - [aux_sym_string_literal_token1] = ACTIONS(2450), - [sym_char_literal] = ACTIONS(2450), - [anon_sym_true] = ACTIONS(2452), - [anon_sym_false] = ACTIONS(2452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2452), - [sym_super] = ACTIONS(2452), - [sym_crate] = ACTIONS(2452), - [sym_metavariable] = ACTIONS(2450), - [sym__raw_string_literal_start] = ACTIONS(2450), - [sym_float_literal] = ACTIONS(2450), + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_macro_rules_BANG] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2411), + [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), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_DOT_DOT] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_move] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2411), + [sym__raw_string_literal_start] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), }, [668] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_macro_rules_BANG] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_u8] = ACTIONS(2456), - [anon_sym_i8] = ACTIONS(2456), - [anon_sym_u16] = ACTIONS(2456), - [anon_sym_i16] = ACTIONS(2456), - [anon_sym_u32] = ACTIONS(2456), - [anon_sym_i32] = ACTIONS(2456), - [anon_sym_u64] = ACTIONS(2456), - [anon_sym_i64] = ACTIONS(2456), - [anon_sym_u128] = ACTIONS(2456), - [anon_sym_i128] = ACTIONS(2456), - [anon_sym_isize] = ACTIONS(2456), - [anon_sym_usize] = ACTIONS(2456), - [anon_sym_f32] = ACTIONS(2456), - [anon_sym_f64] = ACTIONS(2456), - [anon_sym_bool] = ACTIONS(2456), - [anon_sym_str] = ACTIONS(2456), - [anon_sym_char] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_DOT_DOT] = ACTIONS(2454), - [anon_sym_COLON_COLON] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_default] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - [anon_sym_fn] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_impl] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_mod] = ACTIONS(2456), - [anon_sym_pub] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_struct] = ACTIONS(2456), - [anon_sym_trait] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_union] = ACTIONS(2456), - [anon_sym_unsafe] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_move] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [sym_integer_literal] = ACTIONS(2454), - [aux_sym_string_literal_token1] = ACTIONS(2454), - [sym_char_literal] = ACTIONS(2454), - [anon_sym_true] = ACTIONS(2456), - [anon_sym_false] = ACTIONS(2456), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_crate] = ACTIONS(2456), - [sym_metavariable] = ACTIONS(2454), - [sym__raw_string_literal_start] = ACTIONS(2454), - [sym_float_literal] = ACTIONS(2454), + [ts_builtin_sym_end] = ACTIONS(2415), + [sym_identifier] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_macro_rules_BANG] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2415), + [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), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_DOT_DOT] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(2415), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_move] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2415), + [sym__raw_string_literal_start] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), }, [669] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_macro_rules_BANG] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2419), + [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), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_move] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2419), + [sym__raw_string_literal_start] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), }, [670] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_macro_rules_BANG] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [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), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_COLON_COLON] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_move] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2423), + [sym__raw_string_literal_start] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), }, [671] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_macro_rules_BANG] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_gen] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_move] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2427), + [sym__raw_string_literal_start] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), }, [672] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_u8] = ACTIONS(2433), + [anon_sym_i8] = ACTIONS(2433), + [anon_sym_u16] = ACTIONS(2433), + [anon_sym_i16] = ACTIONS(2433), + [anon_sym_u32] = ACTIONS(2433), + [anon_sym_i32] = ACTIONS(2433), + [anon_sym_u64] = ACTIONS(2433), + [anon_sym_i64] = ACTIONS(2433), + [anon_sym_u128] = ACTIONS(2433), + [anon_sym_i128] = ACTIONS(2433), + [anon_sym_isize] = ACTIONS(2433), + [anon_sym_usize] = ACTIONS(2433), + [anon_sym_f32] = ACTIONS(2433), + [anon_sym_f64] = ACTIONS(2433), + [anon_sym_bool] = ACTIONS(2433), + [anon_sym_str] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_DOT_DOT] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_gen] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_impl] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_mod] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_move] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_metavariable] = ACTIONS(2431), + [sym__raw_string_literal_start] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), }, [673] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2458), - [sym_identifier] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_macro_rules_BANG] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2458), - [anon_sym_u8] = ACTIONS(2460), - [anon_sym_i8] = ACTIONS(2460), - [anon_sym_u16] = ACTIONS(2460), - [anon_sym_i16] = ACTIONS(2460), - [anon_sym_u32] = ACTIONS(2460), - [anon_sym_i32] = ACTIONS(2460), - [anon_sym_u64] = ACTIONS(2460), - [anon_sym_i64] = ACTIONS(2460), - [anon_sym_u128] = ACTIONS(2460), - [anon_sym_i128] = ACTIONS(2460), - [anon_sym_isize] = ACTIONS(2460), - [anon_sym_usize] = ACTIONS(2460), - [anon_sym_f32] = ACTIONS(2460), - [anon_sym_f64] = ACTIONS(2460), - [anon_sym_bool] = ACTIONS(2460), - [anon_sym_str] = ACTIONS(2460), - [anon_sym_char] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_DOT_DOT] = ACTIONS(2458), - [anon_sym_COLON_COLON] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), - [anon_sym_fn] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_impl] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_loop] = ACTIONS(2460), - [anon_sym_match] = ACTIONS(2460), - [anon_sym_mod] = ACTIONS(2460), - [anon_sym_pub] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_struct] = ACTIONS(2460), - [anon_sym_trait] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_union] = ACTIONS(2460), - [anon_sym_unsafe] = ACTIONS(2460), - [anon_sym_use] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2460), - [anon_sym_move] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [sym_integer_literal] = ACTIONS(2458), - [aux_sym_string_literal_token1] = ACTIONS(2458), - [sym_char_literal] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2460), - [anon_sym_false] = ACTIONS(2460), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2460), - [sym_super] = ACTIONS(2460), - [sym_crate] = ACTIONS(2460), - [sym_metavariable] = ACTIONS(2458), - [sym__raw_string_literal_start] = ACTIONS(2458), - [sym_float_literal] = ACTIONS(2458), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_macro_rules_BANG] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(2437), + [anon_sym_i8] = ACTIONS(2437), + [anon_sym_u16] = ACTIONS(2437), + [anon_sym_i16] = ACTIONS(2437), + [anon_sym_u32] = ACTIONS(2437), + [anon_sym_i32] = ACTIONS(2437), + [anon_sym_u64] = ACTIONS(2437), + [anon_sym_i64] = ACTIONS(2437), + [anon_sym_u128] = ACTIONS(2437), + [anon_sym_i128] = ACTIONS(2437), + [anon_sym_isize] = ACTIONS(2437), + [anon_sym_usize] = ACTIONS(2437), + [anon_sym_f32] = ACTIONS(2437), + [anon_sym_f64] = ACTIONS(2437), + [anon_sym_bool] = ACTIONS(2437), + [anon_sym_str] = ACTIONS(2437), + [anon_sym_char] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_fn] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_gen] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2435), + [sym__raw_string_literal_start] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), }, [674] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_macro_rules_BANG] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_u8] = ACTIONS(2464), - [anon_sym_i8] = ACTIONS(2464), - [anon_sym_u16] = ACTIONS(2464), - [anon_sym_i16] = ACTIONS(2464), - [anon_sym_u32] = ACTIONS(2464), - [anon_sym_i32] = ACTIONS(2464), - [anon_sym_u64] = ACTIONS(2464), - [anon_sym_i64] = ACTIONS(2464), - [anon_sym_u128] = ACTIONS(2464), - [anon_sym_i128] = ACTIONS(2464), - [anon_sym_isize] = ACTIONS(2464), - [anon_sym_usize] = ACTIONS(2464), - [anon_sym_f32] = ACTIONS(2464), - [anon_sym_f64] = ACTIONS(2464), - [anon_sym_bool] = ACTIONS(2464), - [anon_sym_str] = ACTIONS(2464), - [anon_sym_char] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_DOT_DOT] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(2462), - [anon_sym_SQUOTE] = ACTIONS(2464), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_fn] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_impl] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_mod] = ACTIONS(2464), - [anon_sym_pub] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_struct] = ACTIONS(2464), - [anon_sym_trait] = ACTIONS(2464), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_union] = ACTIONS(2464), - [anon_sym_unsafe] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_yield] = ACTIONS(2464), - [anon_sym_move] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [sym_integer_literal] = ACTIONS(2462), - [aux_sym_string_literal_token1] = ACTIONS(2462), - [sym_char_literal] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2464), - [anon_sym_false] = ACTIONS(2464), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2464), - [sym_super] = ACTIONS(2464), - [sym_crate] = ACTIONS(2464), - [sym_metavariable] = ACTIONS(2462), - [sym__raw_string_literal_start] = ACTIONS(2462), - [sym_float_literal] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_macro_rules_BANG] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_u8] = ACTIONS(2441), + [anon_sym_i8] = ACTIONS(2441), + [anon_sym_u16] = ACTIONS(2441), + [anon_sym_i16] = ACTIONS(2441), + [anon_sym_u32] = ACTIONS(2441), + [anon_sym_i32] = ACTIONS(2441), + [anon_sym_u64] = ACTIONS(2441), + [anon_sym_i64] = ACTIONS(2441), + [anon_sym_u128] = ACTIONS(2441), + [anon_sym_i128] = ACTIONS(2441), + [anon_sym_isize] = ACTIONS(2441), + [anon_sym_usize] = ACTIONS(2441), + [anon_sym_f32] = ACTIONS(2441), + [anon_sym_f64] = ACTIONS(2441), + [anon_sym_bool] = ACTIONS(2441), + [anon_sym_str] = ACTIONS(2441), + [anon_sym_char] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_gen] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_impl] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_mod] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_move] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2439), + [aux_sym_string_literal_token1] = ACTIONS(2439), + [sym_char_literal] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_metavariable] = ACTIONS(2439), + [sym__raw_string_literal_start] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), }, [675] = { [sym_line_comment] = STATE(675), [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2466), - [sym_identifier] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_macro_rules_BANG] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_u8] = ACTIONS(2468), - [anon_sym_i8] = ACTIONS(2468), - [anon_sym_u16] = ACTIONS(2468), - [anon_sym_i16] = ACTIONS(2468), - [anon_sym_u32] = ACTIONS(2468), - [anon_sym_i32] = ACTIONS(2468), - [anon_sym_u64] = ACTIONS(2468), - [anon_sym_i64] = ACTIONS(2468), - [anon_sym_u128] = ACTIONS(2468), - [anon_sym_i128] = ACTIONS(2468), - [anon_sym_isize] = ACTIONS(2468), - [anon_sym_usize] = ACTIONS(2468), - [anon_sym_f32] = ACTIONS(2468), - [anon_sym_f64] = ACTIONS(2468), - [anon_sym_bool] = ACTIONS(2468), - [anon_sym_str] = ACTIONS(2468), - [anon_sym_char] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2468), - [anon_sym_async] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_fn] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_impl] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_loop] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2468), - [anon_sym_mod] = ACTIONS(2468), - [anon_sym_pub] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_struct] = ACTIONS(2468), - [anon_sym_trait] = ACTIONS(2468), - [anon_sym_type] = ACTIONS(2468), - [anon_sym_union] = ACTIONS(2468), - [anon_sym_unsafe] = ACTIONS(2468), - [anon_sym_use] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2468), - [anon_sym_move] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2468), - [sym_integer_literal] = ACTIONS(2466), - [aux_sym_string_literal_token1] = ACTIONS(2466), - [sym_char_literal] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2468), - [anon_sym_false] = ACTIONS(2468), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2468), - [sym_super] = ACTIONS(2468), - [sym_crate] = ACTIONS(2468), - [sym_metavariable] = ACTIONS(2466), - [sym__raw_string_literal_start] = ACTIONS(2466), - [sym_float_literal] = ACTIONS(2466), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_macro_rules_BANG] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_u8] = ACTIONS(2445), + [anon_sym_i8] = ACTIONS(2445), + [anon_sym_u16] = ACTIONS(2445), + [anon_sym_i16] = ACTIONS(2445), + [anon_sym_u32] = ACTIONS(2445), + [anon_sym_i32] = ACTIONS(2445), + [anon_sym_u64] = ACTIONS(2445), + [anon_sym_i64] = ACTIONS(2445), + [anon_sym_u128] = ACTIONS(2445), + [anon_sym_i128] = ACTIONS(2445), + [anon_sym_isize] = ACTIONS(2445), + [anon_sym_usize] = ACTIONS(2445), + [anon_sym_f32] = ACTIONS(2445), + [anon_sym_f64] = ACTIONS(2445), + [anon_sym_bool] = ACTIONS(2445), + [anon_sym_str] = ACTIONS(2445), + [anon_sym_char] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_gen] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_impl] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_mod] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_move] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [sym_integer_literal] = ACTIONS(2443), + [aux_sym_string_literal_token1] = ACTIONS(2443), + [sym_char_literal] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_crate] = ACTIONS(2445), + [sym_metavariable] = ACTIONS(2443), + [sym__raw_string_literal_start] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), }, [676] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(2470), - [sym_identifier] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_macro_rules_BANG] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_u8] = ACTIONS(2472), - [anon_sym_i8] = ACTIONS(2472), - [anon_sym_u16] = ACTIONS(2472), - [anon_sym_i16] = ACTIONS(2472), - [anon_sym_u32] = ACTIONS(2472), - [anon_sym_i32] = ACTIONS(2472), - [anon_sym_u64] = ACTIONS(2472), - [anon_sym_i64] = ACTIONS(2472), - [anon_sym_u128] = ACTIONS(2472), - [anon_sym_i128] = ACTIONS(2472), - [anon_sym_isize] = ACTIONS(2472), - [anon_sym_usize] = ACTIONS(2472), - [anon_sym_f32] = ACTIONS(2472), - [anon_sym_f64] = ACTIONS(2472), - [anon_sym_bool] = ACTIONS(2472), - [anon_sym_str] = ACTIONS(2472), - [anon_sym_char] = ACTIONS(2472), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_PIPE] = ACTIONS(2470), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_DOT_DOT] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2472), - [anon_sym_async] = ACTIONS(2472), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_const] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_default] = ACTIONS(2472), - [anon_sym_enum] = ACTIONS(2472), - [anon_sym_fn] = ACTIONS(2472), - [anon_sym_for] = ACTIONS(2472), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_impl] = ACTIONS(2472), - [anon_sym_let] = ACTIONS(2472), - [anon_sym_loop] = ACTIONS(2472), - [anon_sym_match] = ACTIONS(2472), - [anon_sym_mod] = ACTIONS(2472), - [anon_sym_pub] = ACTIONS(2472), - [anon_sym_return] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(2472), - [anon_sym_trait] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_union] = ACTIONS(2472), - [anon_sym_unsafe] = ACTIONS(2472), - [anon_sym_use] = ACTIONS(2472), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_extern] = ACTIONS(2472), - [anon_sym_yield] = ACTIONS(2472), - [anon_sym_move] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2472), - [sym_integer_literal] = ACTIONS(2470), - [aux_sym_string_literal_token1] = ACTIONS(2470), - [sym_char_literal] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2472), - [anon_sym_false] = ACTIONS(2472), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2472), - [sym_super] = ACTIONS(2472), - [sym_crate] = ACTIONS(2472), - [sym_metavariable] = ACTIONS(2470), - [sym__raw_string_literal_start] = ACTIONS(2470), - [sym_float_literal] = ACTIONS(2470), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_macro_rules_BANG] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(2449), + [anon_sym_i8] = ACTIONS(2449), + [anon_sym_u16] = ACTIONS(2449), + [anon_sym_i16] = ACTIONS(2449), + [anon_sym_u32] = ACTIONS(2449), + [anon_sym_i32] = ACTIONS(2449), + [anon_sym_u64] = ACTIONS(2449), + [anon_sym_i64] = ACTIONS(2449), + [anon_sym_u128] = ACTIONS(2449), + [anon_sym_i128] = ACTIONS(2449), + [anon_sym_isize] = ACTIONS(2449), + [anon_sym_usize] = ACTIONS(2449), + [anon_sym_f32] = ACTIONS(2449), + [anon_sym_f64] = ACTIONS(2449), + [anon_sym_bool] = ACTIONS(2449), + [anon_sym_str] = ACTIONS(2449), + [anon_sym_char] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_DOT_DOT] = ACTIONS(2447), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_POUND] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_gen] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_mod] = ACTIONS(2449), + [anon_sym_pub] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_move] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [sym_integer_literal] = ACTIONS(2447), + [aux_sym_string_literal_token1] = ACTIONS(2447), + [sym_char_literal] = ACTIONS(2447), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2449), + [sym_super] = ACTIONS(2449), + [sym_crate] = ACTIONS(2449), + [sym_metavariable] = ACTIONS(2447), + [sym__raw_string_literal_start] = ACTIONS(2447), + [sym_float_literal] = ACTIONS(2447), }, [677] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2474), - [sym_identifier] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_macro_rules_BANG] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_u8] = ACTIONS(2476), - [anon_sym_i8] = ACTIONS(2476), - [anon_sym_u16] = ACTIONS(2476), - [anon_sym_i16] = ACTIONS(2476), - [anon_sym_u32] = ACTIONS(2476), - [anon_sym_i32] = ACTIONS(2476), - [anon_sym_u64] = ACTIONS(2476), - [anon_sym_i64] = ACTIONS(2476), - [anon_sym_u128] = ACTIONS(2476), - [anon_sym_i128] = ACTIONS(2476), - [anon_sym_isize] = ACTIONS(2476), - [anon_sym_usize] = ACTIONS(2476), - [anon_sym_f32] = ACTIONS(2476), - [anon_sym_f64] = ACTIONS(2476), - [anon_sym_bool] = ACTIONS(2476), - [anon_sym_str] = ACTIONS(2476), - [anon_sym_char] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_fn] = ACTIONS(2476), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_impl] = ACTIONS(2476), - [anon_sym_let] = ACTIONS(2476), - [anon_sym_loop] = ACTIONS(2476), - [anon_sym_match] = ACTIONS(2476), - [anon_sym_mod] = ACTIONS(2476), - [anon_sym_pub] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_struct] = ACTIONS(2476), - [anon_sym_trait] = ACTIONS(2476), - [anon_sym_type] = ACTIONS(2476), - [anon_sym_union] = ACTIONS(2476), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_use] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym_yield] = ACTIONS(2476), - [anon_sym_move] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [sym_integer_literal] = ACTIONS(2474), - [aux_sym_string_literal_token1] = ACTIONS(2474), - [sym_char_literal] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2476), - [anon_sym_false] = ACTIONS(2476), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2476), - [sym_super] = ACTIONS(2476), - [sym_crate] = ACTIONS(2476), - [sym_metavariable] = ACTIONS(2474), - [sym__raw_string_literal_start] = ACTIONS(2474), - [sym_float_literal] = ACTIONS(2474), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_macro_rules_BANG] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_u8] = ACTIONS(2453), + [anon_sym_i8] = ACTIONS(2453), + [anon_sym_u16] = ACTIONS(2453), + [anon_sym_i16] = ACTIONS(2453), + [anon_sym_u32] = ACTIONS(2453), + [anon_sym_i32] = ACTIONS(2453), + [anon_sym_u64] = ACTIONS(2453), + [anon_sym_i64] = ACTIONS(2453), + [anon_sym_u128] = ACTIONS(2453), + [anon_sym_i128] = ACTIONS(2453), + [anon_sym_isize] = ACTIONS(2453), + [anon_sym_usize] = ACTIONS(2453), + [anon_sym_f32] = ACTIONS(2453), + [anon_sym_f64] = ACTIONS(2453), + [anon_sym_bool] = ACTIONS(2453), + [anon_sym_str] = ACTIONS(2453), + [anon_sym_char] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2451), + [anon_sym_LT] = ACTIONS(2451), + [anon_sym_DOT_DOT] = ACTIONS(2451), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_POUND] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_gen] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_impl] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_mod] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_move] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [sym_integer_literal] = ACTIONS(2451), + [aux_sym_string_literal_token1] = ACTIONS(2451), + [sym_char_literal] = ACTIONS(2451), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2453), + [sym_super] = ACTIONS(2453), + [sym_crate] = ACTIONS(2453), + [sym_metavariable] = ACTIONS(2451), + [sym__raw_string_literal_start] = ACTIONS(2451), + [sym_float_literal] = ACTIONS(2451), }, [678] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_macro_rules_BANG] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_u8] = ACTIONS(2480), - [anon_sym_i8] = ACTIONS(2480), - [anon_sym_u16] = ACTIONS(2480), - [anon_sym_i16] = ACTIONS(2480), - [anon_sym_u32] = ACTIONS(2480), - [anon_sym_i32] = ACTIONS(2480), - [anon_sym_u64] = ACTIONS(2480), - [anon_sym_i64] = ACTIONS(2480), - [anon_sym_u128] = ACTIONS(2480), - [anon_sym_i128] = ACTIONS(2480), - [anon_sym_isize] = ACTIONS(2480), - [anon_sym_usize] = ACTIONS(2480), - [anon_sym_f32] = ACTIONS(2480), - [anon_sym_f64] = ACTIONS(2480), - [anon_sym_bool] = ACTIONS(2480), - [anon_sym_str] = ACTIONS(2480), - [anon_sym_char] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_DOT_DOT] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_async] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_fn] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_impl] = ACTIONS(2480), - [anon_sym_let] = ACTIONS(2480), - [anon_sym_loop] = ACTIONS(2480), - [anon_sym_match] = ACTIONS(2480), - [anon_sym_mod] = ACTIONS(2480), - [anon_sym_pub] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_struct] = ACTIONS(2480), - [anon_sym_trait] = ACTIONS(2480), - [anon_sym_type] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2480), - [anon_sym_unsafe] = ACTIONS(2480), - [anon_sym_use] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_yield] = ACTIONS(2480), - [anon_sym_move] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2480), - [sym_integer_literal] = ACTIONS(2478), - [aux_sym_string_literal_token1] = ACTIONS(2478), - [sym_char_literal] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2480), - [anon_sym_false] = ACTIONS(2480), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2480), - [sym_super] = ACTIONS(2480), - [sym_crate] = ACTIONS(2480), - [sym_metavariable] = ACTIONS(2478), - [sym__raw_string_literal_start] = ACTIONS(2478), - [sym_float_literal] = ACTIONS(2478), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_macro_rules_BANG] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_u8] = ACTIONS(2457), + [anon_sym_i8] = ACTIONS(2457), + [anon_sym_u16] = ACTIONS(2457), + [anon_sym_i16] = ACTIONS(2457), + [anon_sym_u32] = ACTIONS(2457), + [anon_sym_i32] = ACTIONS(2457), + [anon_sym_u64] = ACTIONS(2457), + [anon_sym_i64] = ACTIONS(2457), + [anon_sym_u128] = ACTIONS(2457), + [anon_sym_i128] = ACTIONS(2457), + [anon_sym_isize] = ACTIONS(2457), + [anon_sym_usize] = ACTIONS(2457), + [anon_sym_f32] = ACTIONS(2457), + [anon_sym_f64] = ACTIONS(2457), + [anon_sym_bool] = ACTIONS(2457), + [anon_sym_str] = ACTIONS(2457), + [anon_sym_char] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_DOT_DOT] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_gen] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_impl] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_mod] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_move] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [sym_integer_literal] = ACTIONS(2455), + [aux_sym_string_literal_token1] = ACTIONS(2455), + [sym_char_literal] = ACTIONS(2455), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2457), + [sym_super] = ACTIONS(2457), + [sym_crate] = ACTIONS(2457), + [sym_metavariable] = ACTIONS(2455), + [sym__raw_string_literal_start] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2455), }, [679] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_macro_rules_BANG] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_u8] = ACTIONS(2484), - [anon_sym_i8] = ACTIONS(2484), - [anon_sym_u16] = ACTIONS(2484), - [anon_sym_i16] = ACTIONS(2484), - [anon_sym_u32] = ACTIONS(2484), - [anon_sym_i32] = ACTIONS(2484), - [anon_sym_u64] = ACTIONS(2484), - [anon_sym_i64] = ACTIONS(2484), - [anon_sym_u128] = ACTIONS(2484), - [anon_sym_i128] = ACTIONS(2484), - [anon_sym_isize] = ACTIONS(2484), - [anon_sym_usize] = ACTIONS(2484), - [anon_sym_f32] = ACTIONS(2484), - [anon_sym_f64] = ACTIONS(2484), - [anon_sym_bool] = ACTIONS(2484), - [anon_sym_str] = ACTIONS(2484), - [anon_sym_char] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_DOT_DOT] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(2484), - [anon_sym_async] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_const] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_default] = ACTIONS(2484), - [anon_sym_enum] = ACTIONS(2484), - [anon_sym_fn] = ACTIONS(2484), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_impl] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), - [anon_sym_loop] = ACTIONS(2484), - [anon_sym_match] = ACTIONS(2484), - [anon_sym_mod] = ACTIONS(2484), - [anon_sym_pub] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_struct] = ACTIONS(2484), - [anon_sym_trait] = ACTIONS(2484), - [anon_sym_type] = ACTIONS(2484), - [anon_sym_union] = ACTIONS(2484), - [anon_sym_unsafe] = ACTIONS(2484), - [anon_sym_use] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_extern] = ACTIONS(2484), - [anon_sym_yield] = ACTIONS(2484), - [anon_sym_move] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2484), - [sym_integer_literal] = ACTIONS(2482), - [aux_sym_string_literal_token1] = ACTIONS(2482), - [sym_char_literal] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(2484), - [anon_sym_false] = ACTIONS(2484), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2484), - [sym_super] = ACTIONS(2484), - [sym_crate] = ACTIONS(2484), - [sym_metavariable] = ACTIONS(2482), - [sym__raw_string_literal_start] = ACTIONS(2482), - [sym_float_literal] = ACTIONS(2482), + [ts_builtin_sym_end] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_macro_rules_BANG] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [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_DASH] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_DOT_DOT] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2459), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_fn] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_gen] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_impl] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_mod] = ACTIONS(2461), + [anon_sym_pub] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_union] = ACTIONS(2461), + [anon_sym_unsafe] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_move] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [sym_integer_literal] = ACTIONS(2459), + [aux_sym_string_literal_token1] = ACTIONS(2459), + [sym_char_literal] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_crate] = ACTIONS(2461), + [sym_metavariable] = ACTIONS(2459), + [sym__raw_string_literal_start] = ACTIONS(2459), + [sym_float_literal] = ACTIONS(2459), }, [680] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2486), - [sym_identifier] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2486), - [anon_sym_macro_rules_BANG] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_u8] = ACTIONS(2488), - [anon_sym_i8] = ACTIONS(2488), - [anon_sym_u16] = ACTIONS(2488), - [anon_sym_i16] = ACTIONS(2488), - [anon_sym_u32] = ACTIONS(2488), - [anon_sym_i32] = ACTIONS(2488), - [anon_sym_u64] = ACTIONS(2488), - [anon_sym_i64] = ACTIONS(2488), - [anon_sym_u128] = ACTIONS(2488), - [anon_sym_i128] = ACTIONS(2488), - [anon_sym_isize] = ACTIONS(2488), - [anon_sym_usize] = ACTIONS(2488), - [anon_sym_f32] = ACTIONS(2488), - [anon_sym_f64] = ACTIONS(2488), - [anon_sym_bool] = ACTIONS(2488), - [anon_sym_str] = ACTIONS(2488), - [anon_sym_char] = ACTIONS(2488), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_DOT_DOT] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_fn] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_impl] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), - [anon_sym_loop] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_mod] = ACTIONS(2488), - [anon_sym_pub] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_trait] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(2488), - [anon_sym_use] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym_yield] = ACTIONS(2488), - [anon_sym_move] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2486), - [aux_sym_string_literal_token1] = ACTIONS(2486), - [sym_char_literal] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2488), - [anon_sym_false] = ACTIONS(2488), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2488), - [sym_super] = ACTIONS(2488), - [sym_crate] = ACTIONS(2488), - [sym_metavariable] = ACTIONS(2486), - [sym__raw_string_literal_start] = ACTIONS(2486), - [sym_float_literal] = ACTIONS(2486), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_macro_rules_BANG] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_u8] = ACTIONS(2465), + [anon_sym_i8] = ACTIONS(2465), + [anon_sym_u16] = ACTIONS(2465), + [anon_sym_i16] = ACTIONS(2465), + [anon_sym_u32] = ACTIONS(2465), + [anon_sym_i32] = ACTIONS(2465), + [anon_sym_u64] = ACTIONS(2465), + [anon_sym_i64] = ACTIONS(2465), + [anon_sym_u128] = ACTIONS(2465), + [anon_sym_i128] = ACTIONS(2465), + [anon_sym_isize] = ACTIONS(2465), + [anon_sym_usize] = ACTIONS(2465), + [anon_sym_f32] = ACTIONS(2465), + [anon_sym_f64] = ACTIONS(2465), + [anon_sym_bool] = ACTIONS(2465), + [anon_sym_str] = ACTIONS(2465), + [anon_sym_char] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_gen] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_impl] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_mod] = ACTIONS(2465), + [anon_sym_pub] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_move] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [sym_integer_literal] = ACTIONS(2463), + [aux_sym_string_literal_token1] = ACTIONS(2463), + [sym_char_literal] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2465), + [sym_super] = ACTIONS(2465), + [sym_crate] = ACTIONS(2465), + [sym_metavariable] = ACTIONS(2463), + [sym__raw_string_literal_start] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), }, [681] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2490), - [sym_identifier] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_macro_rules_BANG] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_u8] = ACTIONS(2492), - [anon_sym_i8] = ACTIONS(2492), - [anon_sym_u16] = ACTIONS(2492), - [anon_sym_i16] = ACTIONS(2492), - [anon_sym_u32] = ACTIONS(2492), - [anon_sym_i32] = ACTIONS(2492), - [anon_sym_u64] = ACTIONS(2492), - [anon_sym_i64] = ACTIONS(2492), - [anon_sym_u128] = ACTIONS(2492), - [anon_sym_i128] = ACTIONS(2492), - [anon_sym_isize] = ACTIONS(2492), - [anon_sym_usize] = ACTIONS(2492), - [anon_sym_f32] = ACTIONS(2492), - [anon_sym_f64] = ACTIONS(2492), - [anon_sym_bool] = ACTIONS(2492), - [anon_sym_str] = ACTIONS(2492), - [anon_sym_char] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_DOT_DOT] = ACTIONS(2490), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2492), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_fn] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_impl] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_mod] = ACTIONS(2492), - [anon_sym_pub] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_trait] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_unsafe] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_move] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [sym_integer_literal] = ACTIONS(2490), - [aux_sym_string_literal_token1] = ACTIONS(2490), - [sym_char_literal] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2492), - [anon_sym_false] = ACTIONS(2492), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2492), - [sym_super] = ACTIONS(2492), - [sym_crate] = ACTIONS(2492), - [sym_metavariable] = ACTIONS(2490), - [sym__raw_string_literal_start] = ACTIONS(2490), - [sym_float_literal] = ACTIONS(2490), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_macro_rules_BANG] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_u8] = ACTIONS(2469), + [anon_sym_i8] = ACTIONS(2469), + [anon_sym_u16] = ACTIONS(2469), + [anon_sym_i16] = ACTIONS(2469), + [anon_sym_u32] = ACTIONS(2469), + [anon_sym_i32] = ACTIONS(2469), + [anon_sym_u64] = ACTIONS(2469), + [anon_sym_i64] = ACTIONS(2469), + [anon_sym_u128] = ACTIONS(2469), + [anon_sym_i128] = ACTIONS(2469), + [anon_sym_isize] = ACTIONS(2469), + [anon_sym_usize] = ACTIONS(2469), + [anon_sym_f32] = ACTIONS(2469), + [anon_sym_f64] = ACTIONS(2469), + [anon_sym_bool] = ACTIONS(2469), + [anon_sym_str] = ACTIONS(2469), + [anon_sym_char] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_gen] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_impl] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_mod] = ACTIONS(2469), + [anon_sym_pub] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_move] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [sym_integer_literal] = ACTIONS(2467), + [aux_sym_string_literal_token1] = ACTIONS(2467), + [sym_char_literal] = ACTIONS(2467), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2469), + [sym_super] = ACTIONS(2469), + [sym_crate] = ACTIONS(2469), + [sym_metavariable] = ACTIONS(2467), + [sym__raw_string_literal_start] = ACTIONS(2467), + [sym_float_literal] = ACTIONS(2467), }, [682] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_macro_rules_BANG] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_u8] = ACTIONS(2496), - [anon_sym_i8] = ACTIONS(2496), - [anon_sym_u16] = ACTIONS(2496), - [anon_sym_i16] = ACTIONS(2496), - [anon_sym_u32] = ACTIONS(2496), - [anon_sym_i32] = ACTIONS(2496), - [anon_sym_u64] = ACTIONS(2496), - [anon_sym_i64] = ACTIONS(2496), - [anon_sym_u128] = ACTIONS(2496), - [anon_sym_i128] = ACTIONS(2496), - [anon_sym_isize] = ACTIONS(2496), - [anon_sym_usize] = ACTIONS(2496), - [anon_sym_f32] = ACTIONS(2496), - [anon_sym_f64] = ACTIONS(2496), - [anon_sym_bool] = ACTIONS(2496), - [anon_sym_str] = ACTIONS(2496), - [anon_sym_char] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2496), - [anon_sym_async] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_impl] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_mod] = ACTIONS(2496), - [anon_sym_pub] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_trait] = ACTIONS(2496), - [anon_sym_type] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_unsafe] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_yield] = ACTIONS(2496), - [anon_sym_move] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [sym_integer_literal] = ACTIONS(2494), - [aux_sym_string_literal_token1] = ACTIONS(2494), - [sym_char_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_crate] = ACTIONS(2496), - [sym_metavariable] = ACTIONS(2494), - [sym__raw_string_literal_start] = ACTIONS(2494), - [sym_float_literal] = ACTIONS(2494), + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_macro_rules_BANG] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_u8] = ACTIONS(2473), + [anon_sym_i8] = ACTIONS(2473), + [anon_sym_u16] = ACTIONS(2473), + [anon_sym_i16] = ACTIONS(2473), + [anon_sym_u32] = ACTIONS(2473), + [anon_sym_i32] = ACTIONS(2473), + [anon_sym_u64] = ACTIONS(2473), + [anon_sym_i64] = ACTIONS(2473), + [anon_sym_u128] = ACTIONS(2473), + [anon_sym_i128] = ACTIONS(2473), + [anon_sym_isize] = ACTIONS(2473), + [anon_sym_usize] = ACTIONS(2473), + [anon_sym_f32] = ACTIONS(2473), + [anon_sym_f64] = ACTIONS(2473), + [anon_sym_bool] = ACTIONS(2473), + [anon_sym_str] = ACTIONS(2473), + [anon_sym_char] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_DOT_DOT] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_gen] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_impl] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_mod] = ACTIONS(2473), + [anon_sym_pub] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2473), + [anon_sym_unsafe] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_move] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [sym_integer_literal] = ACTIONS(2471), + [aux_sym_string_literal_token1] = ACTIONS(2471), + [sym_char_literal] = ACTIONS(2471), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2473), + [sym_metavariable] = ACTIONS(2471), + [sym__raw_string_literal_start] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), }, [683] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_macro_rules_BANG] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_u8] = ACTIONS(2500), - [anon_sym_i8] = ACTIONS(2500), - [anon_sym_u16] = ACTIONS(2500), - [anon_sym_i16] = ACTIONS(2500), - [anon_sym_u32] = ACTIONS(2500), - [anon_sym_i32] = ACTIONS(2500), - [anon_sym_u64] = ACTIONS(2500), - [anon_sym_i64] = ACTIONS(2500), - [anon_sym_u128] = ACTIONS(2500), - [anon_sym_i128] = ACTIONS(2500), - [anon_sym_isize] = ACTIONS(2500), - [anon_sym_usize] = ACTIONS(2500), - [anon_sym_f32] = ACTIONS(2500), - [anon_sym_f64] = ACTIONS(2500), - [anon_sym_bool] = ACTIONS(2500), - [anon_sym_str] = ACTIONS(2500), - [anon_sym_char] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_DOT_DOT] = ACTIONS(2498), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_fn] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_loop] = ACTIONS(2500), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_mod] = ACTIONS(2500), - [anon_sym_pub] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_trait] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_unsafe] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2500), - [anon_sym_move] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [sym_integer_literal] = ACTIONS(2498), - [aux_sym_string_literal_token1] = ACTIONS(2498), - [sym_char_literal] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2500), - [anon_sym_false] = ACTIONS(2500), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2500), - [sym_super] = ACTIONS(2500), - [sym_crate] = ACTIONS(2500), - [sym_metavariable] = ACTIONS(2498), - [sym__raw_string_literal_start] = ACTIONS(2498), - [sym_float_literal] = ACTIONS(2498), + [ts_builtin_sym_end] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_macro_rules_BANG] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_u8] = ACTIONS(2477), + [anon_sym_i8] = ACTIONS(2477), + [anon_sym_u16] = ACTIONS(2477), + [anon_sym_i16] = ACTIONS(2477), + [anon_sym_u32] = ACTIONS(2477), + [anon_sym_i32] = ACTIONS(2477), + [anon_sym_u64] = ACTIONS(2477), + [anon_sym_i64] = ACTIONS(2477), + [anon_sym_u128] = ACTIONS(2477), + [anon_sym_i128] = ACTIONS(2477), + [anon_sym_isize] = ACTIONS(2477), + [anon_sym_usize] = ACTIONS(2477), + [anon_sym_f32] = ACTIONS(2477), + [anon_sym_f64] = ACTIONS(2477), + [anon_sym_bool] = ACTIONS(2477), + [anon_sym_str] = ACTIONS(2477), + [anon_sym_char] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_fn] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_gen] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_impl] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_mod] = ACTIONS(2477), + [anon_sym_pub] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2477), + [anon_sym_unsafe] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_move] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [sym_integer_literal] = ACTIONS(2475), + [aux_sym_string_literal_token1] = ACTIONS(2475), + [sym_char_literal] = ACTIONS(2475), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2477), + [sym_super] = ACTIONS(2477), + [sym_crate] = ACTIONS(2477), + [sym_metavariable] = ACTIONS(2475), + [sym__raw_string_literal_start] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), }, [684] = { [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_macro_rules_BANG] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_u8] = ACTIONS(2504), - [anon_sym_i8] = ACTIONS(2504), - [anon_sym_u16] = ACTIONS(2504), - [anon_sym_i16] = ACTIONS(2504), - [anon_sym_u32] = ACTIONS(2504), - [anon_sym_i32] = ACTIONS(2504), - [anon_sym_u64] = ACTIONS(2504), - [anon_sym_i64] = ACTIONS(2504), - [anon_sym_u128] = ACTIONS(2504), - [anon_sym_i128] = ACTIONS(2504), - [anon_sym_isize] = ACTIONS(2504), - [anon_sym_usize] = ACTIONS(2504), - [anon_sym_f32] = ACTIONS(2504), - [anon_sym_f64] = ACTIONS(2504), - [anon_sym_bool] = ACTIONS(2504), - [anon_sym_str] = ACTIONS(2504), - [anon_sym_char] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_DOT_DOT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_fn] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_impl] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_mod] = ACTIONS(2504), - [anon_sym_pub] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_trait] = ACTIONS(2504), - [anon_sym_type] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_unsafe] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_yield] = ACTIONS(2504), - [anon_sym_move] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [sym_integer_literal] = ACTIONS(2502), - [aux_sym_string_literal_token1] = ACTIONS(2502), - [sym_char_literal] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2504), - [sym_super] = ACTIONS(2504), - [sym_crate] = ACTIONS(2504), - [sym_metavariable] = ACTIONS(2502), - [sym__raw_string_literal_start] = ACTIONS(2502), - [sym_float_literal] = ACTIONS(2502), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_macro_rules_BANG] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2479), + [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_DASH] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2479), + [anon_sym_POUND] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_fn] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_gen] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_impl] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_mod] = ACTIONS(2481), + [anon_sym_pub] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2481), + [anon_sym_unsafe] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_move] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [sym_integer_literal] = ACTIONS(2479), + [aux_sym_string_literal_token1] = ACTIONS(2479), + [sym_char_literal] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_crate] = ACTIONS(2481), + [sym_metavariable] = ACTIONS(2479), + [sym__raw_string_literal_start] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2479), }, [685] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_macro_rules_BANG] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_u8] = ACTIONS(2508), - [anon_sym_i8] = ACTIONS(2508), - [anon_sym_u16] = ACTIONS(2508), - [anon_sym_i16] = ACTIONS(2508), - [anon_sym_u32] = ACTIONS(2508), - [anon_sym_i32] = ACTIONS(2508), - [anon_sym_u64] = ACTIONS(2508), - [anon_sym_i64] = ACTIONS(2508), - [anon_sym_u128] = ACTIONS(2508), - [anon_sym_i128] = ACTIONS(2508), - [anon_sym_isize] = ACTIONS(2508), - [anon_sym_usize] = ACTIONS(2508), - [anon_sym_f32] = ACTIONS(2508), - [anon_sym_f64] = ACTIONS(2508), - [anon_sym_bool] = ACTIONS(2508), - [anon_sym_str] = ACTIONS(2508), - [anon_sym_char] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_DOT_DOT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [anon_sym_fn] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_impl] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_mod] = ACTIONS(2508), - [anon_sym_pub] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_trait] = ACTIONS(2508), - [anon_sym_type] = ACTIONS(2508), - [anon_sym_union] = ACTIONS(2508), - [anon_sym_unsafe] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_move] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [sym_integer_literal] = ACTIONS(2506), - [aux_sym_string_literal_token1] = ACTIONS(2506), - [sym_char_literal] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2508), - [sym_super] = ACTIONS(2508), - [sym_crate] = ACTIONS(2508), - [sym_metavariable] = ACTIONS(2506), - [sym__raw_string_literal_start] = ACTIONS(2506), - [sym_float_literal] = ACTIONS(2506), + [ts_builtin_sym_end] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_macro_rules_BANG] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_u8] = ACTIONS(2485), + [anon_sym_i8] = ACTIONS(2485), + [anon_sym_u16] = ACTIONS(2485), + [anon_sym_i16] = ACTIONS(2485), + [anon_sym_u32] = ACTIONS(2485), + [anon_sym_i32] = ACTIONS(2485), + [anon_sym_u64] = ACTIONS(2485), + [anon_sym_i64] = ACTIONS(2485), + [anon_sym_u128] = ACTIONS(2485), + [anon_sym_i128] = ACTIONS(2485), + [anon_sym_isize] = ACTIONS(2485), + [anon_sym_usize] = ACTIONS(2485), + [anon_sym_f32] = ACTIONS(2485), + [anon_sym_f64] = ACTIONS(2485), + [anon_sym_bool] = ACTIONS(2485), + [anon_sym_str] = ACTIONS(2485), + [anon_sym_char] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2483), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_DOT_DOT] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_POUND] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_fn] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_gen] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_impl] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_mod] = ACTIONS(2485), + [anon_sym_pub] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_unsafe] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_move] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2483), + [aux_sym_string_literal_token1] = ACTIONS(2483), + [sym_char_literal] = ACTIONS(2483), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2485), + [sym_super] = ACTIONS(2485), + [sym_crate] = ACTIONS(2485), + [sym_metavariable] = ACTIONS(2483), + [sym__raw_string_literal_start] = ACTIONS(2483), + [sym_float_literal] = ACTIONS(2483), }, [686] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_macro_rules_BANG] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_u8] = ACTIONS(2512), - [anon_sym_i8] = ACTIONS(2512), - [anon_sym_u16] = ACTIONS(2512), - [anon_sym_i16] = ACTIONS(2512), - [anon_sym_u32] = ACTIONS(2512), - [anon_sym_i32] = ACTIONS(2512), - [anon_sym_u64] = ACTIONS(2512), - [anon_sym_i64] = ACTIONS(2512), - [anon_sym_u128] = ACTIONS(2512), - [anon_sym_i128] = ACTIONS(2512), - [anon_sym_isize] = ACTIONS(2512), - [anon_sym_usize] = ACTIONS(2512), - [anon_sym_f32] = ACTIONS(2512), - [anon_sym_f64] = ACTIONS(2512), - [anon_sym_bool] = ACTIONS(2512), - [anon_sym_str] = ACTIONS(2512), - [anon_sym_char] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_DOT_DOT] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_async] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), - [anon_sym_fn] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_impl] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_mod] = ACTIONS(2512), - [anon_sym_pub] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(2512), - [anon_sym_trait] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_union] = ACTIONS(2512), - [anon_sym_unsafe] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_yield] = ACTIONS(2512), - [anon_sym_move] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [sym_integer_literal] = ACTIONS(2510), - [aux_sym_string_literal_token1] = ACTIONS(2510), - [sym_char_literal] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(2512), - [sym_crate] = ACTIONS(2512), - [sym_metavariable] = ACTIONS(2510), - [sym__raw_string_literal_start] = ACTIONS(2510), - [sym_float_literal] = ACTIONS(2510), + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_macro_rules_BANG] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_u8] = ACTIONS(2489), + [anon_sym_i8] = ACTIONS(2489), + [anon_sym_u16] = ACTIONS(2489), + [anon_sym_i16] = ACTIONS(2489), + [anon_sym_u32] = ACTIONS(2489), + [anon_sym_i32] = ACTIONS(2489), + [anon_sym_u64] = ACTIONS(2489), + [anon_sym_i64] = ACTIONS(2489), + [anon_sym_u128] = ACTIONS(2489), + [anon_sym_i128] = ACTIONS(2489), + [anon_sym_isize] = ACTIONS(2489), + [anon_sym_usize] = ACTIONS(2489), + [anon_sym_f32] = ACTIONS(2489), + [anon_sym_f64] = ACTIONS(2489), + [anon_sym_bool] = ACTIONS(2489), + [anon_sym_str] = ACTIONS(2489), + [anon_sym_char] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_fn] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_gen] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_impl] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_mod] = ACTIONS(2489), + [anon_sym_pub] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_unsafe] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_move] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [sym_integer_literal] = ACTIONS(2487), + [aux_sym_string_literal_token1] = ACTIONS(2487), + [sym_char_literal] = ACTIONS(2487), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_crate] = ACTIONS(2489), + [sym_metavariable] = ACTIONS(2487), + [sym__raw_string_literal_start] = ACTIONS(2487), + [sym_float_literal] = ACTIONS(2487), }, [687] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_macro_rules_BANG] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_u8] = ACTIONS(2516), - [anon_sym_i8] = ACTIONS(2516), - [anon_sym_u16] = ACTIONS(2516), - [anon_sym_i16] = ACTIONS(2516), - [anon_sym_u32] = ACTIONS(2516), - [anon_sym_i32] = ACTIONS(2516), - [anon_sym_u64] = ACTIONS(2516), - [anon_sym_i64] = ACTIONS(2516), - [anon_sym_u128] = ACTIONS(2516), - [anon_sym_i128] = ACTIONS(2516), - [anon_sym_isize] = ACTIONS(2516), - [anon_sym_usize] = ACTIONS(2516), - [anon_sym_f32] = ACTIONS(2516), - [anon_sym_f64] = ACTIONS(2516), - [anon_sym_bool] = ACTIONS(2516), - [anon_sym_str] = ACTIONS(2516), - [anon_sym_char] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_DOT_DOT] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_async] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_default] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), - [anon_sym_fn] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_impl] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_mod] = ACTIONS(2516), - [anon_sym_pub] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(2516), - [anon_sym_trait] = ACTIONS(2516), - [anon_sym_type] = ACTIONS(2516), - [anon_sym_union] = ACTIONS(2516), - [anon_sym_unsafe] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_yield] = ACTIONS(2516), - [anon_sym_move] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [sym_integer_literal] = ACTIONS(2514), - [aux_sym_string_literal_token1] = ACTIONS(2514), - [sym_char_literal] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2516), - [sym_super] = ACTIONS(2516), - [sym_crate] = ACTIONS(2516), - [sym_metavariable] = ACTIONS(2514), - [sym__raw_string_literal_start] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(2514), + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_macro_rules_BANG] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_u8] = ACTIONS(2493), + [anon_sym_i8] = ACTIONS(2493), + [anon_sym_u16] = ACTIONS(2493), + [anon_sym_i16] = ACTIONS(2493), + [anon_sym_u32] = ACTIONS(2493), + [anon_sym_i32] = ACTIONS(2493), + [anon_sym_u64] = ACTIONS(2493), + [anon_sym_i64] = ACTIONS(2493), + [anon_sym_u128] = ACTIONS(2493), + [anon_sym_i128] = ACTIONS(2493), + [anon_sym_isize] = ACTIONS(2493), + [anon_sym_usize] = ACTIONS(2493), + [anon_sym_f32] = ACTIONS(2493), + [anon_sym_f64] = ACTIONS(2493), + [anon_sym_bool] = ACTIONS(2493), + [anon_sym_str] = ACTIONS(2493), + [anon_sym_char] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_DOT_DOT] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_fn] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_gen] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_impl] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_mod] = ACTIONS(2493), + [anon_sym_pub] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_unsafe] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_move] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [sym_integer_literal] = ACTIONS(2491), + [aux_sym_string_literal_token1] = ACTIONS(2491), + [sym_char_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2493), + [sym_super] = ACTIONS(2493), + [sym_crate] = ACTIONS(2493), + [sym_metavariable] = ACTIONS(2491), + [sym__raw_string_literal_start] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), }, [688] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_macro_rules_BANG] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_u8] = ACTIONS(2497), + [anon_sym_i8] = ACTIONS(2497), + [anon_sym_u16] = ACTIONS(2497), + [anon_sym_i16] = ACTIONS(2497), + [anon_sym_u32] = ACTIONS(2497), + [anon_sym_i32] = ACTIONS(2497), + [anon_sym_u64] = ACTIONS(2497), + [anon_sym_i64] = ACTIONS(2497), + [anon_sym_u128] = ACTIONS(2497), + [anon_sym_i128] = ACTIONS(2497), + [anon_sym_isize] = ACTIONS(2497), + [anon_sym_usize] = ACTIONS(2497), + [anon_sym_f32] = ACTIONS(2497), + [anon_sym_f64] = ACTIONS(2497), + [anon_sym_bool] = ACTIONS(2497), + [anon_sym_str] = ACTIONS(2497), + [anon_sym_char] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_PIPE] = ACTIONS(2495), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_POUND] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_fn] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_gen] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_impl] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_mod] = ACTIONS(2497), + [anon_sym_pub] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_union] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_move] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [sym_integer_literal] = ACTIONS(2495), + [aux_sym_string_literal_token1] = ACTIONS(2495), + [sym_char_literal] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2497), + [sym_super] = ACTIONS(2497), + [sym_crate] = ACTIONS(2497), + [sym_metavariable] = ACTIONS(2495), + [sym__raw_string_literal_start] = ACTIONS(2495), + [sym_float_literal] = ACTIONS(2495), }, [689] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_u8] = ACTIONS(2524), - [anon_sym_i8] = ACTIONS(2524), - [anon_sym_u16] = ACTIONS(2524), - [anon_sym_i16] = ACTIONS(2524), - [anon_sym_u32] = ACTIONS(2524), - [anon_sym_i32] = ACTIONS(2524), - [anon_sym_u64] = ACTIONS(2524), - [anon_sym_i64] = ACTIONS(2524), - [anon_sym_u128] = ACTIONS(2524), - [anon_sym_i128] = ACTIONS(2524), - [anon_sym_isize] = ACTIONS(2524), - [anon_sym_usize] = ACTIONS(2524), - [anon_sym_f32] = ACTIONS(2524), - [anon_sym_f64] = ACTIONS(2524), - [anon_sym_bool] = ACTIONS(2524), - [anon_sym_str] = ACTIONS(2524), - [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), + [ts_builtin_sym_end] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_macro_rules_BANG] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_u8] = ACTIONS(2501), + [anon_sym_i8] = ACTIONS(2501), + [anon_sym_u16] = ACTIONS(2501), + [anon_sym_i16] = ACTIONS(2501), + [anon_sym_u32] = ACTIONS(2501), + [anon_sym_i32] = ACTIONS(2501), + [anon_sym_u64] = ACTIONS(2501), + [anon_sym_i64] = ACTIONS(2501), + [anon_sym_u128] = ACTIONS(2501), + [anon_sym_i128] = ACTIONS(2501), + [anon_sym_isize] = ACTIONS(2501), + [anon_sym_usize] = ACTIONS(2501), + [anon_sym_f32] = ACTIONS(2501), + [anon_sym_f64] = ACTIONS(2501), + [anon_sym_bool] = ACTIONS(2501), + [anon_sym_str] = ACTIONS(2501), + [anon_sym_char] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DOT_DOT] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_gen] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_impl] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_mod] = ACTIONS(2501), + [anon_sym_pub] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_move] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [sym_integer_literal] = ACTIONS(2499), + [aux_sym_string_literal_token1] = ACTIONS(2499), + [sym_char_literal] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_crate] = ACTIONS(2501), + [sym_metavariable] = ACTIONS(2499), + [sym__raw_string_literal_start] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2499), }, [690] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [aux_sym_declaration_list_repeat1] = STATE(698), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_macro_rules_BANG] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_u8] = ACTIONS(2505), + [anon_sym_i8] = ACTIONS(2505), + [anon_sym_u16] = ACTIONS(2505), + [anon_sym_i16] = ACTIONS(2505), + [anon_sym_u32] = ACTIONS(2505), + [anon_sym_i32] = ACTIONS(2505), + [anon_sym_u64] = ACTIONS(2505), + [anon_sym_i64] = ACTIONS(2505), + [anon_sym_u128] = ACTIONS(2505), + [anon_sym_i128] = ACTIONS(2505), + [anon_sym_isize] = ACTIONS(2505), + [anon_sym_usize] = ACTIONS(2505), + [anon_sym_f32] = ACTIONS(2505), + [anon_sym_f64] = ACTIONS(2505), + [anon_sym_bool] = ACTIONS(2505), + [anon_sym_str] = ACTIONS(2505), + [anon_sym_char] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_PIPE] = ACTIONS(2503), + [anon_sym_LT] = ACTIONS(2503), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2503), + [anon_sym_POUND] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_gen] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_impl] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_mod] = ACTIONS(2505), + [anon_sym_pub] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_move] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [sym_integer_literal] = ACTIONS(2503), + [aux_sym_string_literal_token1] = ACTIONS(2503), + [sym_char_literal] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2505), + [sym_super] = ACTIONS(2505), + [sym_crate] = ACTIONS(2505), + [sym_metavariable] = ACTIONS(2503), + [sym__raw_string_literal_start] = ACTIONS(2503), + [sym_float_literal] = ACTIONS(2503), }, [691] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_macro_rules_BANG] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_u8] = ACTIONS(2530), - [anon_sym_i8] = ACTIONS(2530), - [anon_sym_u16] = ACTIONS(2530), - [anon_sym_i16] = ACTIONS(2530), - [anon_sym_u32] = ACTIONS(2530), - [anon_sym_i32] = ACTIONS(2530), - [anon_sym_u64] = ACTIONS(2530), - [anon_sym_i64] = ACTIONS(2530), - [anon_sym_u128] = ACTIONS(2530), - [anon_sym_i128] = ACTIONS(2530), - [anon_sym_isize] = ACTIONS(2530), - [anon_sym_usize] = ACTIONS(2530), - [anon_sym_f32] = ACTIONS(2530), - [anon_sym_f64] = ACTIONS(2530), - [anon_sym_bool] = ACTIONS(2530), - [anon_sym_str] = ACTIONS(2530), - [anon_sym_char] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_DOT_DOT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_POUND] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_impl] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_loop] = ACTIONS(2530), - [anon_sym_match] = ACTIONS(2530), - [anon_sym_mod] = ACTIONS(2530), - [anon_sym_pub] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2530), - [anon_sym_trait] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_union] = ACTIONS(2530), - [anon_sym_unsafe] = ACTIONS(2530), - [anon_sym_use] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_extern] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_move] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [sym_integer_literal] = ACTIONS(2528), - [aux_sym_string_literal_token1] = ACTIONS(2528), - [sym_char_literal] = ACTIONS(2528), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_crate] = ACTIONS(2530), - [sym_metavariable] = ACTIONS(2528), - [sym__raw_string_literal_start] = ACTIONS(2528), - [sym_float_literal] = ACTIONS(2528), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_macro_rules_BANG] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_u8] = ACTIONS(2509), + [anon_sym_i8] = ACTIONS(2509), + [anon_sym_u16] = ACTIONS(2509), + [anon_sym_i16] = ACTIONS(2509), + [anon_sym_u32] = ACTIONS(2509), + [anon_sym_i32] = ACTIONS(2509), + [anon_sym_u64] = ACTIONS(2509), + [anon_sym_i64] = ACTIONS(2509), + [anon_sym_u128] = ACTIONS(2509), + [anon_sym_i128] = ACTIONS(2509), + [anon_sym_isize] = ACTIONS(2509), + [anon_sym_usize] = ACTIONS(2509), + [anon_sym_f32] = ACTIONS(2509), + [anon_sym_f64] = ACTIONS(2509), + [anon_sym_bool] = ACTIONS(2509), + [anon_sym_str] = ACTIONS(2509), + [anon_sym_char] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_fn] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_gen] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_impl] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_loop] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_mod] = ACTIONS(2509), + [anon_sym_pub] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_unsafe] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_move] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [sym_integer_literal] = ACTIONS(2507), + [aux_sym_string_literal_token1] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_crate] = ACTIONS(2509), + [sym_metavariable] = ACTIONS(2507), + [sym__raw_string_literal_start] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), }, [692] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2532), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_macro_rules_BANG] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_u8] = ACTIONS(2513), + [anon_sym_i8] = ACTIONS(2513), + [anon_sym_u16] = ACTIONS(2513), + [anon_sym_i16] = ACTIONS(2513), + [anon_sym_u32] = ACTIONS(2513), + [anon_sym_i32] = ACTIONS(2513), + [anon_sym_u64] = ACTIONS(2513), + [anon_sym_i64] = ACTIONS(2513), + [anon_sym_u128] = ACTIONS(2513), + [anon_sym_i128] = ACTIONS(2513), + [anon_sym_isize] = ACTIONS(2513), + [anon_sym_usize] = ACTIONS(2513), + [anon_sym_f32] = ACTIONS(2513), + [anon_sym_f64] = ACTIONS(2513), + [anon_sym_bool] = ACTIONS(2513), + [anon_sym_str] = ACTIONS(2513), + [anon_sym_char] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_POUND] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_gen] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_impl] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_loop] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_mod] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_move] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [sym_integer_literal] = ACTIONS(2511), + [aux_sym_string_literal_token1] = ACTIONS(2511), + [sym_char_literal] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_crate] = ACTIONS(2513), + [sym_metavariable] = ACTIONS(2511), + [sym__raw_string_literal_start] = ACTIONS(2511), + [sym_float_literal] = ACTIONS(2511), + }, + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_macro_rules_BANG] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_u8] = ACTIONS(2517), + [anon_sym_i8] = ACTIONS(2517), + [anon_sym_u16] = ACTIONS(2517), + [anon_sym_i16] = ACTIONS(2517), + [anon_sym_u32] = ACTIONS(2517), + [anon_sym_i32] = ACTIONS(2517), + [anon_sym_u64] = ACTIONS(2517), + [anon_sym_i64] = ACTIONS(2517), + [anon_sym_u128] = ACTIONS(2517), + [anon_sym_i128] = ACTIONS(2517), + [anon_sym_isize] = ACTIONS(2517), + [anon_sym_usize] = ACTIONS(2517), + [anon_sym_f32] = ACTIONS(2517), + [anon_sym_f64] = ACTIONS(2517), + [anon_sym_bool] = ACTIONS(2517), + [anon_sym_str] = ACTIONS(2517), + [anon_sym_char] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE] = ACTIONS(2515), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DOT_DOT] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_POUND] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_fn] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_gen] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_impl] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_mod] = ACTIONS(2517), + [anon_sym_pub] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_unsafe] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_move] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [sym_integer_literal] = ACTIONS(2515), + [aux_sym_string_literal_token1] = ACTIONS(2515), + [sym_char_literal] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2517), + [sym_super] = ACTIONS(2517), + [sym_crate] = ACTIONS(2517), + [sym_metavariable] = ACTIONS(2515), + [sym__raw_string_literal_start] = ACTIONS(2515), + [sym_float_literal] = ACTIONS(2515), + }, + [694] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_macro_rules_BANG] = ACTIONS(2519), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_u8] = ACTIONS(2521), + [anon_sym_i8] = ACTIONS(2521), + [anon_sym_u16] = ACTIONS(2521), + [anon_sym_i16] = ACTIONS(2521), + [anon_sym_u32] = ACTIONS(2521), + [anon_sym_i32] = ACTIONS(2521), + [anon_sym_u64] = ACTIONS(2521), + [anon_sym_i64] = ACTIONS(2521), + [anon_sym_u128] = ACTIONS(2521), + [anon_sym_i128] = ACTIONS(2521), + [anon_sym_isize] = ACTIONS(2521), + [anon_sym_usize] = ACTIONS(2521), + [anon_sym_f32] = ACTIONS(2521), + [anon_sym_f64] = ACTIONS(2521), + [anon_sym_bool] = ACTIONS(2521), + [anon_sym_str] = ACTIONS(2521), + [anon_sym_char] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2519), + [anon_sym_DOT_DOT] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_POUND] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_fn] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_gen] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_impl] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_mod] = ACTIONS(2521), + [anon_sym_pub] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_unsafe] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_move] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [sym_integer_literal] = ACTIONS(2519), + [aux_sym_string_literal_token1] = ACTIONS(2519), + [sym_char_literal] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2521), + [sym_super] = ACTIONS(2521), + [sym_crate] = ACTIONS(2521), + [sym_metavariable] = ACTIONS(2519), + [sym__raw_string_literal_start] = ACTIONS(2519), + [sym_float_literal] = ACTIONS(2519), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_macro_rules_BANG] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_u8] = ACTIONS(2525), + [anon_sym_i8] = ACTIONS(2525), + [anon_sym_u16] = ACTIONS(2525), + [anon_sym_i16] = ACTIONS(2525), + [anon_sym_u32] = ACTIONS(2525), + [anon_sym_i32] = ACTIONS(2525), + [anon_sym_u64] = ACTIONS(2525), + [anon_sym_i64] = ACTIONS(2525), + [anon_sym_u128] = ACTIONS(2525), + [anon_sym_i128] = ACTIONS(2525), + [anon_sym_isize] = ACTIONS(2525), + [anon_sym_usize] = ACTIONS(2525), + [anon_sym_f32] = ACTIONS(2525), + [anon_sym_f64] = ACTIONS(2525), + [anon_sym_bool] = ACTIONS(2525), + [anon_sym_str] = ACTIONS(2525), + [anon_sym_char] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_POUND] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_fn] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_gen] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_impl] = ACTIONS(2525), + [anon_sym_let] = ACTIONS(2525), + [anon_sym_loop] = ACTIONS(2525), + [anon_sym_match] = ACTIONS(2525), + [anon_sym_mod] = ACTIONS(2525), + [anon_sym_pub] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_unsafe] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_move] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [sym_integer_literal] = ACTIONS(2523), + [aux_sym_string_literal_token1] = ACTIONS(2523), + [sym_char_literal] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2525), + [sym_super] = ACTIONS(2525), + [sym_crate] = ACTIONS(2525), + [sym_metavariable] = ACTIONS(2523), + [sym__raw_string_literal_start] = ACTIONS(2523), + [sym_float_literal] = ACTIONS(2523), + }, + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_macro_rules_BANG] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_u8] = ACTIONS(2529), + [anon_sym_i8] = ACTIONS(2529), + [anon_sym_u16] = ACTIONS(2529), + [anon_sym_i16] = ACTIONS(2529), + [anon_sym_u32] = ACTIONS(2529), + [anon_sym_i32] = ACTIONS(2529), + [anon_sym_u64] = ACTIONS(2529), + [anon_sym_i64] = ACTIONS(2529), + [anon_sym_u128] = ACTIONS(2529), + [anon_sym_i128] = ACTIONS(2529), + [anon_sym_isize] = ACTIONS(2529), + [anon_sym_usize] = ACTIONS(2529), + [anon_sym_f32] = ACTIONS(2529), + [anon_sym_f64] = ACTIONS(2529), + [anon_sym_bool] = ACTIONS(2529), + [anon_sym_str] = ACTIONS(2529), + [anon_sym_char] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_PIPE] = ACTIONS(2527), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_DOT_DOT] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_fn] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_gen] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_impl] = ACTIONS(2529), + [anon_sym_let] = ACTIONS(2529), + [anon_sym_loop] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_mod] = ACTIONS(2529), + [anon_sym_pub] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_trait] = ACTIONS(2529), + [anon_sym_type] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_unsafe] = ACTIONS(2529), + [anon_sym_use] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_move] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [sym_integer_literal] = ACTIONS(2527), + [aux_sym_string_literal_token1] = ACTIONS(2527), + [sym_char_literal] = ACTIONS(2527), + [anon_sym_true] = ACTIONS(2529), + [anon_sym_false] = ACTIONS(2529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2529), + [sym_super] = ACTIONS(2529), + [sym_crate] = ACTIONS(2529), + [sym_metavariable] = ACTIONS(2527), + [sym__raw_string_literal_start] = ACTIONS(2527), + [sym_float_literal] = ACTIONS(2527), + }, + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_macro_rules_BANG] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_u8] = ACTIONS(2533), + [anon_sym_i8] = ACTIONS(2533), + [anon_sym_u16] = ACTIONS(2533), + [anon_sym_i16] = ACTIONS(2533), + [anon_sym_u32] = ACTIONS(2533), + [anon_sym_i32] = ACTIONS(2533), + [anon_sym_u64] = ACTIONS(2533), + [anon_sym_i64] = ACTIONS(2533), + [anon_sym_u128] = ACTIONS(2533), + [anon_sym_i128] = ACTIONS(2533), + [anon_sym_isize] = ACTIONS(2533), + [anon_sym_usize] = ACTIONS(2533), + [anon_sym_f32] = ACTIONS(2533), + [anon_sym_f64] = ACTIONS(2533), + [anon_sym_bool] = ACTIONS(2533), + [anon_sym_str] = ACTIONS(2533), + [anon_sym_char] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_PIPE] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_fn] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_gen] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_impl] = ACTIONS(2533), + [anon_sym_let] = ACTIONS(2533), + [anon_sym_loop] = ACTIONS(2533), + [anon_sym_match] = ACTIONS(2533), + [anon_sym_mod] = ACTIONS(2533), + [anon_sym_pub] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_unsafe] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_move] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [sym_integer_literal] = ACTIONS(2531), + [aux_sym_string_literal_token1] = ACTIONS(2531), + [sym_char_literal] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2533), + [sym_super] = ACTIONS(2533), + [sym_crate] = ACTIONS(2533), + [sym_metavariable] = ACTIONS(2531), + [sym__raw_string_literal_start] = ACTIONS(2531), + [sym_float_literal] = ACTIONS(2531), + }, + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2537), [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_u8] = ACTIONS(2543), - [anon_sym_i8] = ACTIONS(2543), - [anon_sym_u16] = ACTIONS(2543), - [anon_sym_i16] = ACTIONS(2543), - [anon_sym_u32] = ACTIONS(2543), - [anon_sym_i32] = ACTIONS(2543), - [anon_sym_u64] = ACTIONS(2543), - [anon_sym_i64] = ACTIONS(2543), - [anon_sym_u128] = ACTIONS(2543), - [anon_sym_i128] = ACTIONS(2543), - [anon_sym_isize] = ACTIONS(2543), - [anon_sym_usize] = ACTIONS(2543), - [anon_sym_f32] = ACTIONS(2543), - [anon_sym_f64] = ACTIONS(2543), - [anon_sym_bool] = ACTIONS(2543), - [anon_sym_str] = ACTIONS(2543), - [anon_sym_char] = ACTIONS(2543), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_async] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2558), + [anon_sym_macro_rules_BANG] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_u8] = ACTIONS(2537), + [anon_sym_i8] = ACTIONS(2537), + [anon_sym_u16] = ACTIONS(2537), + [anon_sym_i16] = ACTIONS(2537), + [anon_sym_u32] = ACTIONS(2537), + [anon_sym_i32] = ACTIONS(2537), + [anon_sym_u64] = ACTIONS(2537), + [anon_sym_i64] = ACTIONS(2537), + [anon_sym_u128] = ACTIONS(2537), + [anon_sym_i128] = ACTIONS(2537), + [anon_sym_isize] = ACTIONS(2537), + [anon_sym_usize] = ACTIONS(2537), + [anon_sym_f32] = ACTIONS(2537), + [anon_sym_f64] = ACTIONS(2537), + [anon_sym_bool] = ACTIONS(2537), + [anon_sym_str] = ACTIONS(2537), + [anon_sym_char] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_LT] = ACTIONS(2535), + [anon_sym_DOT_DOT] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_fn] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_gen] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_impl] = ACTIONS(2537), + [anon_sym_let] = ACTIONS(2537), + [anon_sym_loop] = ACTIONS(2537), + [anon_sym_match] = ACTIONS(2537), + [anon_sym_mod] = ACTIONS(2537), + [anon_sym_pub] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_unsafe] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_move] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [sym_integer_literal] = ACTIONS(2535), + [aux_sym_string_literal_token1] = ACTIONS(2535), + [sym_char_literal] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2537), + [sym_super] = ACTIONS(2537), + [sym_crate] = ACTIONS(2537), + [sym_metavariable] = ACTIONS(2535), + [sym__raw_string_literal_start] = ACTIONS(2535), + [sym_float_literal] = ACTIONS(2535), + }, + [699] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_macro_rules_BANG] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_u8] = ACTIONS(2541), + [anon_sym_i8] = ACTIONS(2541), + [anon_sym_u16] = ACTIONS(2541), + [anon_sym_i16] = ACTIONS(2541), + [anon_sym_u32] = ACTIONS(2541), + [anon_sym_i32] = ACTIONS(2541), + [anon_sym_u64] = ACTIONS(2541), + [anon_sym_i64] = ACTIONS(2541), + [anon_sym_u128] = ACTIONS(2541), + [anon_sym_i128] = ACTIONS(2541), + [anon_sym_isize] = ACTIONS(2541), + [anon_sym_usize] = ACTIONS(2541), + [anon_sym_f32] = ACTIONS(2541), + [anon_sym_f64] = ACTIONS(2541), + [anon_sym_bool] = ACTIONS(2541), + [anon_sym_str] = ACTIONS(2541), + [anon_sym_char] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_PIPE] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_DOT_DOT] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_POUND] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_fn] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_gen] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_impl] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_loop] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_mod] = ACTIONS(2541), + [anon_sym_pub] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_unsafe] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_move] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [sym_integer_literal] = ACTIONS(2539), + [aux_sym_string_literal_token1] = ACTIONS(2539), + [sym_char_literal] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_crate] = ACTIONS(2541), + [sym_metavariable] = ACTIONS(2539), + [sym__raw_string_literal_start] = ACTIONS(2539), + [sym_float_literal] = ACTIONS(2539), + }, + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_macro_rules_BANG] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_u8] = ACTIONS(2545), + [anon_sym_i8] = ACTIONS(2545), + [anon_sym_u16] = ACTIONS(2545), + [anon_sym_i16] = ACTIONS(2545), + [anon_sym_u32] = ACTIONS(2545), + [anon_sym_i32] = ACTIONS(2545), + [anon_sym_u64] = ACTIONS(2545), + [anon_sym_i64] = ACTIONS(2545), + [anon_sym_u128] = ACTIONS(2545), + [anon_sym_i128] = ACTIONS(2545), + [anon_sym_isize] = ACTIONS(2545), + [anon_sym_usize] = ACTIONS(2545), + [anon_sym_f32] = ACTIONS(2545), + [anon_sym_f64] = ACTIONS(2545), + [anon_sym_bool] = ACTIONS(2545), + [anon_sym_str] = ACTIONS(2545), + [anon_sym_char] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2543), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_POUND] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_fn] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_gen] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_impl] = ACTIONS(2545), + [anon_sym_let] = ACTIONS(2545), + [anon_sym_loop] = ACTIONS(2545), + [anon_sym_match] = ACTIONS(2545), + [anon_sym_mod] = ACTIONS(2545), + [anon_sym_pub] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_unsafe] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_move] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [sym_integer_literal] = ACTIONS(2543), + [aux_sym_string_literal_token1] = ACTIONS(2543), + [sym_char_literal] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2545), + [sym_super] = ACTIONS(2545), + [sym_crate] = ACTIONS(2545), + [sym_metavariable] = ACTIONS(2543), + [sym__raw_string_literal_start] = ACTIONS(2543), + [sym_float_literal] = ACTIONS(2543), + }, + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_macro_rules_BANG] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_u8] = ACTIONS(2549), + [anon_sym_i8] = ACTIONS(2549), + [anon_sym_u16] = ACTIONS(2549), + [anon_sym_i16] = ACTIONS(2549), + [anon_sym_u32] = ACTIONS(2549), + [anon_sym_i32] = ACTIONS(2549), + [anon_sym_u64] = ACTIONS(2549), + [anon_sym_i64] = ACTIONS(2549), + [anon_sym_u128] = ACTIONS(2549), + [anon_sym_i128] = ACTIONS(2549), + [anon_sym_isize] = ACTIONS(2549), + [anon_sym_usize] = ACTIONS(2549), + [anon_sym_f32] = ACTIONS(2549), + [anon_sym_f64] = ACTIONS(2549), + [anon_sym_bool] = ACTIONS(2549), + [anon_sym_str] = ACTIONS(2549), + [anon_sym_char] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_fn] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_gen] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_impl] = ACTIONS(2549), + [anon_sym_let] = ACTIONS(2549), + [anon_sym_loop] = ACTIONS(2549), + [anon_sym_match] = ACTIONS(2549), + [anon_sym_mod] = ACTIONS(2549), + [anon_sym_pub] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_unsafe] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_move] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [sym_integer_literal] = ACTIONS(2547), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2549), + [sym_super] = ACTIONS(2549), + [sym_crate] = ACTIONS(2549), + [sym_metavariable] = ACTIONS(2547), + [sym__raw_string_literal_start] = ACTIONS(2547), + [sym_float_literal] = ACTIONS(2547), + }, + [702] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_macro_rules_BANG] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_u8] = ACTIONS(2553), + [anon_sym_i8] = ACTIONS(2553), + [anon_sym_u16] = ACTIONS(2553), + [anon_sym_i16] = ACTIONS(2553), + [anon_sym_u32] = ACTIONS(2553), + [anon_sym_i32] = ACTIONS(2553), + [anon_sym_u64] = ACTIONS(2553), + [anon_sym_i64] = ACTIONS(2553), + [anon_sym_u128] = ACTIONS(2553), + [anon_sym_i128] = ACTIONS(2553), + [anon_sym_isize] = ACTIONS(2553), + [anon_sym_usize] = ACTIONS(2553), + [anon_sym_f32] = ACTIONS(2553), + [anon_sym_f64] = ACTIONS(2553), + [anon_sym_bool] = ACTIONS(2553), + [anon_sym_str] = ACTIONS(2553), + [anon_sym_char] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_gen] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_impl] = ACTIONS(2553), + [anon_sym_let] = ACTIONS(2553), + [anon_sym_loop] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_mod] = ACTIONS(2553), + [anon_sym_pub] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_unsafe] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_move] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [sym_integer_literal] = ACTIONS(2551), + [aux_sym_string_literal_token1] = ACTIONS(2551), + [sym_char_literal] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2553), + [sym_super] = ACTIONS(2553), + [sym_crate] = ACTIONS(2553), + [sym_metavariable] = ACTIONS(2551), + [sym__raw_string_literal_start] = ACTIONS(2551), + [sym_float_literal] = ACTIONS(2551), + }, + [703] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_macro_rules_BANG] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_u8] = ACTIONS(2557), + [anon_sym_i8] = ACTIONS(2557), + [anon_sym_u16] = ACTIONS(2557), + [anon_sym_i16] = ACTIONS(2557), + [anon_sym_u32] = ACTIONS(2557), + [anon_sym_i32] = ACTIONS(2557), + [anon_sym_u64] = ACTIONS(2557), + [anon_sym_i64] = ACTIONS(2557), + [anon_sym_u128] = ACTIONS(2557), + [anon_sym_i128] = ACTIONS(2557), + [anon_sym_isize] = ACTIONS(2557), + [anon_sym_usize] = ACTIONS(2557), + [anon_sym_f32] = ACTIONS(2557), + [anon_sym_f64] = ACTIONS(2557), + [anon_sym_bool] = ACTIONS(2557), + [anon_sym_str] = ACTIONS(2557), + [anon_sym_char] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_POUND] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_fn] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_gen] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_impl] = ACTIONS(2557), + [anon_sym_let] = ACTIONS(2557), + [anon_sym_loop] = ACTIONS(2557), + [anon_sym_match] = ACTIONS(2557), + [anon_sym_mod] = ACTIONS(2557), + [anon_sym_pub] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_unsafe] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_move] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [sym_integer_literal] = ACTIONS(2555), + [aux_sym_string_literal_token1] = ACTIONS(2555), + [sym_char_literal] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2557), + [sym_super] = ACTIONS(2557), + [sym_crate] = ACTIONS(2557), + [sym_metavariable] = ACTIONS(2555), + [sym__raw_string_literal_start] = ACTIONS(2555), + [sym_float_literal] = ACTIONS(2555), + }, + [704] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_macro_rules_BANG] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_u8] = ACTIONS(2561), + [anon_sym_i8] = ACTIONS(2561), + [anon_sym_u16] = ACTIONS(2561), + [anon_sym_i16] = ACTIONS(2561), + [anon_sym_u32] = ACTIONS(2561), + [anon_sym_i32] = ACTIONS(2561), + [anon_sym_u64] = ACTIONS(2561), + [anon_sym_i64] = ACTIONS(2561), + [anon_sym_u128] = ACTIONS(2561), + [anon_sym_i128] = ACTIONS(2561), + [anon_sym_isize] = ACTIONS(2561), + [anon_sym_usize] = ACTIONS(2561), + [anon_sym_f32] = ACTIONS(2561), + [anon_sym_f64] = ACTIONS(2561), + [anon_sym_bool] = ACTIONS(2561), + [anon_sym_str] = ACTIONS(2561), + [anon_sym_char] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_POUND] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), [anon_sym_default] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2567), - [anon_sym_impl] = ACTIONS(2570), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_fn] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_gen] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_impl] = ACTIONS(2561), + [anon_sym_let] = ACTIONS(2561), + [anon_sym_loop] = ACTIONS(2561), + [anon_sym_match] = ACTIONS(2561), + [anon_sym_mod] = ACTIONS(2561), + [anon_sym_pub] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_unsafe] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_move] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [sym_integer_literal] = ACTIONS(2559), + [aux_sym_string_literal_token1] = ACTIONS(2559), + [sym_char_literal] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2561), + [sym_super] = ACTIONS(2561), + [sym_crate] = ACTIONS(2561), + [sym_metavariable] = ACTIONS(2559), + [sym__raw_string_literal_start] = ACTIONS(2559), + [sym_float_literal] = ACTIONS(2559), + }, + [705] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_macro_rules_BANG] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_u8] = ACTIONS(2565), + [anon_sym_i8] = ACTIONS(2565), + [anon_sym_u16] = ACTIONS(2565), + [anon_sym_i16] = ACTIONS(2565), + [anon_sym_u32] = ACTIONS(2565), + [anon_sym_i32] = ACTIONS(2565), + [anon_sym_u64] = ACTIONS(2565), + [anon_sym_i64] = ACTIONS(2565), + [anon_sym_u128] = ACTIONS(2565), + [anon_sym_i128] = ACTIONS(2565), + [anon_sym_isize] = ACTIONS(2565), + [anon_sym_usize] = ACTIONS(2565), + [anon_sym_f32] = ACTIONS(2565), + [anon_sym_f64] = ACTIONS(2565), + [anon_sym_bool] = ACTIONS(2565), + [anon_sym_str] = ACTIONS(2565), + [anon_sym_char] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_POUND] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_default] = ACTIONS(2565), + [anon_sym_enum] = ACTIONS(2565), + [anon_sym_fn] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_gen] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_impl] = ACTIONS(2565), + [anon_sym_let] = ACTIONS(2565), + [anon_sym_loop] = ACTIONS(2565), + [anon_sym_match] = ACTIONS(2565), + [anon_sym_mod] = ACTIONS(2565), + [anon_sym_pub] = ACTIONS(2565), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2565), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_trait] = ACTIONS(2565), + [anon_sym_type] = ACTIONS(2565), + [anon_sym_union] = ACTIONS(2565), + [anon_sym_unsafe] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_extern] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_move] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [sym_integer_literal] = ACTIONS(2563), + [aux_sym_string_literal_token1] = ACTIONS(2563), + [sym_char_literal] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2565), + [anon_sym_false] = ACTIONS(2565), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2565), + [sym_super] = ACTIONS(2565), + [sym_crate] = ACTIONS(2565), + [sym_metavariable] = ACTIONS(2563), + [sym__raw_string_literal_start] = ACTIONS(2563), + [sym_float_literal] = ACTIONS(2563), + }, + [706] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(2567), + [sym_identifier] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_macro_rules_BANG] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_u8] = ACTIONS(2569), + [anon_sym_i8] = ACTIONS(2569), + [anon_sym_u16] = ACTIONS(2569), + [anon_sym_i16] = ACTIONS(2569), + [anon_sym_u32] = ACTIONS(2569), + [anon_sym_i32] = ACTIONS(2569), + [anon_sym_u64] = ACTIONS(2569), + [anon_sym_i64] = ACTIONS(2569), + [anon_sym_u128] = ACTIONS(2569), + [anon_sym_i128] = ACTIONS(2569), + [anon_sym_isize] = ACTIONS(2569), + [anon_sym_usize] = ACTIONS(2569), + [anon_sym_f32] = ACTIONS(2569), + [anon_sym_f64] = ACTIONS(2569), + [anon_sym_bool] = ACTIONS(2569), + [anon_sym_str] = ACTIONS(2569), + [anon_sym_char] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_POUND] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_default] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_fn] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_gen] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_impl] = ACTIONS(2569), + [anon_sym_let] = ACTIONS(2569), + [anon_sym_loop] = ACTIONS(2569), + [anon_sym_match] = ACTIONS(2569), + [anon_sym_mod] = ACTIONS(2569), + [anon_sym_pub] = ACTIONS(2569), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_unsafe] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_move] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [sym_integer_literal] = ACTIONS(2567), + [aux_sym_string_literal_token1] = ACTIONS(2567), + [sym_char_literal] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2569), + [sym_super] = ACTIONS(2569), + [sym_crate] = ACTIONS(2569), + [sym_metavariable] = ACTIONS(2567), + [sym__raw_string_literal_start] = ACTIONS(2567), + [sym_float_literal] = ACTIONS(2567), + }, + [707] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_macro_rules_BANG] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_u8] = ACTIONS(2573), + [anon_sym_i8] = ACTIONS(2573), + [anon_sym_u16] = ACTIONS(2573), + [anon_sym_i16] = ACTIONS(2573), + [anon_sym_u32] = ACTIONS(2573), + [anon_sym_i32] = ACTIONS(2573), + [anon_sym_u64] = ACTIONS(2573), + [anon_sym_i64] = ACTIONS(2573), + [anon_sym_u128] = ACTIONS(2573), + [anon_sym_i128] = ACTIONS(2573), + [anon_sym_isize] = ACTIONS(2573), + [anon_sym_usize] = ACTIONS(2573), + [anon_sym_f32] = ACTIONS(2573), + [anon_sym_f64] = ACTIONS(2573), + [anon_sym_bool] = ACTIONS(2573), + [anon_sym_str] = ACTIONS(2573), + [anon_sym_char] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_POUND] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_fn] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_gen] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_impl] = ACTIONS(2573), [anon_sym_let] = ACTIONS(2573), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2582), + [anon_sym_loop] = ACTIONS(2573), + [anon_sym_match] = ACTIONS(2573), + [anon_sym_mod] = ACTIONS(2573), + [anon_sym_pub] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_unsafe] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_move] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [sym_integer_literal] = ACTIONS(2571), + [aux_sym_string_literal_token1] = ACTIONS(2571), + [sym_char_literal] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2573), + [sym_super] = ACTIONS(2573), + [sym_crate] = ACTIONS(2573), + [sym_metavariable] = ACTIONS(2571), + [sym__raw_string_literal_start] = ACTIONS(2571), + [sym_float_literal] = ACTIONS(2571), + }, + [708] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_macro_rules_BANG] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2577), + [anon_sym_i8] = ACTIONS(2577), + [anon_sym_u16] = ACTIONS(2577), + [anon_sym_i16] = ACTIONS(2577), + [anon_sym_u32] = ACTIONS(2577), + [anon_sym_i32] = ACTIONS(2577), + [anon_sym_u64] = ACTIONS(2577), + [anon_sym_i64] = ACTIONS(2577), + [anon_sym_u128] = ACTIONS(2577), + [anon_sym_i128] = ACTIONS(2577), + [anon_sym_isize] = ACTIONS(2577), + [anon_sym_usize] = ACTIONS(2577), + [anon_sym_f32] = ACTIONS(2577), + [anon_sym_f64] = ACTIONS(2577), + [anon_sym_bool] = ACTIONS(2577), + [anon_sym_str] = ACTIONS(2577), + [anon_sym_char] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_POUND] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_fn] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_gen] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_impl] = ACTIONS(2577), + [anon_sym_let] = ACTIONS(2577), + [anon_sym_loop] = ACTIONS(2577), + [anon_sym_match] = ACTIONS(2577), + [anon_sym_mod] = ACTIONS(2577), + [anon_sym_pub] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_unsafe] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_move] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [sym_integer_literal] = ACTIONS(2575), + [aux_sym_string_literal_token1] = ACTIONS(2575), + [sym_char_literal] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2577), + [sym_super] = ACTIONS(2577), + [sym_crate] = ACTIONS(2577), + [sym_metavariable] = ACTIONS(2575), + [sym__raw_string_literal_start] = ACTIONS(2575), + [sym_float_literal] = ACTIONS(2575), + }, + [709] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_macro_rules_BANG] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_u8] = ACTIONS(2581), + [anon_sym_i8] = ACTIONS(2581), + [anon_sym_u16] = ACTIONS(2581), + [anon_sym_i16] = ACTIONS(2581), + [anon_sym_u32] = ACTIONS(2581), + [anon_sym_i32] = ACTIONS(2581), + [anon_sym_u64] = ACTIONS(2581), + [anon_sym_i64] = ACTIONS(2581), + [anon_sym_u128] = ACTIONS(2581), + [anon_sym_i128] = ACTIONS(2581), + [anon_sym_isize] = ACTIONS(2581), + [anon_sym_usize] = ACTIONS(2581), + [anon_sym_f32] = ACTIONS(2581), + [anon_sym_f64] = ACTIONS(2581), + [anon_sym_bool] = ACTIONS(2581), + [anon_sym_str] = ACTIONS(2581), + [anon_sym_char] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_POUND] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_fn] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_gen] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_impl] = ACTIONS(2581), + [anon_sym_let] = ACTIONS(2581), + [anon_sym_loop] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_mod] = ACTIONS(2581), + [anon_sym_pub] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_struct] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_union] = ACTIONS(2581), + [anon_sym_unsafe] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_extern] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_move] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2579), + [aux_sym_string_literal_token1] = ACTIONS(2579), + [sym_char_literal] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2581), + [sym_super] = ACTIONS(2581), + [sym_crate] = ACTIONS(2581), + [sym_metavariable] = ACTIONS(2579), + [sym__raw_string_literal_start] = ACTIONS(2579), + [sym_float_literal] = ACTIONS(2579), + }, + [710] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_macro_rules_BANG] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_u8] = ACTIONS(2585), + [anon_sym_i8] = ACTIONS(2585), + [anon_sym_u16] = ACTIONS(2585), + [anon_sym_i16] = ACTIONS(2585), + [anon_sym_u32] = ACTIONS(2585), + [anon_sym_i32] = ACTIONS(2585), + [anon_sym_u64] = ACTIONS(2585), + [anon_sym_i64] = ACTIONS(2585), + [anon_sym_u128] = ACTIONS(2585), + [anon_sym_i128] = ACTIONS(2585), + [anon_sym_isize] = ACTIONS(2585), + [anon_sym_usize] = ACTIONS(2585), + [anon_sym_f32] = ACTIONS(2585), + [anon_sym_f64] = ACTIONS(2585), + [anon_sym_bool] = ACTIONS(2585), + [anon_sym_str] = ACTIONS(2585), + [anon_sym_char] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_POUND] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_fn] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_gen] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_impl] = ACTIONS(2585), + [anon_sym_let] = ACTIONS(2585), + [anon_sym_loop] = ACTIONS(2585), + [anon_sym_match] = ACTIONS(2585), + [anon_sym_mod] = ACTIONS(2585), + [anon_sym_pub] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), [anon_sym_struct] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2594), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_extern] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_move] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [sym_integer_literal] = ACTIONS(2583), + [aux_sym_string_literal_token1] = ACTIONS(2583), + [sym_char_literal] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2585), + [sym_super] = ACTIONS(2585), + [sym_crate] = ACTIONS(2585), + [sym_metavariable] = ACTIONS(2583), + [sym__raw_string_literal_start] = ACTIONS(2583), + [sym_float_literal] = ACTIONS(2583), + }, + [711] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_macro_rules_BANG] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_u8] = ACTIONS(2589), + [anon_sym_i8] = ACTIONS(2589), + [anon_sym_u16] = ACTIONS(2589), + [anon_sym_i16] = ACTIONS(2589), + [anon_sym_u32] = ACTIONS(2589), + [anon_sym_i32] = ACTIONS(2589), + [anon_sym_u64] = ACTIONS(2589), + [anon_sym_i64] = ACTIONS(2589), + [anon_sym_u128] = ACTIONS(2589), + [anon_sym_i128] = ACTIONS(2589), + [anon_sym_isize] = ACTIONS(2589), + [anon_sym_usize] = ACTIONS(2589), + [anon_sym_f32] = ACTIONS(2589), + [anon_sym_f64] = ACTIONS(2589), + [anon_sym_bool] = ACTIONS(2589), + [anon_sym_str] = ACTIONS(2589), + [anon_sym_char] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2587), + [anon_sym_DOT_DOT] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_POUND] = ACTIONS(2587), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_gen] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_impl] = ACTIONS(2589), + [anon_sym_let] = ACTIONS(2589), + [anon_sym_loop] = ACTIONS(2589), + [anon_sym_match] = ACTIONS(2589), + [anon_sym_mod] = ACTIONS(2589), + [anon_sym_pub] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_unsafe] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_move] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [sym_integer_literal] = ACTIONS(2587), + [aux_sym_string_literal_token1] = ACTIONS(2587), + [sym_char_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2589), + [sym_super] = ACTIONS(2589), + [sym_crate] = ACTIONS(2589), + [sym_metavariable] = ACTIONS(2587), + [sym__raw_string_literal_start] = ACTIONS(2587), + [sym_float_literal] = ACTIONS(2587), + }, + [712] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_identifier] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_macro_rules_BANG] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_u8] = ACTIONS(2593), + [anon_sym_i8] = ACTIONS(2593), + [anon_sym_u16] = ACTIONS(2593), + [anon_sym_i16] = ACTIONS(2593), + [anon_sym_u32] = ACTIONS(2593), + [anon_sym_i32] = ACTIONS(2593), + [anon_sym_u64] = ACTIONS(2593), + [anon_sym_i64] = ACTIONS(2593), + [anon_sym_u128] = ACTIONS(2593), + [anon_sym_i128] = ACTIONS(2593), + [anon_sym_isize] = ACTIONS(2593), + [anon_sym_usize] = ACTIONS(2593), + [anon_sym_f32] = ACTIONS(2593), + [anon_sym_f64] = ACTIONS(2593), + [anon_sym_bool] = ACTIONS(2593), + [anon_sym_str] = ACTIONS(2593), + [anon_sym_char] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_DOT_DOT] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_fn] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_gen] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_impl] = ACTIONS(2593), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_loop] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_mod] = ACTIONS(2593), + [anon_sym_pub] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_unsafe] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_move] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2591), + [aux_sym_string_literal_token1] = ACTIONS(2591), + [sym_char_literal] = ACTIONS(2591), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2593), + [sym_super] = ACTIONS(2593), + [sym_crate] = ACTIONS(2593), + [sym_metavariable] = ACTIONS(2591), + [sym__raw_string_literal_start] = ACTIONS(2591), + [sym_float_literal] = ACTIONS(2591), + }, + [713] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_macro_rules_BANG] = ACTIONS(2595), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_u8] = ACTIONS(2597), + [anon_sym_i8] = ACTIONS(2597), + [anon_sym_u16] = ACTIONS(2597), + [anon_sym_i16] = ACTIONS(2597), + [anon_sym_u32] = ACTIONS(2597), + [anon_sym_i32] = ACTIONS(2597), + [anon_sym_u64] = ACTIONS(2597), + [anon_sym_i64] = ACTIONS(2597), + [anon_sym_u128] = ACTIONS(2597), + [anon_sym_i128] = ACTIONS(2597), + [anon_sym_isize] = ACTIONS(2597), + [anon_sym_usize] = ACTIONS(2597), + [anon_sym_f32] = ACTIONS(2597), + [anon_sym_f64] = ACTIONS(2597), + [anon_sym_bool] = ACTIONS(2597), + [anon_sym_str] = ACTIONS(2597), + [anon_sym_char] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_POUND] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_default] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_fn] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_gen] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_impl] = ACTIONS(2597), + [anon_sym_let] = ACTIONS(2597), + [anon_sym_loop] = ACTIONS(2597), + [anon_sym_match] = ACTIONS(2597), + [anon_sym_mod] = ACTIONS(2597), + [anon_sym_pub] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_struct] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_union] = ACTIONS(2597), [anon_sym_unsafe] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_extern] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_move] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [sym_integer_literal] = ACTIONS(2595), + [aux_sym_string_literal_token1] = ACTIONS(2595), + [sym_char_literal] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2597), + [sym_super] = ACTIONS(2597), + [sym_crate] = ACTIONS(2597), + [sym_metavariable] = ACTIONS(2595), + [sym__raw_string_literal_start] = ACTIONS(2595), + [sym_float_literal] = ACTIONS(2595), + }, + [714] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_macro_rules_BANG] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_u8] = ACTIONS(2601), + [anon_sym_i8] = ACTIONS(2601), + [anon_sym_u16] = ACTIONS(2601), + [anon_sym_i16] = ACTIONS(2601), + [anon_sym_u32] = ACTIONS(2601), + [anon_sym_i32] = ACTIONS(2601), + [anon_sym_u64] = ACTIONS(2601), + [anon_sym_i64] = ACTIONS(2601), + [anon_sym_u128] = ACTIONS(2601), + [anon_sym_i128] = ACTIONS(2601), + [anon_sym_isize] = ACTIONS(2601), + [anon_sym_usize] = ACTIONS(2601), + [anon_sym_f32] = ACTIONS(2601), + [anon_sym_f64] = ACTIONS(2601), + [anon_sym_bool] = ACTIONS(2601), + [anon_sym_str] = ACTIONS(2601), + [anon_sym_char] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_DOT_DOT] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2599), + [anon_sym_POUND] = ACTIONS(2599), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_default] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_fn] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_gen] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_impl] = ACTIONS(2601), + [anon_sym_let] = ACTIONS(2601), + [anon_sym_loop] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_mod] = ACTIONS(2601), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_struct] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(2601), + [anon_sym_unsafe] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_extern] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_move] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [sym_integer_literal] = ACTIONS(2599), + [aux_sym_string_literal_token1] = ACTIONS(2599), + [sym_char_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2601), + [sym_super] = ACTIONS(2601), + [sym_crate] = ACTIONS(2601), + [sym_metavariable] = ACTIONS(2599), + [sym__raw_string_literal_start] = ACTIONS(2599), + [sym_float_literal] = ACTIONS(2599), + }, + [715] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_macro_rules_BANG] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_u8] = ACTIONS(2605), + [anon_sym_i8] = ACTIONS(2605), + [anon_sym_u16] = ACTIONS(2605), + [anon_sym_i16] = ACTIONS(2605), + [anon_sym_u32] = ACTIONS(2605), + [anon_sym_i32] = ACTIONS(2605), + [anon_sym_u64] = ACTIONS(2605), + [anon_sym_i64] = ACTIONS(2605), + [anon_sym_u128] = ACTIONS(2605), + [anon_sym_i128] = ACTIONS(2605), + [anon_sym_isize] = ACTIONS(2605), + [anon_sym_usize] = ACTIONS(2605), + [anon_sym_f32] = ACTIONS(2605), + [anon_sym_f64] = ACTIONS(2605), + [anon_sym_bool] = ACTIONS(2605), + [anon_sym_str] = ACTIONS(2605), + [anon_sym_char] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_PIPE] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2603), + [anon_sym_DOT_DOT] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2603), + [anon_sym_POUND] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_fn] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_gen] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_impl] = ACTIONS(2605), + [anon_sym_let] = ACTIONS(2605), + [anon_sym_loop] = ACTIONS(2605), + [anon_sym_match] = ACTIONS(2605), + [anon_sym_mod] = ACTIONS(2605), + [anon_sym_pub] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_unsafe] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_move] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [sym_integer_literal] = ACTIONS(2603), + [aux_sym_string_literal_token1] = ACTIONS(2603), + [sym_char_literal] = ACTIONS(2603), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2605), + [sym_super] = ACTIONS(2605), + [sym_crate] = ACTIONS(2605), + [sym_metavariable] = ACTIONS(2603), + [sym__raw_string_literal_start] = ACTIONS(2603), + [sym_float_literal] = ACTIONS(2603), + }, + [716] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_macro_rules_BANG] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_u8] = ACTIONS(2609), + [anon_sym_i8] = ACTIONS(2609), + [anon_sym_u16] = ACTIONS(2609), + [anon_sym_i16] = ACTIONS(2609), + [anon_sym_u32] = ACTIONS(2609), + [anon_sym_i32] = ACTIONS(2609), + [anon_sym_u64] = ACTIONS(2609), + [anon_sym_i64] = ACTIONS(2609), + [anon_sym_u128] = ACTIONS(2609), + [anon_sym_i128] = ACTIONS(2609), + [anon_sym_isize] = ACTIONS(2609), + [anon_sym_usize] = ACTIONS(2609), + [anon_sym_f32] = ACTIONS(2609), + [anon_sym_f64] = ACTIONS(2609), + [anon_sym_bool] = ACTIONS(2609), + [anon_sym_str] = ACTIONS(2609), + [anon_sym_char] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_PIPE] = ACTIONS(2607), + [anon_sym_LT] = ACTIONS(2607), + [anon_sym_DOT_DOT] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_POUND] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_default] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_gen] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_impl] = ACTIONS(2609), + [anon_sym_let] = ACTIONS(2609), + [anon_sym_loop] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2609), + [anon_sym_mod] = ACTIONS(2609), + [anon_sym_pub] = ACTIONS(2609), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_struct] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_union] = ACTIONS(2609), + [anon_sym_unsafe] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_extern] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_move] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [sym_integer_literal] = ACTIONS(2607), + [aux_sym_string_literal_token1] = ACTIONS(2607), + [sym_char_literal] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2609), + [sym_super] = ACTIONS(2609), [sym_crate] = ACTIONS(2609), - [sym_metavariable] = ACTIONS(2612), + [sym_metavariable] = ACTIONS(2607), + [sym__raw_string_literal_start] = ACTIONS(2607), + [sym_float_literal] = ACTIONS(2607), }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), + [717] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_macro_rules_BANG] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_u8] = ACTIONS(2613), + [anon_sym_i8] = ACTIONS(2613), + [anon_sym_u16] = ACTIONS(2613), + [anon_sym_i16] = ACTIONS(2613), + [anon_sym_u32] = ACTIONS(2613), + [anon_sym_i32] = ACTIONS(2613), + [anon_sym_u64] = ACTIONS(2613), + [anon_sym_i64] = ACTIONS(2613), + [anon_sym_u128] = ACTIONS(2613), + [anon_sym_i128] = ACTIONS(2613), + [anon_sym_isize] = ACTIONS(2613), + [anon_sym_usize] = ACTIONS(2613), + [anon_sym_f32] = ACTIONS(2613), + [anon_sym_f64] = ACTIONS(2613), + [anon_sym_bool] = ACTIONS(2613), + [anon_sym_str] = ACTIONS(2613), + [anon_sym_char] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_POUND] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_default] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_fn] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_gen] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_impl] = ACTIONS(2613), + [anon_sym_let] = ACTIONS(2613), + [anon_sym_loop] = ACTIONS(2613), + [anon_sym_match] = ACTIONS(2613), + [anon_sym_mod] = ACTIONS(2613), + [anon_sym_pub] = ACTIONS(2613), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_struct] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_union] = ACTIONS(2613), + [anon_sym_unsafe] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_extern] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_move] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [sym_integer_literal] = ACTIONS(2611), + [aux_sym_string_literal_token1] = ACTIONS(2611), + [sym_char_literal] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2613), + [sym_super] = ACTIONS(2613), + [sym_crate] = ACTIONS(2613), + [sym_metavariable] = ACTIONS(2611), + [sym__raw_string_literal_start] = ACTIONS(2611), + [sym_float_literal] = ACTIONS(2611), + }, + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), [ts_builtin_sym_end] = ACTIONS(2615), [sym_identifier] = ACTIONS(2617), [anon_sym_SEMI] = ACTIONS(2615), @@ -85691,6 +88703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2617), [anon_sym_fn] = ACTIONS(2617), [anon_sym_for] = ACTIONS(2617), + [anon_sym_gen] = ACTIONS(2617), [anon_sym_if] = ACTIONS(2617), [anon_sym_impl] = ACTIONS(2617), [anon_sym_let] = ACTIONS(2617), @@ -85716,8 +88729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2615), [anon_sym_true] = ACTIONS(2617), [anon_sym_false] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2617), [sym_super] = ACTIONS(2617), [sym_crate] = ACTIONS(2617), @@ -85725,9 +88738,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2615), [sym_float_literal] = ACTIONS(2615), }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [719] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2619), [sym_identifier] = ACTIONS(2621), [anon_sym_SEMI] = ACTIONS(2619), @@ -85771,6 +88784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2621), [anon_sym_fn] = ACTIONS(2621), [anon_sym_for] = ACTIONS(2621), + [anon_sym_gen] = ACTIONS(2621), [anon_sym_if] = ACTIONS(2621), [anon_sym_impl] = ACTIONS(2621), [anon_sym_let] = ACTIONS(2621), @@ -85796,8 +88810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2619), [anon_sym_true] = ACTIONS(2621), [anon_sym_false] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2621), [sym_super] = ACTIONS(2621), [sym_crate] = ACTIONS(2621), @@ -85805,9 +88819,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2619), [sym_float_literal] = ACTIONS(2619), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [720] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2623), [sym_identifier] = ACTIONS(2625), [anon_sym_SEMI] = ACTIONS(2623), @@ -85851,6 +88865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2625), [anon_sym_fn] = ACTIONS(2625), [anon_sym_for] = ACTIONS(2625), + [anon_sym_gen] = ACTIONS(2625), [anon_sym_if] = ACTIONS(2625), [anon_sym_impl] = ACTIONS(2625), [anon_sym_let] = ACTIONS(2625), @@ -85876,8 +88891,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2623), [anon_sym_true] = ACTIONS(2625), [anon_sym_false] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2625), [sym_super] = ACTIONS(2625), [sym_crate] = ACTIONS(2625), @@ -85885,9 +88900,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2623), [sym_float_literal] = ACTIONS(2623), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [721] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2627), [sym_identifier] = ACTIONS(2629), [anon_sym_SEMI] = ACTIONS(2627), @@ -85931,6 +88946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2629), [anon_sym_fn] = ACTIONS(2629), [anon_sym_for] = ACTIONS(2629), + [anon_sym_gen] = ACTIONS(2629), [anon_sym_if] = ACTIONS(2629), [anon_sym_impl] = ACTIONS(2629), [anon_sym_let] = ACTIONS(2629), @@ -85956,8 +88972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2627), [anon_sym_true] = ACTIONS(2629), [anon_sym_false] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2629), [sym_super] = ACTIONS(2629), [sym_crate] = ACTIONS(2629), @@ -85965,9 +88981,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2627), [sym_float_literal] = ACTIONS(2627), }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [722] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2631), [sym_identifier] = ACTIONS(2633), [anon_sym_SEMI] = ACTIONS(2631), @@ -86011,6 +89027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2633), [anon_sym_fn] = ACTIONS(2633), [anon_sym_for] = ACTIONS(2633), + [anon_sym_gen] = ACTIONS(2633), [anon_sym_if] = ACTIONS(2633), [anon_sym_impl] = ACTIONS(2633), [anon_sym_let] = ACTIONS(2633), @@ -86036,8 +89053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2631), [anon_sym_true] = ACTIONS(2633), [anon_sym_false] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2633), [sym_super] = ACTIONS(2633), [sym_crate] = ACTIONS(2633), @@ -86045,22499 +89062,20845 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2631), [sym_float_literal] = ACTIONS(2631), }, - [698] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), - }, - [699] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2637), - [sym_identifier] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_macro_rules_BANG] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_u8] = ACTIONS(2639), - [anon_sym_i8] = ACTIONS(2639), - [anon_sym_u16] = ACTIONS(2639), - [anon_sym_i16] = ACTIONS(2639), - [anon_sym_u32] = ACTIONS(2639), - [anon_sym_i32] = ACTIONS(2639), - [anon_sym_u64] = ACTIONS(2639), - [anon_sym_i64] = ACTIONS(2639), - [anon_sym_u128] = ACTIONS(2639), - [anon_sym_i128] = ACTIONS(2639), - [anon_sym_isize] = ACTIONS(2639), - [anon_sym_usize] = ACTIONS(2639), - [anon_sym_f32] = ACTIONS(2639), - [anon_sym_f64] = ACTIONS(2639), - [anon_sym_bool] = ACTIONS(2639), - [anon_sym_str] = ACTIONS(2639), - [anon_sym_char] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_async] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_fn] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_impl] = ACTIONS(2639), - [anon_sym_let] = ACTIONS(2639), - [anon_sym_loop] = ACTIONS(2639), - [anon_sym_match] = ACTIONS(2639), - [anon_sym_mod] = ACTIONS(2639), - [anon_sym_pub] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_trait] = ACTIONS(2639), - [anon_sym_type] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_unsafe] = ACTIONS(2639), - [anon_sym_use] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym_yield] = ACTIONS(2639), - [anon_sym_move] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2637), - [aux_sym_string_literal_token1] = ACTIONS(2637), - [sym_char_literal] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2639), - [anon_sym_false] = ACTIONS(2639), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2639), - [sym_super] = ACTIONS(2639), - [sym_crate] = ACTIONS(2639), - [sym_metavariable] = ACTIONS(2637), - [sym__raw_string_literal_start] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - }, - [700] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_macro_rules_BANG] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_u8] = ACTIONS(2643), - [anon_sym_i8] = ACTIONS(2643), - [anon_sym_u16] = ACTIONS(2643), - [anon_sym_i16] = ACTIONS(2643), - [anon_sym_u32] = ACTIONS(2643), - [anon_sym_i32] = ACTIONS(2643), - [anon_sym_u64] = ACTIONS(2643), - [anon_sym_i64] = ACTIONS(2643), - [anon_sym_u128] = ACTIONS(2643), - [anon_sym_i128] = ACTIONS(2643), - [anon_sym_isize] = ACTIONS(2643), - [anon_sym_usize] = ACTIONS(2643), - [anon_sym_f32] = ACTIONS(2643), - [anon_sym_f64] = ACTIONS(2643), - [anon_sym_bool] = ACTIONS(2643), - [anon_sym_str] = ACTIONS(2643), - [anon_sym_char] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_async] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_impl] = ACTIONS(2643), - [anon_sym_let] = ACTIONS(2643), - [anon_sym_loop] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_mod] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_trait] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_use] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym_yield] = ACTIONS(2643), - [anon_sym_move] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [sym_integer_literal] = ACTIONS(2641), - [aux_sym_string_literal_token1] = ACTIONS(2641), - [sym_char_literal] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2643), - [sym_super] = ACTIONS(2643), - [sym_crate] = ACTIONS(2643), - [sym_metavariable] = ACTIONS(2641), - [sym__raw_string_literal_start] = ACTIONS(2641), - [sym_float_literal] = ACTIONS(2641), - }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_macro_rules_BANG] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_u8] = ACTIONS(2647), - [anon_sym_i8] = ACTIONS(2647), - [anon_sym_u16] = ACTIONS(2647), - [anon_sym_i16] = ACTIONS(2647), - [anon_sym_u32] = ACTIONS(2647), - [anon_sym_i32] = ACTIONS(2647), - [anon_sym_u64] = ACTIONS(2647), - [anon_sym_i64] = ACTIONS(2647), - [anon_sym_u128] = ACTIONS(2647), - [anon_sym_i128] = ACTIONS(2647), - [anon_sym_isize] = ACTIONS(2647), - [anon_sym_usize] = ACTIONS(2647), - [anon_sym_f32] = ACTIONS(2647), - [anon_sym_f64] = ACTIONS(2647), - [anon_sym_bool] = ACTIONS(2647), - [anon_sym_str] = ACTIONS(2647), - [anon_sym_char] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_DOT_DOT] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_POUND] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_async] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_impl] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_loop] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_mod] = ACTIONS(2647), - [anon_sym_pub] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_trait] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_move] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [sym_integer_literal] = ACTIONS(2645), - [aux_sym_string_literal_token1] = ACTIONS(2645), - [sym_char_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2647), - [anon_sym_false] = ACTIONS(2647), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2647), - [sym_super] = ACTIONS(2647), - [sym_crate] = ACTIONS(2647), - [sym_metavariable] = ACTIONS(2645), - [sym__raw_string_literal_start] = ACTIONS(2645), - [sym_float_literal] = ACTIONS(2645), - }, - [702] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_macro_rules_BANG] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_u8] = ACTIONS(2651), - [anon_sym_i8] = ACTIONS(2651), - [anon_sym_u16] = ACTIONS(2651), - [anon_sym_i16] = ACTIONS(2651), - [anon_sym_u32] = ACTIONS(2651), - [anon_sym_i32] = ACTIONS(2651), - [anon_sym_u64] = ACTIONS(2651), - [anon_sym_i64] = ACTIONS(2651), - [anon_sym_u128] = ACTIONS(2651), - [anon_sym_i128] = ACTIONS(2651), - [anon_sym_isize] = ACTIONS(2651), - [anon_sym_usize] = ACTIONS(2651), - [anon_sym_f32] = ACTIONS(2651), - [anon_sym_f64] = ACTIONS(2651), - [anon_sym_bool] = ACTIONS(2651), - [anon_sym_str] = ACTIONS(2651), - [anon_sym_char] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_async] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_impl] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_loop] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_mod] = ACTIONS(2651), - [anon_sym_pub] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_trait] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_move] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [sym_integer_literal] = ACTIONS(2649), - [aux_sym_string_literal_token1] = ACTIONS(2649), - [sym_char_literal] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2651), - [anon_sym_false] = ACTIONS(2651), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2651), - [sym_super] = ACTIONS(2651), - [sym_crate] = ACTIONS(2651), - [sym_metavariable] = ACTIONS(2649), - [sym__raw_string_literal_start] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_macro_rules_BANG] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_u8] = ACTIONS(2655), - [anon_sym_i8] = ACTIONS(2655), - [anon_sym_u16] = ACTIONS(2655), - [anon_sym_i16] = ACTIONS(2655), - [anon_sym_u32] = ACTIONS(2655), - [anon_sym_i32] = ACTIONS(2655), - [anon_sym_u64] = ACTIONS(2655), - [anon_sym_i64] = ACTIONS(2655), - [anon_sym_u128] = ACTIONS(2655), - [anon_sym_i128] = ACTIONS(2655), - [anon_sym_isize] = ACTIONS(2655), - [anon_sym_usize] = ACTIONS(2655), - [anon_sym_f32] = ACTIONS(2655), - [anon_sym_f64] = ACTIONS(2655), - [anon_sym_bool] = ACTIONS(2655), - [anon_sym_str] = ACTIONS(2655), - [anon_sym_char] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_POUND] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_impl] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2655), - [anon_sym_loop] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_mod] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_trait] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_use] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym_yield] = ACTIONS(2655), - [anon_sym_move] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [aux_sym_string_literal_token1] = ACTIONS(2653), - [sym_char_literal] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2655), - [anon_sym_false] = ACTIONS(2655), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2655), - [sym_super] = ACTIONS(2655), - [sym_crate] = ACTIONS(2655), - [sym_metavariable] = ACTIONS(2653), - [sym__raw_string_literal_start] = ACTIONS(2653), - [sym_float_literal] = ACTIONS(2653), - }, - [704] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_macro_rules_BANG] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_u8] = ACTIONS(2659), - [anon_sym_i8] = ACTIONS(2659), - [anon_sym_u16] = ACTIONS(2659), - [anon_sym_i16] = ACTIONS(2659), - [anon_sym_u32] = ACTIONS(2659), - [anon_sym_i32] = ACTIONS(2659), - [anon_sym_u64] = ACTIONS(2659), - [anon_sym_i64] = ACTIONS(2659), - [anon_sym_u128] = ACTIONS(2659), - [anon_sym_i128] = ACTIONS(2659), - [anon_sym_isize] = ACTIONS(2659), - [anon_sym_usize] = ACTIONS(2659), - [anon_sym_f32] = ACTIONS(2659), - [anon_sym_f64] = ACTIONS(2659), - [anon_sym_bool] = ACTIONS(2659), - [anon_sym_str] = ACTIONS(2659), - [anon_sym_char] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_POUND] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_async] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_impl] = ACTIONS(2659), - [anon_sym_let] = ACTIONS(2659), - [anon_sym_loop] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_mod] = ACTIONS(2659), - [anon_sym_pub] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_trait] = ACTIONS(2659), - [anon_sym_type] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_use] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym_yield] = ACTIONS(2659), - [anon_sym_move] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [aux_sym_string_literal_token1] = ACTIONS(2657), - [sym_char_literal] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2659), - [sym_super] = ACTIONS(2659), - [sym_crate] = ACTIONS(2659), - [sym_metavariable] = ACTIONS(2657), - [sym__raw_string_literal_start] = ACTIONS(2657), - [sym_float_literal] = ACTIONS(2657), - }, - [705] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_macro_rules_BANG] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_u8] = ACTIONS(2663), - [anon_sym_i8] = ACTIONS(2663), - [anon_sym_u16] = ACTIONS(2663), - [anon_sym_i16] = ACTIONS(2663), - [anon_sym_u32] = ACTIONS(2663), - [anon_sym_i32] = ACTIONS(2663), - [anon_sym_u64] = ACTIONS(2663), - [anon_sym_i64] = ACTIONS(2663), - [anon_sym_u128] = ACTIONS(2663), - [anon_sym_i128] = ACTIONS(2663), - [anon_sym_isize] = ACTIONS(2663), - [anon_sym_usize] = ACTIONS(2663), - [anon_sym_f32] = ACTIONS(2663), - [anon_sym_f64] = ACTIONS(2663), - [anon_sym_bool] = ACTIONS(2663), - [anon_sym_str] = ACTIONS(2663), - [anon_sym_char] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_POUND] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_async] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_impl] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_loop] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_mod] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_trait] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_use] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_yield] = ACTIONS(2663), - [anon_sym_move] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [sym_integer_literal] = ACTIONS(2661), - [aux_sym_string_literal_token1] = ACTIONS(2661), - [sym_char_literal] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2663), - [sym_super] = ACTIONS(2663), - [sym_crate] = ACTIONS(2663), - [sym_metavariable] = ACTIONS(2661), - [sym__raw_string_literal_start] = ACTIONS(2661), - [sym_float_literal] = ACTIONS(2661), - }, - [706] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_macro_rules_BANG] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_u8] = ACTIONS(2667), - [anon_sym_i8] = ACTIONS(2667), - [anon_sym_u16] = ACTIONS(2667), - [anon_sym_i16] = ACTIONS(2667), - [anon_sym_u32] = ACTIONS(2667), - [anon_sym_i32] = ACTIONS(2667), - [anon_sym_u64] = ACTIONS(2667), - [anon_sym_i64] = ACTIONS(2667), - [anon_sym_u128] = ACTIONS(2667), - [anon_sym_i128] = ACTIONS(2667), - [anon_sym_isize] = ACTIONS(2667), - [anon_sym_usize] = ACTIONS(2667), - [anon_sym_f32] = ACTIONS(2667), - [anon_sym_f64] = ACTIONS(2667), - [anon_sym_bool] = ACTIONS(2667), - [anon_sym_str] = ACTIONS(2667), - [anon_sym_char] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_DOT_DOT] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_POUND] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_async] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_impl] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_loop] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_mod] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_trait] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_move] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [aux_sym_string_literal_token1] = ACTIONS(2665), - [sym_char_literal] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2667), - [sym_super] = ACTIONS(2667), - [sym_crate] = ACTIONS(2667), - [sym_metavariable] = ACTIONS(2665), - [sym__raw_string_literal_start] = ACTIONS(2665), - [sym_float_literal] = ACTIONS(2665), - }, - [707] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_macro_rules_BANG] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_u8] = ACTIONS(2671), - [anon_sym_i8] = ACTIONS(2671), - [anon_sym_u16] = ACTIONS(2671), - [anon_sym_i16] = ACTIONS(2671), - [anon_sym_u32] = ACTIONS(2671), - [anon_sym_i32] = ACTIONS(2671), - [anon_sym_u64] = ACTIONS(2671), - [anon_sym_i64] = ACTIONS(2671), - [anon_sym_u128] = ACTIONS(2671), - [anon_sym_i128] = ACTIONS(2671), - [anon_sym_isize] = ACTIONS(2671), - [anon_sym_usize] = ACTIONS(2671), - [anon_sym_f32] = ACTIONS(2671), - [anon_sym_f64] = ACTIONS(2671), - [anon_sym_bool] = ACTIONS(2671), - [anon_sym_str] = ACTIONS(2671), - [anon_sym_char] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_impl] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2671), - [anon_sym_loop] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_mod] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_trait] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym_yield] = ACTIONS(2671), - [anon_sym_move] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [sym_integer_literal] = ACTIONS(2669), - [aux_sym_string_literal_token1] = ACTIONS(2669), - [sym_char_literal] = ACTIONS(2669), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2671), - [sym_super] = ACTIONS(2671), - [sym_crate] = ACTIONS(2671), - [sym_metavariable] = ACTIONS(2669), - [sym__raw_string_literal_start] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - }, - [708] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2673), - [sym_identifier] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_macro_rules_BANG] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_u8] = ACTIONS(2675), - [anon_sym_i8] = ACTIONS(2675), - [anon_sym_u16] = ACTIONS(2675), - [anon_sym_i16] = ACTIONS(2675), - [anon_sym_u32] = ACTIONS(2675), - [anon_sym_i32] = ACTIONS(2675), - [anon_sym_u64] = ACTIONS(2675), - [anon_sym_i64] = ACTIONS(2675), - [anon_sym_u128] = ACTIONS(2675), - [anon_sym_i128] = ACTIONS(2675), - [anon_sym_isize] = ACTIONS(2675), - [anon_sym_usize] = ACTIONS(2675), - [anon_sym_f32] = ACTIONS(2675), - [anon_sym_f64] = ACTIONS(2675), - [anon_sym_bool] = ACTIONS(2675), - [anon_sym_str] = ACTIONS(2675), - [anon_sym_char] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_DOT_DOT] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_POUND] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_async] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_fn] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_impl] = ACTIONS(2675), - [anon_sym_let] = ACTIONS(2675), - [anon_sym_loop] = ACTIONS(2675), - [anon_sym_match] = ACTIONS(2675), - [anon_sym_mod] = ACTIONS(2675), - [anon_sym_pub] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_trait] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_unsafe] = ACTIONS(2675), - [anon_sym_use] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym_yield] = ACTIONS(2675), - [anon_sym_move] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [sym_integer_literal] = ACTIONS(2673), - [aux_sym_string_literal_token1] = ACTIONS(2673), - [sym_char_literal] = ACTIONS(2673), - [anon_sym_true] = ACTIONS(2675), - [anon_sym_false] = ACTIONS(2675), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2675), - [sym_super] = ACTIONS(2675), - [sym_crate] = ACTIONS(2675), - [sym_metavariable] = ACTIONS(2673), - [sym__raw_string_literal_start] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), - }, - [709] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2677), - [sym_identifier] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_macro_rules_BANG] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_u8] = ACTIONS(2679), - [anon_sym_i8] = ACTIONS(2679), - [anon_sym_u16] = ACTIONS(2679), - [anon_sym_i16] = ACTIONS(2679), - [anon_sym_u32] = ACTIONS(2679), - [anon_sym_i32] = ACTIONS(2679), - [anon_sym_u64] = ACTIONS(2679), - [anon_sym_i64] = ACTIONS(2679), - [anon_sym_u128] = ACTIONS(2679), - [anon_sym_i128] = ACTIONS(2679), - [anon_sym_isize] = ACTIONS(2679), - [anon_sym_usize] = ACTIONS(2679), - [anon_sym_f32] = ACTIONS(2679), - [anon_sym_f64] = ACTIONS(2679), - [anon_sym_bool] = ACTIONS(2679), - [anon_sym_str] = ACTIONS(2679), - [anon_sym_char] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_DOT_DOT] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_POUND] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_async] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_fn] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_impl] = ACTIONS(2679), - [anon_sym_let] = ACTIONS(2679), - [anon_sym_loop] = ACTIONS(2679), - [anon_sym_match] = ACTIONS(2679), - [anon_sym_mod] = ACTIONS(2679), - [anon_sym_pub] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_trait] = ACTIONS(2679), - [anon_sym_type] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_unsafe] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2679), - [anon_sym_move] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [sym_integer_literal] = ACTIONS(2677), - [aux_sym_string_literal_token1] = ACTIONS(2677), - [sym_char_literal] = ACTIONS(2677), - [anon_sym_true] = ACTIONS(2679), - [anon_sym_false] = ACTIONS(2679), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2679), - [sym_super] = ACTIONS(2679), - [sym_crate] = ACTIONS(2679), - [sym_metavariable] = ACTIONS(2677), - [sym__raw_string_literal_start] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), - }, - [710] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_macro_rules_BANG] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_u8] = ACTIONS(2683), - [anon_sym_i8] = ACTIONS(2683), - [anon_sym_u16] = ACTIONS(2683), - [anon_sym_i16] = ACTIONS(2683), - [anon_sym_u32] = ACTIONS(2683), - [anon_sym_i32] = ACTIONS(2683), - [anon_sym_u64] = ACTIONS(2683), - [anon_sym_i64] = ACTIONS(2683), - [anon_sym_u128] = ACTIONS(2683), - [anon_sym_i128] = ACTIONS(2683), - [anon_sym_isize] = ACTIONS(2683), - [anon_sym_usize] = ACTIONS(2683), - [anon_sym_f32] = ACTIONS(2683), - [anon_sym_f64] = ACTIONS(2683), - [anon_sym_bool] = ACTIONS(2683), - [anon_sym_str] = ACTIONS(2683), - [anon_sym_char] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_fn] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_impl] = ACTIONS(2683), - [anon_sym_let] = ACTIONS(2683), - [anon_sym_loop] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2683), - [anon_sym_mod] = ACTIONS(2683), - [anon_sym_pub] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_trait] = ACTIONS(2683), - [anon_sym_type] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_unsafe] = ACTIONS(2683), - [anon_sym_use] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2683), - [anon_sym_move] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2681), - [aux_sym_string_literal_token1] = ACTIONS(2681), - [sym_char_literal] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2683), - [anon_sym_false] = ACTIONS(2683), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2683), - [sym_super] = ACTIONS(2683), - [sym_crate] = ACTIONS(2683), - [sym_metavariable] = ACTIONS(2681), - [sym__raw_string_literal_start] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), - }, - [711] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_macro_rules_BANG] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_u8] = ACTIONS(2687), - [anon_sym_i8] = ACTIONS(2687), - [anon_sym_u16] = ACTIONS(2687), - [anon_sym_i16] = ACTIONS(2687), - [anon_sym_u32] = ACTIONS(2687), - [anon_sym_i32] = ACTIONS(2687), - [anon_sym_u64] = ACTIONS(2687), - [anon_sym_i64] = ACTIONS(2687), - [anon_sym_u128] = ACTIONS(2687), - [anon_sym_i128] = ACTIONS(2687), - [anon_sym_isize] = ACTIONS(2687), - [anon_sym_usize] = ACTIONS(2687), - [anon_sym_f32] = ACTIONS(2687), - [anon_sym_f64] = ACTIONS(2687), - [anon_sym_bool] = ACTIONS(2687), - [anon_sym_str] = ACTIONS(2687), - [anon_sym_char] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_DOT_DOT] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_impl] = ACTIONS(2687), - [anon_sym_let] = ACTIONS(2687), - [anon_sym_loop] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_mod] = ACTIONS(2687), - [anon_sym_pub] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_trait] = ACTIONS(2687), - [anon_sym_type] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_use] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym_yield] = ACTIONS(2687), - [anon_sym_move] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [sym_integer_literal] = ACTIONS(2685), - [aux_sym_string_literal_token1] = ACTIONS(2685), - [sym_char_literal] = ACTIONS(2685), - [anon_sym_true] = ACTIONS(2687), - [anon_sym_false] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2687), - [sym_super] = ACTIONS(2687), - [sym_crate] = ACTIONS(2687), - [sym_metavariable] = ACTIONS(2685), - [sym__raw_string_literal_start] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - }, - [712] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_macro_rules_BANG] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_u8] = ACTIONS(2691), - [anon_sym_i8] = ACTIONS(2691), - [anon_sym_u16] = ACTIONS(2691), - [anon_sym_i16] = ACTIONS(2691), - [anon_sym_u32] = ACTIONS(2691), - [anon_sym_i32] = ACTIONS(2691), - [anon_sym_u64] = ACTIONS(2691), - [anon_sym_i64] = ACTIONS(2691), - [anon_sym_u128] = ACTIONS(2691), - [anon_sym_i128] = ACTIONS(2691), - [anon_sym_isize] = ACTIONS(2691), - [anon_sym_usize] = ACTIONS(2691), - [anon_sym_f32] = ACTIONS(2691), - [anon_sym_f64] = ACTIONS(2691), - [anon_sym_bool] = ACTIONS(2691), - [anon_sym_str] = ACTIONS(2691), - [anon_sym_char] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_DOT_DOT] = ACTIONS(2689), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_async] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_impl] = ACTIONS(2691), - [anon_sym_let] = ACTIONS(2691), - [anon_sym_loop] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_trait] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_use] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym_yield] = ACTIONS(2691), - [anon_sym_move] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2689), - [aux_sym_string_literal_token1] = ACTIONS(2689), - [sym_char_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2691), - [anon_sym_false] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2691), - [sym_super] = ACTIONS(2691), - [sym_crate] = ACTIONS(2691), - [sym_metavariable] = ACTIONS(2689), - [sym__raw_string_literal_start] = ACTIONS(2689), - [sym_float_literal] = ACTIONS(2689), - }, - [713] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_macro_rules_BANG] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_u8] = ACTIONS(2695), - [anon_sym_i8] = ACTIONS(2695), - [anon_sym_u16] = ACTIONS(2695), - [anon_sym_i16] = ACTIONS(2695), - [anon_sym_u32] = ACTIONS(2695), - [anon_sym_i32] = ACTIONS(2695), - [anon_sym_u64] = ACTIONS(2695), - [anon_sym_i64] = ACTIONS(2695), - [anon_sym_u128] = ACTIONS(2695), - [anon_sym_i128] = ACTIONS(2695), - [anon_sym_isize] = ACTIONS(2695), - [anon_sym_usize] = ACTIONS(2695), - [anon_sym_f32] = ACTIONS(2695), - [anon_sym_f64] = ACTIONS(2695), - [anon_sym_bool] = ACTIONS(2695), - [anon_sym_str] = ACTIONS(2695), - [anon_sym_char] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_async] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_fn] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_impl] = ACTIONS(2695), - [anon_sym_let] = ACTIONS(2695), - [anon_sym_loop] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2695), - [anon_sym_mod] = ACTIONS(2695), - [anon_sym_pub] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_trait] = ACTIONS(2695), - [anon_sym_type] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_unsafe] = ACTIONS(2695), - [anon_sym_use] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym_yield] = ACTIONS(2695), - [anon_sym_move] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [aux_sym_string_literal_token1] = ACTIONS(2693), - [sym_char_literal] = ACTIONS(2693), - [anon_sym_true] = ACTIONS(2695), - [anon_sym_false] = ACTIONS(2695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2695), - [sym_super] = ACTIONS(2695), - [sym_crate] = ACTIONS(2695), - [sym_metavariable] = ACTIONS(2693), - [sym__raw_string_literal_start] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - }, - [714] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_macro_rules_BANG] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_u8] = ACTIONS(2699), - [anon_sym_i8] = ACTIONS(2699), - [anon_sym_u16] = ACTIONS(2699), - [anon_sym_i16] = ACTIONS(2699), - [anon_sym_u32] = ACTIONS(2699), - [anon_sym_i32] = ACTIONS(2699), - [anon_sym_u64] = ACTIONS(2699), - [anon_sym_i64] = ACTIONS(2699), - [anon_sym_u128] = ACTIONS(2699), - [anon_sym_i128] = ACTIONS(2699), - [anon_sym_isize] = ACTIONS(2699), - [anon_sym_usize] = ACTIONS(2699), - [anon_sym_f32] = ACTIONS(2699), - [anon_sym_f64] = ACTIONS(2699), - [anon_sym_bool] = ACTIONS(2699), - [anon_sym_str] = ACTIONS(2699), - [anon_sym_char] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_DOT_DOT] = ACTIONS(2697), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_POUND] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_async] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_impl] = ACTIONS(2699), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_loop] = ACTIONS(2699), - [anon_sym_match] = ACTIONS(2699), - [anon_sym_mod] = ACTIONS(2699), - [anon_sym_pub] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_trait] = ACTIONS(2699), - [anon_sym_type] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_unsafe] = ACTIONS(2699), - [anon_sym_use] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym_yield] = ACTIONS(2699), - [anon_sym_move] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [sym_integer_literal] = ACTIONS(2697), - [aux_sym_string_literal_token1] = ACTIONS(2697), - [sym_char_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2699), - [anon_sym_false] = ACTIONS(2699), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2699), - [sym_super] = ACTIONS(2699), - [sym_crate] = ACTIONS(2699), - [sym_metavariable] = ACTIONS(2697), - [sym__raw_string_literal_start] = ACTIONS(2697), - [sym_float_literal] = ACTIONS(2697), - }, - [715] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_macro_rules_BANG] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_u8] = ACTIONS(2703), - [anon_sym_i8] = ACTIONS(2703), - [anon_sym_u16] = ACTIONS(2703), - [anon_sym_i16] = ACTIONS(2703), - [anon_sym_u32] = ACTIONS(2703), - [anon_sym_i32] = ACTIONS(2703), - [anon_sym_u64] = ACTIONS(2703), - [anon_sym_i64] = ACTIONS(2703), - [anon_sym_u128] = ACTIONS(2703), - [anon_sym_i128] = ACTIONS(2703), - [anon_sym_isize] = ACTIONS(2703), - [anon_sym_usize] = ACTIONS(2703), - [anon_sym_f32] = ACTIONS(2703), - [anon_sym_f64] = ACTIONS(2703), - [anon_sym_bool] = ACTIONS(2703), - [anon_sym_str] = ACTIONS(2703), - [anon_sym_char] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_DOT_DOT] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_async] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_fn] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_impl] = ACTIONS(2703), - [anon_sym_let] = ACTIONS(2703), - [anon_sym_loop] = ACTIONS(2703), - [anon_sym_match] = ACTIONS(2703), - [anon_sym_mod] = ACTIONS(2703), - [anon_sym_pub] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_trait] = ACTIONS(2703), - [anon_sym_type] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2703), - [anon_sym_move] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [sym_integer_literal] = ACTIONS(2701), - [aux_sym_string_literal_token1] = ACTIONS(2701), - [sym_char_literal] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2703), - [sym_super] = ACTIONS(2703), - [sym_crate] = ACTIONS(2703), - [sym_metavariable] = ACTIONS(2701), - [sym__raw_string_literal_start] = ACTIONS(2701), - [sym_float_literal] = ACTIONS(2701), - }, - [716] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym_macro_rules_BANG] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_u8] = ACTIONS(2707), - [anon_sym_i8] = ACTIONS(2707), - [anon_sym_u16] = ACTIONS(2707), - [anon_sym_i16] = ACTIONS(2707), - [anon_sym_u32] = ACTIONS(2707), - [anon_sym_i32] = ACTIONS(2707), - [anon_sym_u64] = ACTIONS(2707), - [anon_sym_i64] = ACTIONS(2707), - [anon_sym_u128] = ACTIONS(2707), - [anon_sym_i128] = ACTIONS(2707), - [anon_sym_isize] = ACTIONS(2707), - [anon_sym_usize] = ACTIONS(2707), - [anon_sym_f32] = ACTIONS(2707), - [anon_sym_f64] = ACTIONS(2707), - [anon_sym_bool] = ACTIONS(2707), - [anon_sym_str] = ACTIONS(2707), - [anon_sym_char] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_POUND] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_async] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_impl] = ACTIONS(2707), - [anon_sym_let] = ACTIONS(2707), - [anon_sym_loop] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_mod] = ACTIONS(2707), - [anon_sym_pub] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_trait] = ACTIONS(2707), - [anon_sym_type] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2707), - [anon_sym_move] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [sym_integer_literal] = ACTIONS(2705), - [aux_sym_string_literal_token1] = ACTIONS(2705), - [sym_char_literal] = ACTIONS(2705), - [anon_sym_true] = ACTIONS(2707), - [anon_sym_false] = ACTIONS(2707), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2707), - [sym_super] = ACTIONS(2707), - [sym_crate] = ACTIONS(2707), - [sym_metavariable] = ACTIONS(2705), - [sym__raw_string_literal_start] = ACTIONS(2705), - [sym_float_literal] = ACTIONS(2705), - }, - [717] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_macro_rules_BANG] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_u8] = ACTIONS(2711), - [anon_sym_i8] = ACTIONS(2711), - [anon_sym_u16] = ACTIONS(2711), - [anon_sym_i16] = ACTIONS(2711), - [anon_sym_u32] = ACTIONS(2711), - [anon_sym_i32] = ACTIONS(2711), - [anon_sym_u64] = ACTIONS(2711), - [anon_sym_i64] = ACTIONS(2711), - [anon_sym_u128] = ACTIONS(2711), - [anon_sym_i128] = ACTIONS(2711), - [anon_sym_isize] = ACTIONS(2711), - [anon_sym_usize] = ACTIONS(2711), - [anon_sym_f32] = ACTIONS(2711), - [anon_sym_f64] = ACTIONS(2711), - [anon_sym_bool] = ACTIONS(2711), - [anon_sym_str] = ACTIONS(2711), - [anon_sym_char] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_DOT_DOT] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_POUND] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_fn] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_impl] = ACTIONS(2711), - [anon_sym_let] = ACTIONS(2711), - [anon_sym_loop] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_mod] = ACTIONS(2711), - [anon_sym_pub] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_trait] = ACTIONS(2711), - [anon_sym_type] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_unsafe] = ACTIONS(2711), - [anon_sym_use] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym_yield] = ACTIONS(2711), - [anon_sym_move] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [sym_integer_literal] = ACTIONS(2709), - [aux_sym_string_literal_token1] = ACTIONS(2709), - [sym_char_literal] = ACTIONS(2709), - [anon_sym_true] = ACTIONS(2711), - [anon_sym_false] = ACTIONS(2711), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2711), - [sym_super] = ACTIONS(2711), - [sym_crate] = ACTIONS(2711), - [sym_metavariable] = ACTIONS(2709), - [sym__raw_string_literal_start] = ACTIONS(2709), - [sym_float_literal] = ACTIONS(2709), - }, - [718] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym_macro_rules_BANG] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_u8] = ACTIONS(2715), - [anon_sym_i8] = ACTIONS(2715), - [anon_sym_u16] = ACTIONS(2715), - [anon_sym_i16] = ACTIONS(2715), - [anon_sym_u32] = ACTIONS(2715), - [anon_sym_i32] = ACTIONS(2715), - [anon_sym_u64] = ACTIONS(2715), - [anon_sym_i64] = ACTIONS(2715), - [anon_sym_u128] = ACTIONS(2715), - [anon_sym_i128] = ACTIONS(2715), - [anon_sym_isize] = ACTIONS(2715), - [anon_sym_usize] = ACTIONS(2715), - [anon_sym_f32] = ACTIONS(2715), - [anon_sym_f64] = ACTIONS(2715), - [anon_sym_bool] = ACTIONS(2715), - [anon_sym_str] = ACTIONS(2715), - [anon_sym_char] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2713), - [anon_sym_DOT_DOT] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_POUND] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_async] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_impl] = ACTIONS(2715), - [anon_sym_let] = ACTIONS(2715), - [anon_sym_loop] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_mod] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_trait] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_use] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym_yield] = ACTIONS(2715), - [anon_sym_move] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [sym_integer_literal] = ACTIONS(2713), - [aux_sym_string_literal_token1] = ACTIONS(2713), - [sym_char_literal] = ACTIONS(2713), - [anon_sym_true] = ACTIONS(2715), - [anon_sym_false] = ACTIONS(2715), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2715), - [sym_super] = ACTIONS(2715), - [sym_crate] = ACTIONS(2715), - [sym_metavariable] = ACTIONS(2713), - [sym__raw_string_literal_start] = ACTIONS(2713), - [sym_float_literal] = ACTIONS(2713), - }, - [719] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym_macro_rules_BANG] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_u8] = ACTIONS(2719), - [anon_sym_i8] = ACTIONS(2719), - [anon_sym_u16] = ACTIONS(2719), - [anon_sym_i16] = ACTIONS(2719), - [anon_sym_u32] = ACTIONS(2719), - [anon_sym_i32] = ACTIONS(2719), - [anon_sym_u64] = ACTIONS(2719), - [anon_sym_i64] = ACTIONS(2719), - [anon_sym_u128] = ACTIONS(2719), - [anon_sym_i128] = ACTIONS(2719), - [anon_sym_isize] = ACTIONS(2719), - [anon_sym_usize] = ACTIONS(2719), - [anon_sym_f32] = ACTIONS(2719), - [anon_sym_f64] = ACTIONS(2719), - [anon_sym_bool] = ACTIONS(2719), - [anon_sym_str] = ACTIONS(2719), - [anon_sym_char] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_DOT_DOT] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_POUND] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_async] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_impl] = ACTIONS(2719), - [anon_sym_let] = ACTIONS(2719), - [anon_sym_loop] = ACTIONS(2719), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_mod] = ACTIONS(2719), - [anon_sym_pub] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_trait] = ACTIONS(2719), - [anon_sym_type] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_unsafe] = ACTIONS(2719), - [anon_sym_use] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_move] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [sym_integer_literal] = ACTIONS(2717), - [aux_sym_string_literal_token1] = ACTIONS(2717), - [sym_char_literal] = ACTIONS(2717), - [anon_sym_true] = ACTIONS(2719), - [anon_sym_false] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2719), - [sym_super] = ACTIONS(2719), - [sym_crate] = ACTIONS(2719), - [sym_metavariable] = ACTIONS(2717), - [sym__raw_string_literal_start] = ACTIONS(2717), - [sym_float_literal] = ACTIONS(2717), - }, - [720] = { - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_identifier] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym_macro_rules_BANG] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_u8] = ACTIONS(2723), - [anon_sym_i8] = ACTIONS(2723), - [anon_sym_u16] = ACTIONS(2723), - [anon_sym_i16] = ACTIONS(2723), - [anon_sym_u32] = ACTIONS(2723), - [anon_sym_i32] = ACTIONS(2723), - [anon_sym_u64] = ACTIONS(2723), - [anon_sym_i64] = ACTIONS(2723), - [anon_sym_u128] = ACTIONS(2723), - [anon_sym_i128] = ACTIONS(2723), - [anon_sym_isize] = ACTIONS(2723), - [anon_sym_usize] = ACTIONS(2723), - [anon_sym_f32] = ACTIONS(2723), - [anon_sym_f64] = ACTIONS(2723), - [anon_sym_bool] = ACTIONS(2723), - [anon_sym_str] = ACTIONS(2723), - [anon_sym_char] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2721), - [anon_sym_DOT_DOT] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_POUND] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_async] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_fn] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_impl] = ACTIONS(2723), - [anon_sym_let] = ACTIONS(2723), - [anon_sym_loop] = ACTIONS(2723), - [anon_sym_match] = ACTIONS(2723), - [anon_sym_mod] = ACTIONS(2723), - [anon_sym_pub] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_trait] = ACTIONS(2723), - [anon_sym_type] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_unsafe] = ACTIONS(2723), - [anon_sym_use] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym_yield] = ACTIONS(2723), - [anon_sym_move] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [sym_integer_literal] = ACTIONS(2721), - [aux_sym_string_literal_token1] = ACTIONS(2721), - [sym_char_literal] = ACTIONS(2721), - [anon_sym_true] = ACTIONS(2723), - [anon_sym_false] = ACTIONS(2723), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2723), - [sym_super] = ACTIONS(2723), - [sym_crate] = ACTIONS(2723), - [sym_metavariable] = ACTIONS(2721), - [sym__raw_string_literal_start] = ACTIONS(2721), - [sym_float_literal] = ACTIONS(2721), - }, - [721] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_match_pattern] = STATE(3605), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(758), - [sym_identifier] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_u8] = ACTIONS(2734), - [anon_sym_i8] = ACTIONS(2734), - [anon_sym_u16] = ACTIONS(2734), - [anon_sym_i16] = ACTIONS(2734), - [anon_sym_u32] = ACTIONS(2734), - [anon_sym_i32] = ACTIONS(2734), - [anon_sym_u64] = ACTIONS(2734), - [anon_sym_i64] = ACTIONS(2734), - [anon_sym_u128] = ACTIONS(2734), - [anon_sym_i128] = ACTIONS(2734), - [anon_sym_isize] = ACTIONS(2734), - [anon_sym_usize] = ACTIONS(2734), - [anon_sym_f32] = ACTIONS(2734), - [anon_sym_f64] = ACTIONS(2734), - [anon_sym_bool] = ACTIONS(2734), - [anon_sym_str] = ACTIONS(2734), - [anon_sym_char] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym__] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2752), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_ref] = ACTIONS(2767), - [sym_mutable_specifier] = ACTIONS(2770), - [sym_integer_literal] = ACTIONS(2773), - [aux_sym_string_literal_token1] = ACTIONS(2776), - [sym_char_literal] = ACTIONS(2773), - [anon_sym_true] = ACTIONS(2779), - [anon_sym_false] = ACTIONS(2779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_crate] = ACTIONS(2782), - [sym_metavariable] = ACTIONS(2785), - [sym__raw_string_literal_start] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2773), - }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_macro_rules_BANG] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_u8] = ACTIONS(2793), - [anon_sym_i8] = ACTIONS(2793), - [anon_sym_u16] = ACTIONS(2793), - [anon_sym_i16] = ACTIONS(2793), - [anon_sym_u32] = ACTIONS(2793), - [anon_sym_i32] = ACTIONS(2793), - [anon_sym_u64] = ACTIONS(2793), - [anon_sym_i64] = ACTIONS(2793), - [anon_sym_u128] = ACTIONS(2793), - [anon_sym_i128] = ACTIONS(2793), - [anon_sym_isize] = ACTIONS(2793), - [anon_sym_usize] = ACTIONS(2793), - [anon_sym_f32] = ACTIONS(2793), - [anon_sym_f64] = ACTIONS(2793), - [anon_sym_bool] = ACTIONS(2793), - [anon_sym_str] = ACTIONS(2793), - [anon_sym_char] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_LT] = ACTIONS(2791), - [anon_sym_DOT_DOT] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_POUND] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_async] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_impl] = ACTIONS(2793), - [anon_sym_let] = ACTIONS(2793), - [anon_sym_loop] = ACTIONS(2793), - [anon_sym_match] = ACTIONS(2793), - [anon_sym_mod] = ACTIONS(2793), - [anon_sym_pub] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_trait] = ACTIONS(2793), - [anon_sym_type] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_unsafe] = ACTIONS(2793), - [anon_sym_use] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym_yield] = ACTIONS(2793), - [anon_sym_move] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [sym_integer_literal] = ACTIONS(2791), - [aux_sym_string_literal_token1] = ACTIONS(2791), - [sym_char_literal] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(2793), - [anon_sym_false] = ACTIONS(2793), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2793), - [sym_super] = ACTIONS(2793), - [sym_crate] = ACTIONS(2793), - [sym_metavariable] = ACTIONS(2791), - [sym__raw_string_literal_start] = ACTIONS(2791), - [sym_float_literal] = ACTIONS(2791), - }, [723] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_macro_rules_BANG] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_u8] = ACTIONS(2797), - [anon_sym_i8] = ACTIONS(2797), - [anon_sym_u16] = ACTIONS(2797), - [anon_sym_i16] = ACTIONS(2797), - [anon_sym_u32] = ACTIONS(2797), - [anon_sym_i32] = ACTIONS(2797), - [anon_sym_u64] = ACTIONS(2797), - [anon_sym_i64] = ACTIONS(2797), - [anon_sym_u128] = ACTIONS(2797), - [anon_sym_i128] = ACTIONS(2797), - [anon_sym_isize] = ACTIONS(2797), - [anon_sym_usize] = ACTIONS(2797), - [anon_sym_f32] = ACTIONS(2797), - [anon_sym_f64] = ACTIONS(2797), - [anon_sym_bool] = ACTIONS(2797), - [anon_sym_str] = ACTIONS(2797), - [anon_sym_char] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2795), - [anon_sym_DOT_DOT] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_POUND] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_impl] = ACTIONS(2797), - [anon_sym_let] = ACTIONS(2797), - [anon_sym_loop] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_mod] = ACTIONS(2797), - [anon_sym_pub] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_trait] = ACTIONS(2797), - [anon_sym_type] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_unsafe] = ACTIONS(2797), - [anon_sym_use] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym_yield] = ACTIONS(2797), - [anon_sym_move] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [sym_integer_literal] = ACTIONS(2795), - [aux_sym_string_literal_token1] = ACTIONS(2795), - [sym_char_literal] = ACTIONS(2795), - [anon_sym_true] = ACTIONS(2797), - [anon_sym_false] = ACTIONS(2797), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2797), - [sym_super] = ACTIONS(2797), - [sym_crate] = ACTIONS(2797), - [sym_metavariable] = ACTIONS(2795), - [sym__raw_string_literal_start] = ACTIONS(2795), - [sym_float_literal] = ACTIONS(2795), + [ts_builtin_sym_end] = ACTIONS(2635), + [sym_identifier] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_macro_rules_BANG] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_u8] = ACTIONS(2637), + [anon_sym_i8] = ACTIONS(2637), + [anon_sym_u16] = ACTIONS(2637), + [anon_sym_i16] = ACTIONS(2637), + [anon_sym_u32] = ACTIONS(2637), + [anon_sym_i32] = ACTIONS(2637), + [anon_sym_u64] = ACTIONS(2637), + [anon_sym_i64] = ACTIONS(2637), + [anon_sym_u128] = ACTIONS(2637), + [anon_sym_i128] = ACTIONS(2637), + [anon_sym_isize] = ACTIONS(2637), + [anon_sym_usize] = ACTIONS(2637), + [anon_sym_f32] = ACTIONS(2637), + [anon_sym_f64] = ACTIONS(2637), + [anon_sym_bool] = ACTIONS(2637), + [anon_sym_str] = ACTIONS(2637), + [anon_sym_char] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_async] = ACTIONS(2637), + [anon_sym_break] = ACTIONS(2637), + [anon_sym_const] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2637), + [anon_sym_default] = ACTIONS(2637), + [anon_sym_enum] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_for] = ACTIONS(2637), + [anon_sym_gen] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2637), + [anon_sym_impl] = ACTIONS(2637), + [anon_sym_let] = ACTIONS(2637), + [anon_sym_loop] = ACTIONS(2637), + [anon_sym_match] = ACTIONS(2637), + [anon_sym_mod] = ACTIONS(2637), + [anon_sym_pub] = ACTIONS(2637), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2637), + [anon_sym_trait] = ACTIONS(2637), + [anon_sym_type] = ACTIONS(2637), + [anon_sym_union] = ACTIONS(2637), + [anon_sym_unsafe] = ACTIONS(2637), + [anon_sym_use] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2637), + [anon_sym_extern] = ACTIONS(2637), + [anon_sym_yield] = ACTIONS(2637), + [anon_sym_move] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2637), + [sym_integer_literal] = ACTIONS(2635), + [aux_sym_string_literal_token1] = ACTIONS(2635), + [sym_char_literal] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2637), + [sym_super] = ACTIONS(2637), + [sym_crate] = ACTIONS(2637), + [sym_metavariable] = ACTIONS(2635), + [sym__raw_string_literal_start] = ACTIONS(2635), + [sym_float_literal] = ACTIONS(2635), }, [724] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_macro_rules_BANG] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_u8] = ACTIONS(2801), - [anon_sym_i8] = ACTIONS(2801), - [anon_sym_u16] = ACTIONS(2801), - [anon_sym_i16] = ACTIONS(2801), - [anon_sym_u32] = ACTIONS(2801), - [anon_sym_i32] = ACTIONS(2801), - [anon_sym_u64] = ACTIONS(2801), - [anon_sym_i64] = ACTIONS(2801), - [anon_sym_u128] = ACTIONS(2801), - [anon_sym_i128] = ACTIONS(2801), - [anon_sym_isize] = ACTIONS(2801), - [anon_sym_usize] = ACTIONS(2801), - [anon_sym_f32] = ACTIONS(2801), - [anon_sym_f64] = ACTIONS(2801), - [anon_sym_bool] = ACTIONS(2801), - [anon_sym_str] = ACTIONS(2801), - [anon_sym_char] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_DOT_DOT] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_POUND] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_impl] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_loop] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_pub] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_trait] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_use] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_move] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [sym_integer_literal] = ACTIONS(2799), - [aux_sym_string_literal_token1] = ACTIONS(2799), - [sym_char_literal] = ACTIONS(2799), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_crate] = ACTIONS(2801), - [sym_metavariable] = ACTIONS(2799), - [sym__raw_string_literal_start] = ACTIONS(2799), - [sym_float_literal] = ACTIONS(2799), + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_macro_rules_BANG] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_u8] = ACTIONS(2641), + [anon_sym_i8] = ACTIONS(2641), + [anon_sym_u16] = ACTIONS(2641), + [anon_sym_i16] = ACTIONS(2641), + [anon_sym_u32] = ACTIONS(2641), + [anon_sym_i32] = ACTIONS(2641), + [anon_sym_u64] = ACTIONS(2641), + [anon_sym_i64] = ACTIONS(2641), + [anon_sym_u128] = ACTIONS(2641), + [anon_sym_i128] = ACTIONS(2641), + [anon_sym_isize] = ACTIONS(2641), + [anon_sym_usize] = ACTIONS(2641), + [anon_sym_f32] = ACTIONS(2641), + [anon_sym_f64] = ACTIONS(2641), + [anon_sym_bool] = ACTIONS(2641), + [anon_sym_str] = ACTIONS(2641), + [anon_sym_char] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_gen] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_impl] = ACTIONS(2641), + [anon_sym_let] = ACTIONS(2641), + [anon_sym_loop] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_mod] = ACTIONS(2641), + [anon_sym_pub] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2641), + [anon_sym_trait] = ACTIONS(2641), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_union] = ACTIONS(2641), + [anon_sym_unsafe] = ACTIONS(2641), + [anon_sym_use] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym_yield] = ACTIONS(2641), + [anon_sym_move] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [sym_integer_literal] = ACTIONS(2639), + [aux_sym_string_literal_token1] = ACTIONS(2639), + [sym_char_literal] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2641), + [sym_super] = ACTIONS(2641), + [sym_crate] = ACTIONS(2641), + [sym_metavariable] = ACTIONS(2639), + [sym__raw_string_literal_start] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), }, [725] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_macro_rules_BANG] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_u8] = ACTIONS(2805), - [anon_sym_i8] = ACTIONS(2805), - [anon_sym_u16] = ACTIONS(2805), - [anon_sym_i16] = ACTIONS(2805), - [anon_sym_u32] = ACTIONS(2805), - [anon_sym_i32] = ACTIONS(2805), - [anon_sym_u64] = ACTIONS(2805), - [anon_sym_i64] = ACTIONS(2805), - [anon_sym_u128] = ACTIONS(2805), - [anon_sym_i128] = ACTIONS(2805), - [anon_sym_isize] = ACTIONS(2805), - [anon_sym_usize] = ACTIONS(2805), - [anon_sym_f32] = ACTIONS(2805), - [anon_sym_f64] = ACTIONS(2805), - [anon_sym_bool] = ACTIONS(2805), - [anon_sym_str] = ACTIONS(2805), - [anon_sym_char] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2803), - [anon_sym_LT] = ACTIONS(2803), - [anon_sym_DOT_DOT] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_POUND] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_fn] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_impl] = ACTIONS(2805), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_loop] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_mod] = ACTIONS(2805), - [anon_sym_pub] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_trait] = ACTIONS(2805), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_unsafe] = ACTIONS(2805), - [anon_sym_use] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_extern] = ACTIONS(2805), - [anon_sym_yield] = ACTIONS(2805), - [anon_sym_move] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [sym_integer_literal] = ACTIONS(2803), - [aux_sym_string_literal_token1] = ACTIONS(2803), - [sym_char_literal] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2805), - [anon_sym_false] = ACTIONS(2805), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2805), - [sym_super] = ACTIONS(2805), - [sym_crate] = ACTIONS(2805), - [sym_metavariable] = ACTIONS(2803), - [sym__raw_string_literal_start] = ACTIONS(2803), - [sym_float_literal] = ACTIONS(2803), + [ts_builtin_sym_end] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_macro_rules_BANG] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_u8] = ACTIONS(2645), + [anon_sym_i8] = ACTIONS(2645), + [anon_sym_u16] = ACTIONS(2645), + [anon_sym_i16] = ACTIONS(2645), + [anon_sym_u32] = ACTIONS(2645), + [anon_sym_i32] = ACTIONS(2645), + [anon_sym_u64] = ACTIONS(2645), + [anon_sym_i64] = ACTIONS(2645), + [anon_sym_u128] = ACTIONS(2645), + [anon_sym_i128] = ACTIONS(2645), + [anon_sym_isize] = ACTIONS(2645), + [anon_sym_usize] = ACTIONS(2645), + [anon_sym_f32] = ACTIONS(2645), + [anon_sym_f64] = ACTIONS(2645), + [anon_sym_bool] = ACTIONS(2645), + [anon_sym_str] = ACTIONS(2645), + [anon_sym_char] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_async] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_gen] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_impl] = ACTIONS(2645), + [anon_sym_let] = ACTIONS(2645), + [anon_sym_loop] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2645), + [anon_sym_mod] = ACTIONS(2645), + [anon_sym_pub] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_trait] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_unsafe] = ACTIONS(2645), + [anon_sym_use] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym_yield] = ACTIONS(2645), + [anon_sym_move] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [sym_integer_literal] = ACTIONS(2643), + [aux_sym_string_literal_token1] = ACTIONS(2643), + [sym_char_literal] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2643), + [sym__raw_string_literal_start] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2643), }, [726] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_macro_rules_BANG] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_u8] = ACTIONS(2809), - [anon_sym_i8] = ACTIONS(2809), - [anon_sym_u16] = ACTIONS(2809), - [anon_sym_i16] = ACTIONS(2809), - [anon_sym_u32] = ACTIONS(2809), - [anon_sym_i32] = ACTIONS(2809), - [anon_sym_u64] = ACTIONS(2809), - [anon_sym_i64] = ACTIONS(2809), - [anon_sym_u128] = ACTIONS(2809), - [anon_sym_i128] = ACTIONS(2809), - [anon_sym_isize] = ACTIONS(2809), - [anon_sym_usize] = ACTIONS(2809), - [anon_sym_f32] = ACTIONS(2809), - [anon_sym_f64] = ACTIONS(2809), - [anon_sym_bool] = ACTIONS(2809), - [anon_sym_str] = ACTIONS(2809), - [anon_sym_char] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_LT] = ACTIONS(2807), - [anon_sym_DOT_DOT] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_async] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_fn] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_impl] = ACTIONS(2809), - [anon_sym_let] = ACTIONS(2809), - [anon_sym_loop] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_mod] = ACTIONS(2809), - [anon_sym_pub] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_trait] = ACTIONS(2809), - [anon_sym_type] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_unsafe] = ACTIONS(2809), - [anon_sym_use] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym_yield] = ACTIONS(2809), - [anon_sym_move] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [sym_integer_literal] = ACTIONS(2807), - [aux_sym_string_literal_token1] = ACTIONS(2807), - [sym_char_literal] = ACTIONS(2807), - [anon_sym_true] = ACTIONS(2809), - [anon_sym_false] = ACTIONS(2809), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2809), - [sym_super] = ACTIONS(2809), - [sym_crate] = ACTIONS(2809), - [sym_metavariable] = ACTIONS(2807), - [sym__raw_string_literal_start] = ACTIONS(2807), - [sym_float_literal] = ACTIONS(2807), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_macro_rules_BANG] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2649), + [anon_sym_i8] = ACTIONS(2649), + [anon_sym_u16] = ACTIONS(2649), + [anon_sym_i16] = ACTIONS(2649), + [anon_sym_u32] = ACTIONS(2649), + [anon_sym_i32] = ACTIONS(2649), + [anon_sym_u64] = ACTIONS(2649), + [anon_sym_i64] = ACTIONS(2649), + [anon_sym_u128] = ACTIONS(2649), + [anon_sym_i128] = ACTIONS(2649), + [anon_sym_isize] = ACTIONS(2649), + [anon_sym_usize] = ACTIONS(2649), + [anon_sym_f32] = ACTIONS(2649), + [anon_sym_f64] = ACTIONS(2649), + [anon_sym_bool] = ACTIONS(2649), + [anon_sym_str] = ACTIONS(2649), + [anon_sym_char] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_async] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_gen] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_impl] = ACTIONS(2649), + [anon_sym_let] = ACTIONS(2649), + [anon_sym_loop] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_mod] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_trait] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_use] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym_yield] = ACTIONS(2649), + [anon_sym_move] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [sym_integer_literal] = ACTIONS(2647), + [aux_sym_string_literal_token1] = ACTIONS(2647), + [sym_char_literal] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2649), + [sym_super] = ACTIONS(2649), + [sym_crate] = ACTIONS(2649), + [sym_metavariable] = ACTIONS(2647), + [sym__raw_string_literal_start] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), }, [727] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_macro_rules_BANG] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_u8] = ACTIONS(2813), - [anon_sym_i8] = ACTIONS(2813), - [anon_sym_u16] = ACTIONS(2813), - [anon_sym_i16] = ACTIONS(2813), - [anon_sym_u32] = ACTIONS(2813), - [anon_sym_i32] = ACTIONS(2813), - [anon_sym_u64] = ACTIONS(2813), - [anon_sym_i64] = ACTIONS(2813), - [anon_sym_u128] = ACTIONS(2813), - [anon_sym_i128] = ACTIONS(2813), - [anon_sym_isize] = ACTIONS(2813), - [anon_sym_usize] = ACTIONS(2813), - [anon_sym_f32] = ACTIONS(2813), - [anon_sym_f64] = ACTIONS(2813), - [anon_sym_bool] = ACTIONS(2813), - [anon_sym_str] = ACTIONS(2813), - [anon_sym_char] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LT] = ACTIONS(2811), - [anon_sym_DOT_DOT] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_impl] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2813), - [anon_sym_loop] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_mod] = ACTIONS(2813), - [anon_sym_pub] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_trait] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_use] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym_yield] = ACTIONS(2813), - [anon_sym_move] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [sym_integer_literal] = ACTIONS(2811), - [aux_sym_string_literal_token1] = ACTIONS(2811), - [sym_char_literal] = ACTIONS(2811), - [anon_sym_true] = ACTIONS(2813), - [anon_sym_false] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2813), - [sym_super] = ACTIONS(2813), - [sym_crate] = ACTIONS(2813), - [sym_metavariable] = ACTIONS(2811), - [sym__raw_string_literal_start] = ACTIONS(2811), - [sym_float_literal] = ACTIONS(2811), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_macro_rules_BANG] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_u8] = ACTIONS(2653), + [anon_sym_i8] = ACTIONS(2653), + [anon_sym_u16] = ACTIONS(2653), + [anon_sym_i16] = ACTIONS(2653), + [anon_sym_u32] = ACTIONS(2653), + [anon_sym_i32] = ACTIONS(2653), + [anon_sym_u64] = ACTIONS(2653), + [anon_sym_i64] = ACTIONS(2653), + [anon_sym_u128] = ACTIONS(2653), + [anon_sym_i128] = ACTIONS(2653), + [anon_sym_isize] = ACTIONS(2653), + [anon_sym_usize] = ACTIONS(2653), + [anon_sym_f32] = ACTIONS(2653), + [anon_sym_f64] = ACTIONS(2653), + [anon_sym_bool] = ACTIONS(2653), + [anon_sym_str] = ACTIONS(2653), + [anon_sym_char] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_async] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_gen] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_impl] = ACTIONS(2653), + [anon_sym_let] = ACTIONS(2653), + [anon_sym_loop] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_mod] = ACTIONS(2653), + [anon_sym_pub] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_trait] = ACTIONS(2653), + [anon_sym_type] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_use] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym_yield] = ACTIONS(2653), + [anon_sym_move] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [sym_integer_literal] = ACTIONS(2651), + [aux_sym_string_literal_token1] = ACTIONS(2651), + [sym_char_literal] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2653), + [sym_super] = ACTIONS(2653), + [sym_crate] = ACTIONS(2653), + [sym_metavariable] = ACTIONS(2651), + [sym__raw_string_literal_start] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2651), }, [728] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_macro_rules_BANG] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_u8] = ACTIONS(2817), - [anon_sym_i8] = ACTIONS(2817), - [anon_sym_u16] = ACTIONS(2817), - [anon_sym_i16] = ACTIONS(2817), - [anon_sym_u32] = ACTIONS(2817), - [anon_sym_i32] = ACTIONS(2817), - [anon_sym_u64] = ACTIONS(2817), - [anon_sym_i64] = ACTIONS(2817), - [anon_sym_u128] = ACTIONS(2817), - [anon_sym_i128] = ACTIONS(2817), - [anon_sym_isize] = ACTIONS(2817), - [anon_sym_usize] = ACTIONS(2817), - [anon_sym_f32] = ACTIONS(2817), - [anon_sym_f64] = ACTIONS(2817), - [anon_sym_bool] = ACTIONS(2817), - [anon_sym_str] = ACTIONS(2817), - [anon_sym_char] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_DOT_DOT] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_async] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_impl] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2817), - [anon_sym_loop] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_mod] = ACTIONS(2817), - [anon_sym_pub] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_trait] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_use] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym_yield] = ACTIONS(2817), - [anon_sym_move] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [sym_integer_literal] = ACTIONS(2815), - [aux_sym_string_literal_token1] = ACTIONS(2815), - [sym_char_literal] = ACTIONS(2815), - [anon_sym_true] = ACTIONS(2817), - [anon_sym_false] = ACTIONS(2817), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2817), - [sym_super] = ACTIONS(2817), - [sym_crate] = ACTIONS(2817), - [sym_metavariable] = ACTIONS(2815), - [sym__raw_string_literal_start] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_macro_rules_BANG] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_u8] = ACTIONS(2657), + [anon_sym_i8] = ACTIONS(2657), + [anon_sym_u16] = ACTIONS(2657), + [anon_sym_i16] = ACTIONS(2657), + [anon_sym_u32] = ACTIONS(2657), + [anon_sym_i32] = ACTIONS(2657), + [anon_sym_u64] = ACTIONS(2657), + [anon_sym_i64] = ACTIONS(2657), + [anon_sym_u128] = ACTIONS(2657), + [anon_sym_i128] = ACTIONS(2657), + [anon_sym_isize] = ACTIONS(2657), + [anon_sym_usize] = ACTIONS(2657), + [anon_sym_f32] = ACTIONS(2657), + [anon_sym_f64] = ACTIONS(2657), + [anon_sym_bool] = ACTIONS(2657), + [anon_sym_str] = ACTIONS(2657), + [anon_sym_char] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_POUND] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_gen] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_impl] = ACTIONS(2657), + [anon_sym_let] = ACTIONS(2657), + [anon_sym_loop] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_mod] = ACTIONS(2657), + [anon_sym_pub] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_trait] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_use] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym_yield] = ACTIONS(2657), + [anon_sym_move] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [sym_integer_literal] = ACTIONS(2655), + [aux_sym_string_literal_token1] = ACTIONS(2655), + [sym_char_literal] = ACTIONS(2655), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2657), + [sym_super] = ACTIONS(2657), + [sym_crate] = ACTIONS(2657), + [sym_metavariable] = ACTIONS(2655), + [sym__raw_string_literal_start] = ACTIONS(2655), + [sym_float_literal] = ACTIONS(2655), }, [729] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_identifier] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_macro_rules_BANG] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_u8] = ACTIONS(2821), - [anon_sym_i8] = ACTIONS(2821), - [anon_sym_u16] = ACTIONS(2821), - [anon_sym_i16] = ACTIONS(2821), - [anon_sym_u32] = ACTIONS(2821), - [anon_sym_i32] = ACTIONS(2821), - [anon_sym_u64] = ACTIONS(2821), - [anon_sym_i64] = ACTIONS(2821), - [anon_sym_u128] = ACTIONS(2821), - [anon_sym_i128] = ACTIONS(2821), - [anon_sym_isize] = ACTIONS(2821), - [anon_sym_usize] = ACTIONS(2821), - [anon_sym_f32] = ACTIONS(2821), - [anon_sym_f64] = ACTIONS(2821), - [anon_sym_bool] = ACTIONS(2821), - [anon_sym_str] = ACTIONS(2821), - [anon_sym_char] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_DOT_DOT] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_fn] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_impl] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2821), - [anon_sym_loop] = ACTIONS(2821), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_mod] = ACTIONS(2821), - [anon_sym_pub] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_trait] = ACTIONS(2821), - [anon_sym_type] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_unsafe] = ACTIONS(2821), - [anon_sym_use] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_move] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [sym_integer_literal] = ACTIONS(2819), - [aux_sym_string_literal_token1] = ACTIONS(2819), - [sym_char_literal] = ACTIONS(2819), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2821), - [sym_super] = ACTIONS(2821), - [sym_crate] = ACTIONS(2821), - [sym_metavariable] = ACTIONS(2819), - [sym__raw_string_literal_start] = ACTIONS(2819), - [sym_float_literal] = ACTIONS(2819), + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_macro_rules_BANG] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2661), + [anon_sym_i8] = ACTIONS(2661), + [anon_sym_u16] = ACTIONS(2661), + [anon_sym_i16] = ACTIONS(2661), + [anon_sym_u32] = ACTIONS(2661), + [anon_sym_i32] = ACTIONS(2661), + [anon_sym_u64] = ACTIONS(2661), + [anon_sym_i64] = ACTIONS(2661), + [anon_sym_u128] = ACTIONS(2661), + [anon_sym_i128] = ACTIONS(2661), + [anon_sym_isize] = ACTIONS(2661), + [anon_sym_usize] = ACTIONS(2661), + [anon_sym_f32] = ACTIONS(2661), + [anon_sym_f64] = ACTIONS(2661), + [anon_sym_bool] = ACTIONS(2661), + [anon_sym_str] = ACTIONS(2661), + [anon_sym_char] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_POUND] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_async] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_gen] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_impl] = ACTIONS(2661), + [anon_sym_let] = ACTIONS(2661), + [anon_sym_loop] = ACTIONS(2661), + [anon_sym_match] = ACTIONS(2661), + [anon_sym_mod] = ACTIONS(2661), + [anon_sym_pub] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_trait] = ACTIONS(2661), + [anon_sym_type] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_unsafe] = ACTIONS(2661), + [anon_sym_use] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_yield] = ACTIONS(2661), + [anon_sym_move] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [sym_integer_literal] = ACTIONS(2659), + [aux_sym_string_literal_token1] = ACTIONS(2659), + [sym_char_literal] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2661), + [sym_super] = ACTIONS(2661), + [sym_crate] = ACTIONS(2661), + [sym_metavariable] = ACTIONS(2659), + [sym__raw_string_literal_start] = ACTIONS(2659), + [sym_float_literal] = ACTIONS(2659), }, [730] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_macro_rules_BANG] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_u8] = ACTIONS(2825), - [anon_sym_i8] = ACTIONS(2825), - [anon_sym_u16] = ACTIONS(2825), - [anon_sym_i16] = ACTIONS(2825), - [anon_sym_u32] = ACTIONS(2825), - [anon_sym_i32] = ACTIONS(2825), - [anon_sym_u64] = ACTIONS(2825), - [anon_sym_i64] = ACTIONS(2825), - [anon_sym_u128] = ACTIONS(2825), - [anon_sym_i128] = ACTIONS(2825), - [anon_sym_isize] = ACTIONS(2825), - [anon_sym_usize] = ACTIONS(2825), - [anon_sym_f32] = ACTIONS(2825), - [anon_sym_f64] = ACTIONS(2825), - [anon_sym_bool] = ACTIONS(2825), - [anon_sym_str] = ACTIONS(2825), - [anon_sym_char] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_DOT_DOT] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_async] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_fn] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_impl] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2825), - [anon_sym_loop] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2825), - [anon_sym_mod] = ACTIONS(2825), - [anon_sym_pub] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_trait] = ACTIONS(2825), - [anon_sym_type] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2825), - [anon_sym_use] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym_yield] = ACTIONS(2825), - [anon_sym_move] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [sym_integer_literal] = ACTIONS(2823), - [aux_sym_string_literal_token1] = ACTIONS(2823), - [sym_char_literal] = ACTIONS(2823), - [anon_sym_true] = ACTIONS(2825), - [anon_sym_false] = ACTIONS(2825), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2825), - [sym_super] = ACTIONS(2825), - [sym_crate] = ACTIONS(2825), - [sym_metavariable] = ACTIONS(2823), - [sym__raw_string_literal_start] = ACTIONS(2823), - [sym_float_literal] = ACTIONS(2823), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_macro_rules_BANG] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_u8] = ACTIONS(2665), + [anon_sym_i8] = ACTIONS(2665), + [anon_sym_u16] = ACTIONS(2665), + [anon_sym_i16] = ACTIONS(2665), + [anon_sym_u32] = ACTIONS(2665), + [anon_sym_i32] = ACTIONS(2665), + [anon_sym_u64] = ACTIONS(2665), + [anon_sym_i64] = ACTIONS(2665), + [anon_sym_u128] = ACTIONS(2665), + [anon_sym_i128] = ACTIONS(2665), + [anon_sym_isize] = ACTIONS(2665), + [anon_sym_usize] = ACTIONS(2665), + [anon_sym_f32] = ACTIONS(2665), + [anon_sym_f64] = ACTIONS(2665), + [anon_sym_bool] = ACTIONS(2665), + [anon_sym_str] = ACTIONS(2665), + [anon_sym_char] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2663), + [anon_sym_DOT_DOT] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_async] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_fn] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_gen] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_impl] = ACTIONS(2665), + [anon_sym_let] = ACTIONS(2665), + [anon_sym_loop] = ACTIONS(2665), + [anon_sym_match] = ACTIONS(2665), + [anon_sym_mod] = ACTIONS(2665), + [anon_sym_pub] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_trait] = ACTIONS(2665), + [anon_sym_type] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(2665), + [anon_sym_use] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym_yield] = ACTIONS(2665), + [anon_sym_move] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [sym_integer_literal] = ACTIONS(2663), + [aux_sym_string_literal_token1] = ACTIONS(2663), + [sym_char_literal] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2665), + [anon_sym_false] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2665), + [sym_super] = ACTIONS(2665), + [sym_crate] = ACTIONS(2665), + [sym_metavariable] = ACTIONS(2663), + [sym__raw_string_literal_start] = ACTIONS(2663), + [sym_float_literal] = ACTIONS(2663), }, [731] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_macro_rules_BANG] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_u8] = ACTIONS(2829), - [anon_sym_i8] = ACTIONS(2829), - [anon_sym_u16] = ACTIONS(2829), - [anon_sym_i16] = ACTIONS(2829), - [anon_sym_u32] = ACTIONS(2829), - [anon_sym_i32] = ACTIONS(2829), - [anon_sym_u64] = ACTIONS(2829), - [anon_sym_i64] = ACTIONS(2829), - [anon_sym_u128] = ACTIONS(2829), - [anon_sym_i128] = ACTIONS(2829), - [anon_sym_isize] = ACTIONS(2829), - [anon_sym_usize] = ACTIONS(2829), - [anon_sym_f32] = ACTIONS(2829), - [anon_sym_f64] = ACTIONS(2829), - [anon_sym_bool] = ACTIONS(2829), - [anon_sym_str] = ACTIONS(2829), - [anon_sym_char] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_DOT_DOT] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_async] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_fn] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_impl] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2829), - [anon_sym_loop] = ACTIONS(2829), - [anon_sym_match] = ACTIONS(2829), - [anon_sym_mod] = ACTIONS(2829), - [anon_sym_pub] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_trait] = ACTIONS(2829), - [anon_sym_type] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(2829), - [anon_sym_use] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym_yield] = ACTIONS(2829), - [anon_sym_move] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [sym_integer_literal] = ACTIONS(2827), - [aux_sym_string_literal_token1] = ACTIONS(2827), - [sym_char_literal] = ACTIONS(2827), - [anon_sym_true] = ACTIONS(2829), - [anon_sym_false] = ACTIONS(2829), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2829), - [sym_super] = ACTIONS(2829), - [sym_crate] = ACTIONS(2829), - [sym_metavariable] = ACTIONS(2827), - [sym__raw_string_literal_start] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_macro_rules_BANG] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_u8] = ACTIONS(2669), + [anon_sym_i8] = ACTIONS(2669), + [anon_sym_u16] = ACTIONS(2669), + [anon_sym_i16] = ACTIONS(2669), + [anon_sym_u32] = ACTIONS(2669), + [anon_sym_i32] = ACTIONS(2669), + [anon_sym_u64] = ACTIONS(2669), + [anon_sym_i64] = ACTIONS(2669), + [anon_sym_u128] = ACTIONS(2669), + [anon_sym_i128] = ACTIONS(2669), + [anon_sym_isize] = ACTIONS(2669), + [anon_sym_usize] = ACTIONS(2669), + [anon_sym_f32] = ACTIONS(2669), + [anon_sym_f64] = ACTIONS(2669), + [anon_sym_bool] = ACTIONS(2669), + [anon_sym_str] = ACTIONS(2669), + [anon_sym_char] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_gen] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_impl] = ACTIONS(2669), + [anon_sym_let] = ACTIONS(2669), + [anon_sym_loop] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_mod] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_trait] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_use] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym_yield] = ACTIONS(2669), + [anon_sym_move] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [sym_integer_literal] = ACTIONS(2667), + [aux_sym_string_literal_token1] = ACTIONS(2667), + [sym_char_literal] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2669), + [anon_sym_false] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2669), + [sym_super] = ACTIONS(2669), + [sym_crate] = ACTIONS(2669), + [sym_metavariable] = ACTIONS(2667), + [sym__raw_string_literal_start] = ACTIONS(2667), + [sym_float_literal] = ACTIONS(2667), }, [732] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_macro_rules_BANG] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_u8] = ACTIONS(2833), - [anon_sym_i8] = ACTIONS(2833), - [anon_sym_u16] = ACTIONS(2833), - [anon_sym_i16] = ACTIONS(2833), - [anon_sym_u32] = ACTIONS(2833), - [anon_sym_i32] = ACTIONS(2833), - [anon_sym_u64] = ACTIONS(2833), - [anon_sym_i64] = ACTIONS(2833), - [anon_sym_u128] = ACTIONS(2833), - [anon_sym_i128] = ACTIONS(2833), - [anon_sym_isize] = ACTIONS(2833), - [anon_sym_usize] = ACTIONS(2833), - [anon_sym_f32] = ACTIONS(2833), - [anon_sym_f64] = ACTIONS(2833), - [anon_sym_bool] = ACTIONS(2833), - [anon_sym_str] = ACTIONS(2833), - [anon_sym_char] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_DOT_DOT] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_async] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), - [anon_sym_fn] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_impl] = ACTIONS(2833), - [anon_sym_let] = ACTIONS(2833), - [anon_sym_loop] = ACTIONS(2833), - [anon_sym_match] = ACTIONS(2833), - [anon_sym_mod] = ACTIONS(2833), - [anon_sym_pub] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_trait] = ACTIONS(2833), - [anon_sym_type] = ACTIONS(2833), - [anon_sym_union] = ACTIONS(2833), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_use] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_extern] = ACTIONS(2833), - [anon_sym_yield] = ACTIONS(2833), - [anon_sym_move] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [sym_integer_literal] = ACTIONS(2831), - [aux_sym_string_literal_token1] = ACTIONS(2831), - [sym_char_literal] = ACTIONS(2831), - [anon_sym_true] = ACTIONS(2833), - [anon_sym_false] = ACTIONS(2833), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2833), - [sym_super] = ACTIONS(2833), - [sym_crate] = ACTIONS(2833), - [sym_metavariable] = ACTIONS(2831), - [sym__raw_string_literal_start] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_macro_rules_BANG] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_u8] = ACTIONS(2673), + [anon_sym_i8] = ACTIONS(2673), + [anon_sym_u16] = ACTIONS(2673), + [anon_sym_i16] = ACTIONS(2673), + [anon_sym_u32] = ACTIONS(2673), + [anon_sym_i32] = ACTIONS(2673), + [anon_sym_u64] = ACTIONS(2673), + [anon_sym_i64] = ACTIONS(2673), + [anon_sym_u128] = ACTIONS(2673), + [anon_sym_i128] = ACTIONS(2673), + [anon_sym_isize] = ACTIONS(2673), + [anon_sym_usize] = ACTIONS(2673), + [anon_sym_f32] = ACTIONS(2673), + [anon_sym_f64] = ACTIONS(2673), + [anon_sym_bool] = ACTIONS(2673), + [anon_sym_str] = ACTIONS(2673), + [anon_sym_char] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_DOT_DOT] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_gen] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_impl] = ACTIONS(2673), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_loop] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_mod] = ACTIONS(2673), + [anon_sym_pub] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_trait] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_unsafe] = ACTIONS(2673), + [anon_sym_use] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_move] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [sym_integer_literal] = ACTIONS(2671), + [aux_sym_string_literal_token1] = ACTIONS(2671), + [sym_char_literal] = ACTIONS(2671), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2673), + [sym_super] = ACTIONS(2673), + [sym_crate] = ACTIONS(2673), + [sym_metavariable] = ACTIONS(2671), + [sym__raw_string_literal_start] = ACTIONS(2671), + [sym_float_literal] = ACTIONS(2671), }, [733] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_macro_rules_BANG] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_u8] = ACTIONS(2837), - [anon_sym_i8] = ACTIONS(2837), - [anon_sym_u16] = ACTIONS(2837), - [anon_sym_i16] = ACTIONS(2837), - [anon_sym_u32] = ACTIONS(2837), - [anon_sym_i32] = ACTIONS(2837), - [anon_sym_u64] = ACTIONS(2837), - [anon_sym_i64] = ACTIONS(2837), - [anon_sym_u128] = ACTIONS(2837), - [anon_sym_i128] = ACTIONS(2837), - [anon_sym_isize] = ACTIONS(2837), - [anon_sym_usize] = ACTIONS(2837), - [anon_sym_f32] = ACTIONS(2837), - [anon_sym_f64] = ACTIONS(2837), - [anon_sym_bool] = ACTIONS(2837), - [anon_sym_str] = ACTIONS(2837), - [anon_sym_char] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LT] = ACTIONS(2835), - [anon_sym_DOT_DOT] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_async] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_impl] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2837), - [anon_sym_loop] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_mod] = ACTIONS(2837), - [anon_sym_pub] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_trait] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_use] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_extern] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_move] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [sym_integer_literal] = ACTIONS(2835), - [aux_sym_string_literal_token1] = ACTIONS(2835), - [sym_char_literal] = ACTIONS(2835), - [anon_sym_true] = ACTIONS(2837), - [anon_sym_false] = ACTIONS(2837), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2837), - [sym_super] = ACTIONS(2837), - [sym_crate] = ACTIONS(2837), - [sym_metavariable] = ACTIONS(2835), - [sym__raw_string_literal_start] = ACTIONS(2835), - [sym_float_literal] = ACTIONS(2835), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_macro_rules_BANG] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_u8] = ACTIONS(2677), + [anon_sym_i8] = ACTIONS(2677), + [anon_sym_u16] = ACTIONS(2677), + [anon_sym_i16] = ACTIONS(2677), + [anon_sym_u32] = ACTIONS(2677), + [anon_sym_i32] = ACTIONS(2677), + [anon_sym_u64] = ACTIONS(2677), + [anon_sym_i64] = ACTIONS(2677), + [anon_sym_u128] = ACTIONS(2677), + [anon_sym_i128] = ACTIONS(2677), + [anon_sym_isize] = ACTIONS(2677), + [anon_sym_usize] = ACTIONS(2677), + [anon_sym_f32] = ACTIONS(2677), + [anon_sym_f64] = ACTIONS(2677), + [anon_sym_bool] = ACTIONS(2677), + [anon_sym_str] = ACTIONS(2677), + [anon_sym_char] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_DOT_DOT] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_fn] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_gen] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_impl] = ACTIONS(2677), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_loop] = ACTIONS(2677), + [anon_sym_match] = ACTIONS(2677), + [anon_sym_mod] = ACTIONS(2677), + [anon_sym_pub] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_trait] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2677), + [anon_sym_move] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [sym_integer_literal] = ACTIONS(2675), + [aux_sym_string_literal_token1] = ACTIONS(2675), + [sym_char_literal] = ACTIONS(2675), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2677), + [sym_super] = ACTIONS(2677), + [sym_crate] = ACTIONS(2677), + [sym_metavariable] = ACTIONS(2675), + [sym__raw_string_literal_start] = ACTIONS(2675), + [sym_float_literal] = ACTIONS(2675), }, [734] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_macro_rules_BANG] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_u8] = ACTIONS(2841), - [anon_sym_i8] = ACTIONS(2841), - [anon_sym_u16] = ACTIONS(2841), - [anon_sym_i16] = ACTIONS(2841), - [anon_sym_u32] = ACTIONS(2841), - [anon_sym_i32] = ACTIONS(2841), - [anon_sym_u64] = ACTIONS(2841), - [anon_sym_i64] = ACTIONS(2841), - [anon_sym_u128] = ACTIONS(2841), - [anon_sym_i128] = ACTIONS(2841), - [anon_sym_isize] = ACTIONS(2841), - [anon_sym_usize] = ACTIONS(2841), - [anon_sym_f32] = ACTIONS(2841), - [anon_sym_f64] = ACTIONS(2841), - [anon_sym_bool] = ACTIONS(2841), - [anon_sym_str] = ACTIONS(2841), - [anon_sym_char] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_PIPE] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_DOT_DOT] = ACTIONS(2839), - [anon_sym_COLON_COLON] = ACTIONS(2839), - [anon_sym_POUND] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [anon_sym_fn] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_impl] = ACTIONS(2841), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_loop] = ACTIONS(2841), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_mod] = ACTIONS(2841), - [anon_sym_pub] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_trait] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_union] = ACTIONS(2841), - [anon_sym_unsafe] = ACTIONS(2841), - [anon_sym_use] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_extern] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_move] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [sym_integer_literal] = ACTIONS(2839), - [aux_sym_string_literal_token1] = ACTIONS(2839), - [sym_char_literal] = ACTIONS(2839), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2841), - [sym_super] = ACTIONS(2841), - [sym_crate] = ACTIONS(2841), - [sym_metavariable] = ACTIONS(2839), - [sym__raw_string_literal_start] = ACTIONS(2839), - [sym_float_literal] = ACTIONS(2839), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_macro_rules_BANG] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_u8] = ACTIONS(2681), + [anon_sym_i8] = ACTIONS(2681), + [anon_sym_u16] = ACTIONS(2681), + [anon_sym_i16] = ACTIONS(2681), + [anon_sym_u32] = ACTIONS(2681), + [anon_sym_i32] = ACTIONS(2681), + [anon_sym_u64] = ACTIONS(2681), + [anon_sym_i64] = ACTIONS(2681), + [anon_sym_u128] = ACTIONS(2681), + [anon_sym_i128] = ACTIONS(2681), + [anon_sym_isize] = ACTIONS(2681), + [anon_sym_usize] = ACTIONS(2681), + [anon_sym_f32] = ACTIONS(2681), + [anon_sym_f64] = ACTIONS(2681), + [anon_sym_bool] = ACTIONS(2681), + [anon_sym_str] = ACTIONS(2681), + [anon_sym_char] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_fn] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_gen] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(2681), + [anon_sym_let] = ACTIONS(2681), + [anon_sym_loop] = ACTIONS(2681), + [anon_sym_match] = ACTIONS(2681), + [anon_sym_mod] = ACTIONS(2681), + [anon_sym_pub] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_trait] = ACTIONS(2681), + [anon_sym_type] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2681), + [anon_sym_move] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [sym_integer_literal] = ACTIONS(2679), + [aux_sym_string_literal_token1] = ACTIONS(2679), + [sym_char_literal] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2681), + [anon_sym_false] = ACTIONS(2681), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2681), + [sym_super] = ACTIONS(2681), + [sym_crate] = ACTIONS(2681), + [sym_metavariable] = ACTIONS(2679), + [sym__raw_string_literal_start] = ACTIONS(2679), + [sym_float_literal] = ACTIONS(2679), }, [735] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_macro_rules_BANG] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_u8] = ACTIONS(2845), - [anon_sym_i8] = ACTIONS(2845), - [anon_sym_u16] = ACTIONS(2845), - [anon_sym_i16] = ACTIONS(2845), - [anon_sym_u32] = ACTIONS(2845), - [anon_sym_i32] = ACTIONS(2845), - [anon_sym_u64] = ACTIONS(2845), - [anon_sym_i64] = ACTIONS(2845), - [anon_sym_u128] = ACTIONS(2845), - [anon_sym_i128] = ACTIONS(2845), - [anon_sym_isize] = ACTIONS(2845), - [anon_sym_usize] = ACTIONS(2845), - [anon_sym_f32] = ACTIONS(2845), - [anon_sym_f64] = ACTIONS(2845), - [anon_sym_bool] = ACTIONS(2845), - [anon_sym_str] = ACTIONS(2845), - [anon_sym_char] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_impl] = ACTIONS(2845), - [anon_sym_let] = ACTIONS(2845), - [anon_sym_loop] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_mod] = ACTIONS(2845), - [anon_sym_pub] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_trait] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_unsafe] = ACTIONS(2845), - [anon_sym_use] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_extern] = ACTIONS(2845), - [anon_sym_yield] = ACTIONS(2845), - [anon_sym_move] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [sym_integer_literal] = ACTIONS(2843), - [aux_sym_string_literal_token1] = ACTIONS(2843), - [sym_char_literal] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2845), - [sym_super] = ACTIONS(2845), - [sym_crate] = ACTIONS(2845), - [sym_metavariable] = ACTIONS(2843), - [sym__raw_string_literal_start] = ACTIONS(2843), - [sym_float_literal] = ACTIONS(2843), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_macro_rules_BANG] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_u8] = ACTIONS(2685), + [anon_sym_i8] = ACTIONS(2685), + [anon_sym_u16] = ACTIONS(2685), + [anon_sym_i16] = ACTIONS(2685), + [anon_sym_u32] = ACTIONS(2685), + [anon_sym_i32] = ACTIONS(2685), + [anon_sym_u64] = ACTIONS(2685), + [anon_sym_i64] = ACTIONS(2685), + [anon_sym_u128] = ACTIONS(2685), + [anon_sym_i128] = ACTIONS(2685), + [anon_sym_isize] = ACTIONS(2685), + [anon_sym_usize] = ACTIONS(2685), + [anon_sym_f32] = ACTIONS(2685), + [anon_sym_f64] = ACTIONS(2685), + [anon_sym_bool] = ACTIONS(2685), + [anon_sym_str] = ACTIONS(2685), + [anon_sym_char] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_DOT_DOT] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_gen] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_impl] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_loop] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_mod] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_trait] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_move] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [sym_integer_literal] = ACTIONS(2683), + [aux_sym_string_literal_token1] = ACTIONS(2683), + [sym_char_literal] = ACTIONS(2683), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2685), + [sym_super] = ACTIONS(2685), + [sym_crate] = ACTIONS(2685), + [sym_metavariable] = ACTIONS(2683), + [sym__raw_string_literal_start] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), }, [736] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2847), - [sym_identifier] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_macro_rules_BANG] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_u8] = ACTIONS(2849), - [anon_sym_i8] = ACTIONS(2849), - [anon_sym_u16] = ACTIONS(2849), - [anon_sym_i16] = ACTIONS(2849), - [anon_sym_u32] = ACTIONS(2849), - [anon_sym_i32] = ACTIONS(2849), - [anon_sym_u64] = ACTIONS(2849), - [anon_sym_i64] = ACTIONS(2849), - [anon_sym_u128] = ACTIONS(2849), - [anon_sym_i128] = ACTIONS(2849), - [anon_sym_isize] = ACTIONS(2849), - [anon_sym_usize] = ACTIONS(2849), - [anon_sym_f32] = ACTIONS(2849), - [anon_sym_f64] = ACTIONS(2849), - [anon_sym_bool] = ACTIONS(2849), - [anon_sym_str] = ACTIONS(2849), - [anon_sym_char] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_DOT_DOT] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_POUND] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_async] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_fn] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_impl] = ACTIONS(2849), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_loop] = ACTIONS(2849), - [anon_sym_match] = ACTIONS(2849), - [anon_sym_mod] = ACTIONS(2849), - [anon_sym_pub] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_trait] = ACTIONS(2849), - [anon_sym_type] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(2849), - [anon_sym_use] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym_yield] = ACTIONS(2849), - [anon_sym_move] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [sym_integer_literal] = ACTIONS(2847), - [aux_sym_string_literal_token1] = ACTIONS(2847), - [sym_char_literal] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2849), - [anon_sym_false] = ACTIONS(2849), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2849), - [sym_super] = ACTIONS(2849), - [sym_crate] = ACTIONS(2849), - [sym_metavariable] = ACTIONS(2847), - [sym__raw_string_literal_start] = ACTIONS(2847), - [sym_float_literal] = ACTIONS(2847), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_macro_rules_BANG] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_u8] = ACTIONS(2689), + [anon_sym_i8] = ACTIONS(2689), + [anon_sym_u16] = ACTIONS(2689), + [anon_sym_i16] = ACTIONS(2689), + [anon_sym_u32] = ACTIONS(2689), + [anon_sym_i32] = ACTIONS(2689), + [anon_sym_u64] = ACTIONS(2689), + [anon_sym_i64] = ACTIONS(2689), + [anon_sym_u128] = ACTIONS(2689), + [anon_sym_i128] = ACTIONS(2689), + [anon_sym_isize] = ACTIONS(2689), + [anon_sym_usize] = ACTIONS(2689), + [anon_sym_f32] = ACTIONS(2689), + [anon_sym_f64] = ACTIONS(2689), + [anon_sym_bool] = ACTIONS(2689), + [anon_sym_str] = ACTIONS(2689), + [anon_sym_char] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_POUND] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_gen] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_impl] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_loop] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_mod] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_trait] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_use] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_move] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [sym_integer_literal] = ACTIONS(2687), + [aux_sym_string_literal_token1] = ACTIONS(2687), + [sym_char_literal] = ACTIONS(2687), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2689), + [sym_super] = ACTIONS(2689), + [sym_crate] = ACTIONS(2689), + [sym_metavariable] = ACTIONS(2687), + [sym__raw_string_literal_start] = ACTIONS(2687), + [sym_float_literal] = ACTIONS(2687), }, [737] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2851), - [sym_identifier] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_macro_rules_BANG] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_u8] = ACTIONS(2853), - [anon_sym_i8] = ACTIONS(2853), - [anon_sym_u16] = ACTIONS(2853), - [anon_sym_i16] = ACTIONS(2853), - [anon_sym_u32] = ACTIONS(2853), - [anon_sym_i32] = ACTIONS(2853), - [anon_sym_u64] = ACTIONS(2853), - [anon_sym_i64] = ACTIONS(2853), - [anon_sym_u128] = ACTIONS(2853), - [anon_sym_i128] = ACTIONS(2853), - [anon_sym_isize] = ACTIONS(2853), - [anon_sym_usize] = ACTIONS(2853), - [anon_sym_f32] = ACTIONS(2853), - [anon_sym_f64] = ACTIONS(2853), - [anon_sym_bool] = ACTIONS(2853), - [anon_sym_str] = ACTIONS(2853), - [anon_sym_char] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_DOT_DOT] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_async] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_fn] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_impl] = ACTIONS(2853), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_loop] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2853), - [anon_sym_mod] = ACTIONS(2853), - [anon_sym_pub] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_trait] = ACTIONS(2853), - [anon_sym_type] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_unsafe] = ACTIONS(2853), - [anon_sym_use] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_yield] = ACTIONS(2853), - [anon_sym_move] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [sym_integer_literal] = ACTIONS(2851), - [aux_sym_string_literal_token1] = ACTIONS(2851), - [sym_char_literal] = ACTIONS(2851), - [anon_sym_true] = ACTIONS(2853), - [anon_sym_false] = ACTIONS(2853), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2853), - [sym_super] = ACTIONS(2853), - [sym_crate] = ACTIONS(2853), - [sym_metavariable] = ACTIONS(2851), - [sym__raw_string_literal_start] = ACTIONS(2851), - [sym_float_literal] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_macro_rules_BANG] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_u8] = ACTIONS(2693), + [anon_sym_i8] = ACTIONS(2693), + [anon_sym_u16] = ACTIONS(2693), + [anon_sym_i16] = ACTIONS(2693), + [anon_sym_u32] = ACTIONS(2693), + [anon_sym_i32] = ACTIONS(2693), + [anon_sym_u64] = ACTIONS(2693), + [anon_sym_i64] = ACTIONS(2693), + [anon_sym_u128] = ACTIONS(2693), + [anon_sym_i128] = ACTIONS(2693), + [anon_sym_isize] = ACTIONS(2693), + [anon_sym_usize] = ACTIONS(2693), + [anon_sym_f32] = ACTIONS(2693), + [anon_sym_f64] = ACTIONS(2693), + [anon_sym_bool] = ACTIONS(2693), + [anon_sym_str] = ACTIONS(2693), + [anon_sym_char] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_DOT_DOT] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_POUND] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_fn] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_gen] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_impl] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_loop] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_mod] = ACTIONS(2693), + [anon_sym_pub] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_trait] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2693), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_move] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [sym_integer_literal] = ACTIONS(2691), + [aux_sym_string_literal_token1] = ACTIONS(2691), + [sym_char_literal] = ACTIONS(2691), + [anon_sym_true] = ACTIONS(2693), + [anon_sym_false] = ACTIONS(2693), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2693), + [sym_super] = ACTIONS(2693), + [sym_crate] = ACTIONS(2693), + [sym_metavariable] = ACTIONS(2691), + [sym__raw_string_literal_start] = ACTIONS(2691), + [sym_float_literal] = ACTIONS(2691), }, [738] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3351), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2855), - [sym_identifier] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_macro_rules_BANG] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_u8] = ACTIONS(2857), - [anon_sym_i8] = ACTIONS(2857), - [anon_sym_u16] = ACTIONS(2857), - [anon_sym_i16] = ACTIONS(2857), - [anon_sym_u32] = ACTIONS(2857), - [anon_sym_i32] = ACTIONS(2857), - [anon_sym_u64] = ACTIONS(2857), - [anon_sym_i64] = ACTIONS(2857), - [anon_sym_u128] = ACTIONS(2857), - [anon_sym_i128] = ACTIONS(2857), - [anon_sym_isize] = ACTIONS(2857), - [anon_sym_usize] = ACTIONS(2857), - [anon_sym_f32] = ACTIONS(2857), - [anon_sym_f64] = ACTIONS(2857), - [anon_sym_bool] = ACTIONS(2857), - [anon_sym_str] = ACTIONS(2857), - [anon_sym_char] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_DOT_DOT] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_break] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2857), - [anon_sym_continue] = ACTIONS(2857), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2857), - [anon_sym_fn] = ACTIONS(2857), - [anon_sym_for] = ACTIONS(2857), - [anon_sym_if] = ACTIONS(2857), - [anon_sym_impl] = ACTIONS(2857), - [anon_sym_let] = ACTIONS(2857), - [anon_sym_loop] = ACTIONS(2857), - [anon_sym_match] = ACTIONS(2857), - [anon_sym_mod] = ACTIONS(2857), - [anon_sym_pub] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2857), - [anon_sym_static] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2857), - [anon_sym_trait] = ACTIONS(2857), - [anon_sym_type] = ACTIONS(2857), - [anon_sym_union] = ACTIONS(2857), - [anon_sym_unsafe] = ACTIONS(2857), - [anon_sym_use] = ACTIONS(2857), - [anon_sym_while] = ACTIONS(2857), - [anon_sym_extern] = ACTIONS(2857), - [anon_sym_yield] = ACTIONS(2857), - [anon_sym_move] = ACTIONS(2857), - [anon_sym_try] = ACTIONS(2857), - [sym_integer_literal] = ACTIONS(2855), - [aux_sym_string_literal_token1] = ACTIONS(2855), - [sym_char_literal] = ACTIONS(2855), - [anon_sym_true] = ACTIONS(2857), - [anon_sym_false] = ACTIONS(2857), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2857), - [sym_super] = ACTIONS(2857), - [sym_crate] = ACTIONS(2857), - [sym_metavariable] = ACTIONS(2855), - [sym__raw_string_literal_start] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), + [aux_sym_match_block_repeat1] = STATE(753), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [739] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2859), - [anon_sym_macro_rules_BANG] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_u8] = ACTIONS(2861), - [anon_sym_i8] = ACTIONS(2861), - [anon_sym_u16] = ACTIONS(2861), - [anon_sym_i16] = ACTIONS(2861), - [anon_sym_u32] = ACTIONS(2861), - [anon_sym_i32] = ACTIONS(2861), - [anon_sym_u64] = ACTIONS(2861), - [anon_sym_i64] = ACTIONS(2861), - [anon_sym_u128] = ACTIONS(2861), - [anon_sym_i128] = ACTIONS(2861), - [anon_sym_isize] = ACTIONS(2861), - [anon_sym_usize] = ACTIONS(2861), - [anon_sym_f32] = ACTIONS(2861), - [anon_sym_f64] = ACTIONS(2861), - [anon_sym_bool] = ACTIONS(2861), - [anon_sym_str] = ACTIONS(2861), - [anon_sym_char] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2859), - [anon_sym_DOT_DOT] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2859), - [anon_sym_POUND] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_const] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_default] = ACTIONS(2861), - [anon_sym_enum] = ACTIONS(2861), - [anon_sym_fn] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_impl] = ACTIONS(2861), - [anon_sym_let] = ACTIONS(2861), - [anon_sym_loop] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_mod] = ACTIONS(2861), - [anon_sym_pub] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_static] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_trait] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_union] = ACTIONS(2861), - [anon_sym_unsafe] = ACTIONS(2861), - [anon_sym_use] = ACTIONS(2861), - [anon_sym_while] = ACTIONS(2861), - [anon_sym_extern] = ACTIONS(2861), - [anon_sym_yield] = ACTIONS(2861), - [anon_sym_move] = ACTIONS(2861), - [anon_sym_try] = ACTIONS(2861), - [sym_integer_literal] = ACTIONS(2859), - [aux_sym_string_literal_token1] = ACTIONS(2859), - [sym_char_literal] = ACTIONS(2859), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2861), - [sym_super] = ACTIONS(2861), - [sym_crate] = ACTIONS(2861), - [sym_metavariable] = ACTIONS(2859), - [sym__raw_string_literal_start] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_macro_rules_BANG] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_u8] = ACTIONS(2697), + [anon_sym_i8] = ACTIONS(2697), + [anon_sym_u16] = ACTIONS(2697), + [anon_sym_i16] = ACTIONS(2697), + [anon_sym_u32] = ACTIONS(2697), + [anon_sym_i32] = ACTIONS(2697), + [anon_sym_u64] = ACTIONS(2697), + [anon_sym_i64] = ACTIONS(2697), + [anon_sym_u128] = ACTIONS(2697), + [anon_sym_i128] = ACTIONS(2697), + [anon_sym_isize] = ACTIONS(2697), + [anon_sym_usize] = ACTIONS(2697), + [anon_sym_f32] = ACTIONS(2697), + [anon_sym_f64] = ACTIONS(2697), + [anon_sym_bool] = ACTIONS(2697), + [anon_sym_str] = ACTIONS(2697), + [anon_sym_char] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_gen] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_impl] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_loop] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_mod] = ACTIONS(2697), + [anon_sym_pub] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_trait] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_use] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_yield] = ACTIONS(2697), + [anon_sym_move] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [sym_integer_literal] = ACTIONS(2695), + [aux_sym_string_literal_token1] = ACTIONS(2695), + [sym_char_literal] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2697), + [sym_super] = ACTIONS(2697), + [sym_crate] = ACTIONS(2697), + [sym_metavariable] = ACTIONS(2695), + [sym__raw_string_literal_start] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), }, [740] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_macro_rules_BANG] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_u8] = ACTIONS(2865), - [anon_sym_i8] = ACTIONS(2865), - [anon_sym_u16] = ACTIONS(2865), - [anon_sym_i16] = ACTIONS(2865), - [anon_sym_u32] = ACTIONS(2865), - [anon_sym_i32] = ACTIONS(2865), - [anon_sym_u64] = ACTIONS(2865), - [anon_sym_i64] = ACTIONS(2865), - [anon_sym_u128] = ACTIONS(2865), - [anon_sym_i128] = ACTIONS(2865), - [anon_sym_isize] = ACTIONS(2865), - [anon_sym_usize] = ACTIONS(2865), - [anon_sym_f32] = ACTIONS(2865), - [anon_sym_f64] = ACTIONS(2865), - [anon_sym_bool] = ACTIONS(2865), - [anon_sym_str] = ACTIONS(2865), - [anon_sym_char] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_DOT_DOT] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2863), - [anon_sym_POUND] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_async] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_default] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_impl] = ACTIONS(2865), - [anon_sym_let] = ACTIONS(2865), - [anon_sym_loop] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_mod] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_static] = ACTIONS(2865), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_trait] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_use] = ACTIONS(2865), - [anon_sym_while] = ACTIONS(2865), - [anon_sym_extern] = ACTIONS(2865), - [anon_sym_yield] = ACTIONS(2865), - [anon_sym_move] = ACTIONS(2865), - [anon_sym_try] = ACTIONS(2865), - [sym_integer_literal] = ACTIONS(2863), - [aux_sym_string_literal_token1] = ACTIONS(2863), - [sym_char_literal] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2865), - [sym_super] = ACTIONS(2865), - [sym_crate] = ACTIONS(2865), - [sym_metavariable] = ACTIONS(2863), - [sym__raw_string_literal_start] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2863), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_macro_rules_BANG] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_u8] = ACTIONS(2701), + [anon_sym_i8] = ACTIONS(2701), + [anon_sym_u16] = ACTIONS(2701), + [anon_sym_i16] = ACTIONS(2701), + [anon_sym_u32] = ACTIONS(2701), + [anon_sym_i32] = ACTIONS(2701), + [anon_sym_u64] = ACTIONS(2701), + [anon_sym_i64] = ACTIONS(2701), + [anon_sym_u128] = ACTIONS(2701), + [anon_sym_i128] = ACTIONS(2701), + [anon_sym_isize] = ACTIONS(2701), + [anon_sym_usize] = ACTIONS(2701), + [anon_sym_f32] = ACTIONS(2701), + [anon_sym_f64] = ACTIONS(2701), + [anon_sym_bool] = ACTIONS(2701), + [anon_sym_str] = ACTIONS(2701), + [anon_sym_char] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_DOT_DOT] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_gen] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_impl] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_loop] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_mod] = ACTIONS(2701), + [anon_sym_pub] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_trait] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_move] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [sym_integer_literal] = ACTIONS(2699), + [aux_sym_string_literal_token1] = ACTIONS(2699), + [sym_char_literal] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_crate] = ACTIONS(2701), + [sym_metavariable] = ACTIONS(2699), + [sym__raw_string_literal_start] = ACTIONS(2699), + [sym_float_literal] = ACTIONS(2699), }, [741] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_macro_rules_BANG] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_u8] = ACTIONS(2869), - [anon_sym_i8] = ACTIONS(2869), - [anon_sym_u16] = ACTIONS(2869), - [anon_sym_i16] = ACTIONS(2869), - [anon_sym_u32] = ACTIONS(2869), - [anon_sym_i32] = ACTIONS(2869), - [anon_sym_u64] = ACTIONS(2869), - [anon_sym_i64] = ACTIONS(2869), - [anon_sym_u128] = ACTIONS(2869), - [anon_sym_i128] = ACTIONS(2869), - [anon_sym_isize] = ACTIONS(2869), - [anon_sym_usize] = ACTIONS(2869), - [anon_sym_f32] = ACTIONS(2869), - [anon_sym_f64] = ACTIONS(2869), - [anon_sym_bool] = ACTIONS(2869), - [anon_sym_str] = ACTIONS(2869), - [anon_sym_char] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_DOT_DOT] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_POUND] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_async] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_impl] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_loop] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_mod] = ACTIONS(2869), - [anon_sym_pub] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_trait] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_use] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym_yield] = ACTIONS(2869), - [anon_sym_move] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [sym_integer_literal] = ACTIONS(2867), - [aux_sym_string_literal_token1] = ACTIONS(2867), - [sym_char_literal] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2869), - [sym_super] = ACTIONS(2869), - [sym_crate] = ACTIONS(2869), - [sym_metavariable] = ACTIONS(2867), - [sym__raw_string_literal_start] = ACTIONS(2867), - [sym_float_literal] = ACTIONS(2867), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_macro_rules_BANG] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_u8] = ACTIONS(2705), + [anon_sym_i8] = ACTIONS(2705), + [anon_sym_u16] = ACTIONS(2705), + [anon_sym_i16] = ACTIONS(2705), + [anon_sym_u32] = ACTIONS(2705), + [anon_sym_i32] = ACTIONS(2705), + [anon_sym_u64] = ACTIONS(2705), + [anon_sym_i64] = ACTIONS(2705), + [anon_sym_u128] = ACTIONS(2705), + [anon_sym_i128] = ACTIONS(2705), + [anon_sym_isize] = ACTIONS(2705), + [anon_sym_usize] = ACTIONS(2705), + [anon_sym_f32] = ACTIONS(2705), + [anon_sym_f64] = ACTIONS(2705), + [anon_sym_bool] = ACTIONS(2705), + [anon_sym_str] = ACTIONS(2705), + [anon_sym_char] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_gen] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_impl] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_loop] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_mod] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_trait] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_use] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_move] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [sym_integer_literal] = ACTIONS(2703), + [aux_sym_string_literal_token1] = ACTIONS(2703), + [sym_char_literal] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_crate] = ACTIONS(2705), + [sym_metavariable] = ACTIONS(2703), + [sym__raw_string_literal_start] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), }, [742] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_macro_rules_BANG] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_u8] = ACTIONS(2873), - [anon_sym_i8] = ACTIONS(2873), - [anon_sym_u16] = ACTIONS(2873), - [anon_sym_i16] = ACTIONS(2873), - [anon_sym_u32] = ACTIONS(2873), - [anon_sym_i32] = ACTIONS(2873), - [anon_sym_u64] = ACTIONS(2873), - [anon_sym_i64] = ACTIONS(2873), - [anon_sym_u128] = ACTIONS(2873), - [anon_sym_i128] = ACTIONS(2873), - [anon_sym_isize] = ACTIONS(2873), - [anon_sym_usize] = ACTIONS(2873), - [anon_sym_f32] = ACTIONS(2873), - [anon_sym_f64] = ACTIONS(2873), - [anon_sym_bool] = ACTIONS(2873), - [anon_sym_str] = ACTIONS(2873), - [anon_sym_char] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2871), - [anon_sym_LT] = ACTIONS(2871), - [anon_sym_DOT_DOT] = ACTIONS(2871), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_POUND] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_fn] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_impl] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_loop] = ACTIONS(2873), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_mod] = ACTIONS(2873), - [anon_sym_pub] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_trait] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_unsafe] = ACTIONS(2873), - [anon_sym_use] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_move] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [sym_integer_literal] = ACTIONS(2871), - [aux_sym_string_literal_token1] = ACTIONS(2871), - [sym_char_literal] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2873), - [sym_super] = ACTIONS(2873), - [sym_crate] = ACTIONS(2873), - [sym_metavariable] = ACTIONS(2871), - [sym__raw_string_literal_start] = ACTIONS(2871), - [sym_float_literal] = ACTIONS(2871), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_macro_rules_BANG] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_u8] = ACTIONS(2709), + [anon_sym_i8] = ACTIONS(2709), + [anon_sym_u16] = ACTIONS(2709), + [anon_sym_i16] = ACTIONS(2709), + [anon_sym_u32] = ACTIONS(2709), + [anon_sym_i32] = ACTIONS(2709), + [anon_sym_u64] = ACTIONS(2709), + [anon_sym_i64] = ACTIONS(2709), + [anon_sym_u128] = ACTIONS(2709), + [anon_sym_i128] = ACTIONS(2709), + [anon_sym_isize] = ACTIONS(2709), + [anon_sym_usize] = ACTIONS(2709), + [anon_sym_f32] = ACTIONS(2709), + [anon_sym_f64] = ACTIONS(2709), + [anon_sym_bool] = ACTIONS(2709), + [anon_sym_str] = ACTIONS(2709), + [anon_sym_char] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_DOT_DOT] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_gen] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_impl] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_mod] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_trait] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_move] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(2707), + [aux_sym_string_literal_token1] = ACTIONS(2707), + [sym_char_literal] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_crate] = ACTIONS(2709), + [sym_metavariable] = ACTIONS(2707), + [sym__raw_string_literal_start] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), }, [743] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_macro_rules_BANG] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_u8] = ACTIONS(2877), - [anon_sym_i8] = ACTIONS(2877), - [anon_sym_u16] = ACTIONS(2877), - [anon_sym_i16] = ACTIONS(2877), - [anon_sym_u32] = ACTIONS(2877), - [anon_sym_i32] = ACTIONS(2877), - [anon_sym_u64] = ACTIONS(2877), - [anon_sym_i64] = ACTIONS(2877), - [anon_sym_u128] = ACTIONS(2877), - [anon_sym_i128] = ACTIONS(2877), - [anon_sym_isize] = ACTIONS(2877), - [anon_sym_usize] = ACTIONS(2877), - [anon_sym_f32] = ACTIONS(2877), - [anon_sym_f64] = ACTIONS(2877), - [anon_sym_bool] = ACTIONS(2877), - [anon_sym_str] = ACTIONS(2877), - [anon_sym_char] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_DOT_DOT] = ACTIONS(2875), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_POUND] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_async] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_impl] = ACTIONS(2877), - [anon_sym_let] = ACTIONS(2877), - [anon_sym_loop] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_mod] = ACTIONS(2877), - [anon_sym_pub] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_trait] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_use] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym_yield] = ACTIONS(2877), - [anon_sym_move] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [sym_integer_literal] = ACTIONS(2875), - [aux_sym_string_literal_token1] = ACTIONS(2875), - [sym_char_literal] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2877), - [anon_sym_false] = ACTIONS(2877), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2877), - [sym_super] = ACTIONS(2877), - [sym_crate] = ACTIONS(2877), - [sym_metavariable] = ACTIONS(2875), - [sym__raw_string_literal_start] = ACTIONS(2875), - [sym_float_literal] = ACTIONS(2875), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_macro_rules_BANG] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_u8] = ACTIONS(2713), + [anon_sym_i8] = ACTIONS(2713), + [anon_sym_u16] = ACTIONS(2713), + [anon_sym_i16] = ACTIONS(2713), + [anon_sym_u32] = ACTIONS(2713), + [anon_sym_i32] = ACTIONS(2713), + [anon_sym_u64] = ACTIONS(2713), + [anon_sym_i64] = ACTIONS(2713), + [anon_sym_u128] = ACTIONS(2713), + [anon_sym_i128] = ACTIONS(2713), + [anon_sym_isize] = ACTIONS(2713), + [anon_sym_usize] = ACTIONS(2713), + [anon_sym_f32] = ACTIONS(2713), + [anon_sym_f64] = ACTIONS(2713), + [anon_sym_bool] = ACTIONS(2713), + [anon_sym_str] = ACTIONS(2713), + [anon_sym_char] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_DOT_DOT] = ACTIONS(2711), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_fn] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_gen] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_impl] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_loop] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2713), + [anon_sym_mod] = ACTIONS(2713), + [anon_sym_pub] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_trait] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_unsafe] = ACTIONS(2713), + [anon_sym_use] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_move] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2711), + [aux_sym_string_literal_token1] = ACTIONS(2711), + [sym_char_literal] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_crate] = ACTIONS(2713), + [sym_metavariable] = ACTIONS(2711), + [sym__raw_string_literal_start] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(2711), }, [744] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2879), - [sym_identifier] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_macro_rules_BANG] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_u8] = ACTIONS(2881), - [anon_sym_i8] = ACTIONS(2881), - [anon_sym_u16] = ACTIONS(2881), - [anon_sym_i16] = ACTIONS(2881), - [anon_sym_u32] = ACTIONS(2881), - [anon_sym_i32] = ACTIONS(2881), - [anon_sym_u64] = ACTIONS(2881), - [anon_sym_i64] = ACTIONS(2881), - [anon_sym_u128] = ACTIONS(2881), - [anon_sym_i128] = ACTIONS(2881), - [anon_sym_isize] = ACTIONS(2881), - [anon_sym_usize] = ACTIONS(2881), - [anon_sym_f32] = ACTIONS(2881), - [anon_sym_f64] = ACTIONS(2881), - [anon_sym_bool] = ACTIONS(2881), - [anon_sym_str] = ACTIONS(2881), - [anon_sym_char] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2879), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_DOT_DOT] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_POUND] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_async] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_fn] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_impl] = ACTIONS(2881), - [anon_sym_let] = ACTIONS(2881), - [anon_sym_loop] = ACTIONS(2881), - [anon_sym_match] = ACTIONS(2881), - [anon_sym_mod] = ACTIONS(2881), - [anon_sym_pub] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_trait] = ACTIONS(2881), - [anon_sym_type] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_unsafe] = ACTIONS(2881), - [anon_sym_use] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym_yield] = ACTIONS(2881), - [anon_sym_move] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [sym_integer_literal] = ACTIONS(2879), - [aux_sym_string_literal_token1] = ACTIONS(2879), - [sym_char_literal] = ACTIONS(2879), - [anon_sym_true] = ACTIONS(2881), - [anon_sym_false] = ACTIONS(2881), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2881), - [sym_super] = ACTIONS(2881), - [sym_crate] = ACTIONS(2881), - [sym_metavariable] = ACTIONS(2879), - [sym__raw_string_literal_start] = ACTIONS(2879), - [sym_float_literal] = ACTIONS(2879), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_macro_rules_BANG] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_u8] = ACTIONS(2717), + [anon_sym_i8] = ACTIONS(2717), + [anon_sym_u16] = ACTIONS(2717), + [anon_sym_i16] = ACTIONS(2717), + [anon_sym_u32] = ACTIONS(2717), + [anon_sym_i32] = ACTIONS(2717), + [anon_sym_u64] = ACTIONS(2717), + [anon_sym_i64] = ACTIONS(2717), + [anon_sym_u128] = ACTIONS(2717), + [anon_sym_i128] = ACTIONS(2717), + [anon_sym_isize] = ACTIONS(2717), + [anon_sym_usize] = ACTIONS(2717), + [anon_sym_f32] = ACTIONS(2717), + [anon_sym_f64] = ACTIONS(2717), + [anon_sym_bool] = ACTIONS(2717), + [anon_sym_str] = ACTIONS(2717), + [anon_sym_char] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_DOT_DOT] = ACTIONS(2715), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_gen] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_impl] = ACTIONS(2717), + [anon_sym_let] = ACTIONS(2717), + [anon_sym_loop] = ACTIONS(2717), + [anon_sym_match] = ACTIONS(2717), + [anon_sym_mod] = ACTIONS(2717), + [anon_sym_pub] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_trait] = ACTIONS(2717), + [anon_sym_type] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_unsafe] = ACTIONS(2717), + [anon_sym_use] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym_yield] = ACTIONS(2717), + [anon_sym_move] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [sym_integer_literal] = ACTIONS(2715), + [aux_sym_string_literal_token1] = ACTIONS(2715), + [sym_char_literal] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2717), + [sym_super] = ACTIONS(2717), + [sym_crate] = ACTIONS(2717), + [sym_metavariable] = ACTIONS(2715), + [sym__raw_string_literal_start] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), }, [745] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_macro_rules_BANG] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_u8] = ACTIONS(2885), - [anon_sym_i8] = ACTIONS(2885), - [anon_sym_u16] = ACTIONS(2885), - [anon_sym_i16] = ACTIONS(2885), - [anon_sym_u32] = ACTIONS(2885), - [anon_sym_i32] = ACTIONS(2885), - [anon_sym_u64] = ACTIONS(2885), - [anon_sym_i64] = ACTIONS(2885), - [anon_sym_u128] = ACTIONS(2885), - [anon_sym_i128] = ACTIONS(2885), - [anon_sym_isize] = ACTIONS(2885), - [anon_sym_usize] = ACTIONS(2885), - [anon_sym_f32] = ACTIONS(2885), - [anon_sym_f64] = ACTIONS(2885), - [anon_sym_bool] = ACTIONS(2885), - [anon_sym_str] = ACTIONS(2885), - [anon_sym_char] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_async] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_impl] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2885), - [anon_sym_loop] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_mod] = ACTIONS(2885), - [anon_sym_pub] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_trait] = ACTIONS(2885), - [anon_sym_type] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_use] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym_yield] = ACTIONS(2885), - [anon_sym_move] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [sym_integer_literal] = ACTIONS(2883), - [aux_sym_string_literal_token1] = ACTIONS(2883), - [sym_char_literal] = ACTIONS(2883), - [anon_sym_true] = ACTIONS(2885), - [anon_sym_false] = ACTIONS(2885), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2885), - [sym_super] = ACTIONS(2885), - [sym_crate] = ACTIONS(2885), - [sym_metavariable] = ACTIONS(2883), - [sym__raw_string_literal_start] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_macro_rules_BANG] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_u8] = ACTIONS(2721), + [anon_sym_i8] = ACTIONS(2721), + [anon_sym_u16] = ACTIONS(2721), + [anon_sym_i16] = ACTIONS(2721), + [anon_sym_u32] = ACTIONS(2721), + [anon_sym_i32] = ACTIONS(2721), + [anon_sym_u64] = ACTIONS(2721), + [anon_sym_i64] = ACTIONS(2721), + [anon_sym_u128] = ACTIONS(2721), + [anon_sym_i128] = ACTIONS(2721), + [anon_sym_isize] = ACTIONS(2721), + [anon_sym_usize] = ACTIONS(2721), + [anon_sym_f32] = ACTIONS(2721), + [anon_sym_f64] = ACTIONS(2721), + [anon_sym_bool] = ACTIONS(2721), + [anon_sym_str] = ACTIONS(2721), + [anon_sym_char] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_DOT_DOT] = ACTIONS(2719), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_fn] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_gen] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_impl] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_loop] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_mod] = ACTIONS(2721), + [anon_sym_pub] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_trait] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_unsafe] = ACTIONS(2721), + [anon_sym_use] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_move] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [sym_integer_literal] = ACTIONS(2719), + [aux_sym_string_literal_token1] = ACTIONS(2719), + [sym_char_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2721), + [anon_sym_false] = ACTIONS(2721), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_crate] = ACTIONS(2721), + [sym_metavariable] = ACTIONS(2719), + [sym__raw_string_literal_start] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), }, [746] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3498), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_macro_rules_BANG] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u128] = ACTIONS(2889), - [anon_sym_i128] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_str] = ACTIONS(2889), - [anon_sym_char] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_fn] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_impl] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_loop] = ACTIONS(2889), - [anon_sym_match] = ACTIONS(2889), - [anon_sym_mod] = ACTIONS(2889), - [anon_sym_pub] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_trait] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_unsafe] = ACTIONS(2889), - [anon_sym_use] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_move] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [sym_integer_literal] = ACTIONS(2887), - [aux_sym_string_literal_token1] = ACTIONS(2887), - [sym_char_literal] = ACTIONS(2887), - [anon_sym_true] = ACTIONS(2889), - [anon_sym_false] = ACTIONS(2889), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_crate] = ACTIONS(2889), - [sym_metavariable] = ACTIONS(2887), - [sym__raw_string_literal_start] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), + [aux_sym_match_block_repeat1] = STATE(753), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [747] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2891), - [sym_identifier] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_macro_rules_BANG] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_u8] = ACTIONS(2893), - [anon_sym_i8] = ACTIONS(2893), - [anon_sym_u16] = ACTIONS(2893), - [anon_sym_i16] = ACTIONS(2893), - [anon_sym_u32] = ACTIONS(2893), - [anon_sym_i32] = ACTIONS(2893), - [anon_sym_u64] = ACTIONS(2893), - [anon_sym_i64] = ACTIONS(2893), - [anon_sym_u128] = ACTIONS(2893), - [anon_sym_i128] = ACTIONS(2893), - [anon_sym_isize] = ACTIONS(2893), - [anon_sym_usize] = ACTIONS(2893), - [anon_sym_f32] = ACTIONS(2893), - [anon_sym_f64] = ACTIONS(2893), - [anon_sym_bool] = ACTIONS(2893), - [anon_sym_str] = ACTIONS(2893), - [anon_sym_char] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_fn] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_impl] = ACTIONS(2893), - [anon_sym_let] = ACTIONS(2893), - [anon_sym_loop] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2893), - [anon_sym_mod] = ACTIONS(2893), - [anon_sym_pub] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_trait] = ACTIONS(2893), - [anon_sym_type] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_unsafe] = ACTIONS(2893), - [anon_sym_use] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym_yield] = ACTIONS(2893), - [anon_sym_move] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [sym_integer_literal] = ACTIONS(2891), - [aux_sym_string_literal_token1] = ACTIONS(2891), - [sym_char_literal] = ACTIONS(2891), - [anon_sym_true] = ACTIONS(2893), - [anon_sym_false] = ACTIONS(2893), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2893), - [sym_super] = ACTIONS(2893), - [sym_crate] = ACTIONS(2893), - [sym_metavariable] = ACTIONS(2891), - [sym__raw_string_literal_start] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_macro_rules_BANG] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_u8] = ACTIONS(2725), + [anon_sym_i8] = ACTIONS(2725), + [anon_sym_u16] = ACTIONS(2725), + [anon_sym_i16] = ACTIONS(2725), + [anon_sym_u32] = ACTIONS(2725), + [anon_sym_i32] = ACTIONS(2725), + [anon_sym_u64] = ACTIONS(2725), + [anon_sym_i64] = ACTIONS(2725), + [anon_sym_u128] = ACTIONS(2725), + [anon_sym_i128] = ACTIONS(2725), + [anon_sym_isize] = ACTIONS(2725), + [anon_sym_usize] = ACTIONS(2725), + [anon_sym_f32] = ACTIONS(2725), + [anon_sym_f64] = ACTIONS(2725), + [anon_sym_bool] = ACTIONS(2725), + [anon_sym_str] = ACTIONS(2725), + [anon_sym_char] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_async] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_gen] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_impl] = ACTIONS(2725), + [anon_sym_let] = ACTIONS(2725), + [anon_sym_loop] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_mod] = ACTIONS(2725), + [anon_sym_pub] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_trait] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_use] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym_yield] = ACTIONS(2725), + [anon_sym_move] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [sym_integer_literal] = ACTIONS(2723), + [aux_sym_string_literal_token1] = ACTIONS(2723), + [sym_char_literal] = ACTIONS(2723), + [anon_sym_true] = ACTIONS(2725), + [anon_sym_false] = ACTIONS(2725), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2725), + [sym_super] = ACTIONS(2725), + [sym_crate] = ACTIONS(2725), + [sym_metavariable] = ACTIONS(2723), + [sym__raw_string_literal_start] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), }, [748] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_last_match_arm] = STATE(3392), + [sym_match_pattern] = STATE(3402), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2895), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym_macro_rules_BANG] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_u8] = ACTIONS(2897), - [anon_sym_i8] = ACTIONS(2897), - [anon_sym_u16] = ACTIONS(2897), - [anon_sym_i16] = ACTIONS(2897), - [anon_sym_u32] = ACTIONS(2897), - [anon_sym_i32] = ACTIONS(2897), - [anon_sym_u64] = ACTIONS(2897), - [anon_sym_i64] = ACTIONS(2897), - [anon_sym_u128] = ACTIONS(2897), - [anon_sym_i128] = ACTIONS(2897), - [anon_sym_isize] = ACTIONS(2897), - [anon_sym_usize] = ACTIONS(2897), - [anon_sym_f32] = ACTIONS(2897), - [anon_sym_f64] = ACTIONS(2897), - [anon_sym_bool] = ACTIONS(2897), - [anon_sym_str] = ACTIONS(2897), - [anon_sym_char] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_DOT_DOT] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_fn] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_impl] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_loop] = ACTIONS(2897), - [anon_sym_match] = ACTIONS(2897), - [anon_sym_mod] = ACTIONS(2897), - [anon_sym_pub] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_trait] = ACTIONS(2897), - [anon_sym_type] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_unsafe] = ACTIONS(2897), - [anon_sym_use] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym_yield] = ACTIONS(2897), - [anon_sym_move] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [sym_integer_literal] = ACTIONS(2895), - [aux_sym_string_literal_token1] = ACTIONS(2895), - [sym_char_literal] = ACTIONS(2895), - [anon_sym_true] = ACTIONS(2897), - [anon_sym_false] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2897), - [sym_super] = ACTIONS(2897), - [sym_crate] = ACTIONS(2897), - [sym_metavariable] = ACTIONS(2895), - [sym__raw_string_literal_start] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), + [aux_sym_match_block_repeat1] = STATE(753), + [aux_sym_match_arm_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [749] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2899), - [sym_identifier] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_macro_rules_BANG] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_u8] = ACTIONS(2901), - [anon_sym_i8] = ACTIONS(2901), - [anon_sym_u16] = ACTIONS(2901), - [anon_sym_i16] = ACTIONS(2901), - [anon_sym_u32] = ACTIONS(2901), - [anon_sym_i32] = ACTIONS(2901), - [anon_sym_u64] = ACTIONS(2901), - [anon_sym_i64] = ACTIONS(2901), - [anon_sym_u128] = ACTIONS(2901), - [anon_sym_i128] = ACTIONS(2901), - [anon_sym_isize] = ACTIONS(2901), - [anon_sym_usize] = ACTIONS(2901), - [anon_sym_f32] = ACTIONS(2901), - [anon_sym_f64] = ACTIONS(2901), - [anon_sym_bool] = ACTIONS(2901), - [anon_sym_str] = ACTIONS(2901), - [anon_sym_char] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_DOT_DOT] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_fn] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_impl] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_loop] = ACTIONS(2901), - [anon_sym_match] = ACTIONS(2901), - [anon_sym_mod] = ACTIONS(2901), - [anon_sym_pub] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_trait] = ACTIONS(2901), - [anon_sym_type] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_use] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_move] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [sym_integer_literal] = ACTIONS(2899), - [aux_sym_string_literal_token1] = ACTIONS(2899), - [sym_char_literal] = ACTIONS(2899), - [anon_sym_true] = ACTIONS(2901), - [anon_sym_false] = ACTIONS(2901), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2901), - [sym_super] = ACTIONS(2901), - [sym_crate] = ACTIONS(2901), - [sym_metavariable] = ACTIONS(2899), - [sym__raw_string_literal_start] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_macro_rules_BANG] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_u8] = ACTIONS(2729), + [anon_sym_i8] = ACTIONS(2729), + [anon_sym_u16] = ACTIONS(2729), + [anon_sym_i16] = ACTIONS(2729), + [anon_sym_u32] = ACTIONS(2729), + [anon_sym_i32] = ACTIONS(2729), + [anon_sym_u64] = ACTIONS(2729), + [anon_sym_i64] = ACTIONS(2729), + [anon_sym_u128] = ACTIONS(2729), + [anon_sym_i128] = ACTIONS(2729), + [anon_sym_isize] = ACTIONS(2729), + [anon_sym_usize] = ACTIONS(2729), + [anon_sym_f32] = ACTIONS(2729), + [anon_sym_f64] = ACTIONS(2729), + [anon_sym_bool] = ACTIONS(2729), + [anon_sym_str] = ACTIONS(2729), + [anon_sym_char] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2727), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_gen] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_impl] = ACTIONS(2729), + [anon_sym_let] = ACTIONS(2729), + [anon_sym_loop] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_mod] = ACTIONS(2729), + [anon_sym_pub] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_trait] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_use] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_move] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [sym_integer_literal] = ACTIONS(2727), + [aux_sym_string_literal_token1] = ACTIONS(2727), + [sym_char_literal] = ACTIONS(2727), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_crate] = ACTIONS(2729), + [sym_metavariable] = ACTIONS(2727), + [sym__raw_string_literal_start] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), }, [750] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2903), - [sym_identifier] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_macro_rules_BANG] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_u8] = ACTIONS(2905), - [anon_sym_i8] = ACTIONS(2905), - [anon_sym_u16] = ACTIONS(2905), - [anon_sym_i16] = ACTIONS(2905), - [anon_sym_u32] = ACTIONS(2905), - [anon_sym_i32] = ACTIONS(2905), - [anon_sym_u64] = ACTIONS(2905), - [anon_sym_i64] = ACTIONS(2905), - [anon_sym_u128] = ACTIONS(2905), - [anon_sym_i128] = ACTIONS(2905), - [anon_sym_isize] = ACTIONS(2905), - [anon_sym_usize] = ACTIONS(2905), - [anon_sym_f32] = ACTIONS(2905), - [anon_sym_f64] = ACTIONS(2905), - [anon_sym_bool] = ACTIONS(2905), - [anon_sym_str] = ACTIONS(2905), - [anon_sym_char] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_DOT_DOT] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_async] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_impl] = ACTIONS(2905), - [anon_sym_let] = ACTIONS(2905), - [anon_sym_loop] = ACTIONS(2905), - [anon_sym_match] = ACTIONS(2905), - [anon_sym_mod] = ACTIONS(2905), - [anon_sym_pub] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_trait] = ACTIONS(2905), - [anon_sym_type] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2905), - [anon_sym_use] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym_yield] = ACTIONS(2905), - [anon_sym_move] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [sym_integer_literal] = ACTIONS(2903), - [aux_sym_string_literal_token1] = ACTIONS(2903), - [sym_char_literal] = ACTIONS(2903), - [anon_sym_true] = ACTIONS(2905), - [anon_sym_false] = ACTIONS(2905), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), - [sym_crate] = ACTIONS(2905), - [sym_metavariable] = ACTIONS(2903), - [sym__raw_string_literal_start] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_macro_rules_BANG] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_u8] = ACTIONS(2733), + [anon_sym_i8] = ACTIONS(2733), + [anon_sym_u16] = ACTIONS(2733), + [anon_sym_i16] = ACTIONS(2733), + [anon_sym_u32] = ACTIONS(2733), + [anon_sym_i32] = ACTIONS(2733), + [anon_sym_u64] = ACTIONS(2733), + [anon_sym_i64] = ACTIONS(2733), + [anon_sym_u128] = ACTIONS(2733), + [anon_sym_i128] = ACTIONS(2733), + [anon_sym_isize] = ACTIONS(2733), + [anon_sym_usize] = ACTIONS(2733), + [anon_sym_f32] = ACTIONS(2733), + [anon_sym_f64] = ACTIONS(2733), + [anon_sym_bool] = ACTIONS(2733), + [anon_sym_str] = ACTIONS(2733), + [anon_sym_char] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_DOT_DOT] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_async] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_fn] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_gen] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_impl] = ACTIONS(2733), + [anon_sym_let] = ACTIONS(2733), + [anon_sym_loop] = ACTIONS(2733), + [anon_sym_match] = ACTIONS(2733), + [anon_sym_mod] = ACTIONS(2733), + [anon_sym_pub] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_trait] = ACTIONS(2733), + [anon_sym_type] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_unsafe] = ACTIONS(2733), + [anon_sym_use] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym_yield] = ACTIONS(2733), + [anon_sym_move] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [sym_integer_literal] = ACTIONS(2731), + [aux_sym_string_literal_token1] = ACTIONS(2731), + [sym_char_literal] = ACTIONS(2731), + [anon_sym_true] = ACTIONS(2733), + [anon_sym_false] = ACTIONS(2733), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2733), + [sym_super] = ACTIONS(2733), + [sym_crate] = ACTIONS(2733), + [sym_metavariable] = ACTIONS(2731), + [sym__raw_string_literal_start] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), }, [751] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_macro_rules_BANG] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_u8] = ACTIONS(2909), - [anon_sym_i8] = ACTIONS(2909), - [anon_sym_u16] = ACTIONS(2909), - [anon_sym_i16] = ACTIONS(2909), - [anon_sym_u32] = ACTIONS(2909), - [anon_sym_i32] = ACTIONS(2909), - [anon_sym_u64] = ACTIONS(2909), - [anon_sym_i64] = ACTIONS(2909), - [anon_sym_u128] = ACTIONS(2909), - [anon_sym_i128] = ACTIONS(2909), - [anon_sym_isize] = ACTIONS(2909), - [anon_sym_usize] = ACTIONS(2909), - [anon_sym_f32] = ACTIONS(2909), - [anon_sym_f64] = ACTIONS(2909), - [anon_sym_bool] = ACTIONS(2909), - [anon_sym_str] = ACTIONS(2909), - [anon_sym_char] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_DOT_DOT] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_impl] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_loop] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_mod] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_trait] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_use] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_move] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [sym_integer_literal] = ACTIONS(2907), - [aux_sym_string_literal_token1] = ACTIONS(2907), - [sym_char_literal] = ACTIONS(2907), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2909), - [sym_super] = ACTIONS(2909), - [sym_crate] = ACTIONS(2909), - [sym_metavariable] = ACTIONS(2907), - [sym__raw_string_literal_start] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_macro_rules_BANG] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_u8] = ACTIONS(2737), + [anon_sym_i8] = ACTIONS(2737), + [anon_sym_u16] = ACTIONS(2737), + [anon_sym_i16] = ACTIONS(2737), + [anon_sym_u32] = ACTIONS(2737), + [anon_sym_i32] = ACTIONS(2737), + [anon_sym_u64] = ACTIONS(2737), + [anon_sym_i64] = ACTIONS(2737), + [anon_sym_u128] = ACTIONS(2737), + [anon_sym_i128] = ACTIONS(2737), + [anon_sym_isize] = ACTIONS(2737), + [anon_sym_usize] = ACTIONS(2737), + [anon_sym_f32] = ACTIONS(2737), + [anon_sym_f64] = ACTIONS(2737), + [anon_sym_bool] = ACTIONS(2737), + [anon_sym_str] = ACTIONS(2737), + [anon_sym_char] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_DOT_DOT] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_POUND] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_gen] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_impl] = ACTIONS(2737), + [anon_sym_let] = ACTIONS(2737), + [anon_sym_loop] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_mod] = ACTIONS(2737), + [anon_sym_pub] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_trait] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_use] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym_yield] = ACTIONS(2737), + [anon_sym_move] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [sym_integer_literal] = ACTIONS(2735), + [aux_sym_string_literal_token1] = ACTIONS(2735), + [sym_char_literal] = ACTIONS(2735), + [anon_sym_true] = ACTIONS(2737), + [anon_sym_false] = ACTIONS(2737), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2737), + [sym_super] = ACTIONS(2737), + [sym_crate] = ACTIONS(2737), + [sym_metavariable] = ACTIONS(2735), + [sym__raw_string_literal_start] = ACTIONS(2735), + [sym_float_literal] = ACTIONS(2735), }, [752] = { + [sym_empty_statement] = STATE(1410), + [sym_macro_definition] = STATE(1410), + [sym_attribute_item] = STATE(1410), + [sym_inner_attribute_item] = STATE(1410), + [sym_mod_item] = STATE(1410), + [sym_foreign_mod_item] = STATE(1410), + [sym_struct_item] = STATE(1410), + [sym_union_item] = STATE(1410), + [sym_enum_item] = STATE(1410), + [sym_extern_crate_declaration] = STATE(1410), + [sym_const_item] = STATE(1410), + [sym_static_item] = STATE(1410), + [sym_type_item] = STATE(1410), + [sym_function_item] = STATE(1410), + [sym_function_signature_item] = STATE(1410), + [sym_function_modifiers] = STATE(3609), + [sym_impl_item] = STATE(1410), + [sym_trait_item] = STATE(1410), + [sym_associated_type] = STATE(1410), + [sym_let_declaration] = STATE(1410), + [sym_use_declaration] = STATE(1410), + [sym_extern_modifier] = STATE(2163), + [sym_visibility_modifier] = STATE(1944), + [sym_bracketed_type] = STATE(3340), + [sym_generic_type_with_turbofish] = STATE(3366), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(3205), [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_macro_rules_BANG] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_u8] = ACTIONS(2913), - [anon_sym_i8] = ACTIONS(2913), - [anon_sym_u16] = ACTIONS(2913), - [anon_sym_i16] = ACTIONS(2913), - [anon_sym_u32] = ACTIONS(2913), - [anon_sym_i32] = ACTIONS(2913), - [anon_sym_u64] = ACTIONS(2913), - [anon_sym_i64] = ACTIONS(2913), - [anon_sym_u128] = ACTIONS(2913), - [anon_sym_i128] = ACTIONS(2913), - [anon_sym_isize] = ACTIONS(2913), - [anon_sym_usize] = ACTIONS(2913), - [anon_sym_f32] = ACTIONS(2913), - [anon_sym_f64] = ACTIONS(2913), - [anon_sym_bool] = ACTIONS(2913), - [anon_sym_str] = ACTIONS(2913), - [anon_sym_char] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_async] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_impl] = ACTIONS(2913), - [anon_sym_let] = ACTIONS(2913), - [anon_sym_loop] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_mod] = ACTIONS(2913), - [anon_sym_pub] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_trait] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_use] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym_yield] = ACTIONS(2913), - [anon_sym_move] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [sym_integer_literal] = ACTIONS(2911), - [aux_sym_string_literal_token1] = ACTIONS(2911), - [sym_char_literal] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2913), - [anon_sym_false] = ACTIONS(2913), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2913), - [sym_super] = ACTIONS(2913), - [sym_crate] = ACTIONS(2913), - [sym_metavariable] = ACTIONS(2911), - [sym__raw_string_literal_start] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), + [aux_sym_declaration_list_repeat1] = STATE(752), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_macro_rules_BANG] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_u8] = ACTIONS(2750), + [anon_sym_i8] = ACTIONS(2750), + [anon_sym_u16] = ACTIONS(2750), + [anon_sym_i16] = ACTIONS(2750), + [anon_sym_u32] = ACTIONS(2750), + [anon_sym_i32] = ACTIONS(2750), + [anon_sym_u64] = ACTIONS(2750), + [anon_sym_i64] = ACTIONS(2750), + [anon_sym_u128] = ACTIONS(2750), + [anon_sym_i128] = ACTIONS(2750), + [anon_sym_isize] = ACTIONS(2750), + [anon_sym_usize] = ACTIONS(2750), + [anon_sym_f32] = ACTIONS(2750), + [anon_sym_f64] = ACTIONS(2750), + [anon_sym_bool] = ACTIONS(2750), + [anon_sym_str] = ACTIONS(2750), + [anon_sym_char] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2774), + [anon_sym_impl] = ACTIONS(2777), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_mod] = ACTIONS(2783), + [anon_sym_pub] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_trait] = ACTIONS(2795), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_unsafe] = ACTIONS(2804), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2810), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2813), + [sym_super] = ACTIONS(2813), + [sym_crate] = ACTIONS(2816), + [sym_metavariable] = ACTIONS(2819), }, [753] = { + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_arm] = STATE(1487), + [sym_match_pattern] = STATE(3452), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_identifier] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_macro_rules_BANG] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_u8] = ACTIONS(2917), - [anon_sym_i8] = ACTIONS(2917), - [anon_sym_u16] = ACTIONS(2917), - [anon_sym_i16] = ACTIONS(2917), - [anon_sym_u32] = ACTIONS(2917), - [anon_sym_i32] = ACTIONS(2917), - [anon_sym_u64] = ACTIONS(2917), - [anon_sym_i64] = ACTIONS(2917), - [anon_sym_u128] = ACTIONS(2917), - [anon_sym_i128] = ACTIONS(2917), - [anon_sym_isize] = ACTIONS(2917), - [anon_sym_usize] = ACTIONS(2917), - [anon_sym_f32] = ACTIONS(2917), - [anon_sym_f64] = ACTIONS(2917), - [anon_sym_bool] = ACTIONS(2917), - [anon_sym_str] = ACTIONS(2917), - [anon_sym_char] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_async] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_impl] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_loop] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_mod] = ACTIONS(2917), - [anon_sym_pub] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_trait] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_move] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [sym_integer_literal] = ACTIONS(2915), - [aux_sym_string_literal_token1] = ACTIONS(2915), - [sym_char_literal] = ACTIONS(2915), - [anon_sym_true] = ACTIONS(2917), - [anon_sym_false] = ACTIONS(2917), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2917), - [sym_super] = ACTIONS(2917), - [sym_crate] = ACTIONS(2917), - [sym_metavariable] = ACTIONS(2915), - [sym__raw_string_literal_start] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), + [aux_sym_match_block_repeat1] = STATE(753), + [aux_sym_match_arm_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_u8] = ACTIONS(2831), + [anon_sym_i8] = ACTIONS(2831), + [anon_sym_u16] = ACTIONS(2831), + [anon_sym_i16] = ACTIONS(2831), + [anon_sym_u32] = ACTIONS(2831), + [anon_sym_i32] = ACTIONS(2831), + [anon_sym_u64] = ACTIONS(2831), + [anon_sym_i64] = ACTIONS(2831), + [anon_sym_u128] = ACTIONS(2831), + [anon_sym_i128] = ACTIONS(2831), + [anon_sym_isize] = ACTIONS(2831), + [anon_sym_usize] = ACTIONS(2831), + [anon_sym_f32] = ACTIONS(2831), + [anon_sym_f64] = ACTIONS(2831), + [anon_sym_bool] = ACTIONS(2831), + [anon_sym_str] = ACTIONS(2831), + [anon_sym_char] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym__] = ACTIONS(2846), + [anon_sym_DOT_DOT] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_ref] = ACTIONS(2864), + [sym_mutable_specifier] = ACTIONS(2867), + [sym_integer_literal] = ACTIONS(2870), + [aux_sym_string_literal_token1] = ACTIONS(2873), + [sym_char_literal] = ACTIONS(2870), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2879), + [sym_super] = ACTIONS(2879), + [sym_crate] = ACTIONS(2879), + [sym_metavariable] = ACTIONS(2882), + [sym__raw_string_literal_start] = ACTIONS(2885), + [sym_float_literal] = ACTIONS(2870), }, [754] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2828), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2500), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_empty_statement] = STATE(1410), + [sym_macro_definition] = STATE(1410), + [sym_attribute_item] = STATE(1410), + [sym_inner_attribute_item] = STATE(1410), + [sym_mod_item] = STATE(1410), + [sym_foreign_mod_item] = STATE(1410), + [sym_struct_item] = STATE(1410), + [sym_union_item] = STATE(1410), + [sym_enum_item] = STATE(1410), + [sym_extern_crate_declaration] = STATE(1410), + [sym_const_item] = STATE(1410), + [sym_static_item] = STATE(1410), + [sym_type_item] = STATE(1410), + [sym_function_item] = STATE(1410), + [sym_function_signature_item] = STATE(1410), + [sym_function_modifiers] = STATE(3609), + [sym_impl_item] = STATE(1410), + [sym_trait_item] = STATE(1410), + [sym_associated_type] = STATE(1410), + [sym_let_declaration] = STATE(1410), + [sym_use_declaration] = STATE(1410), + [sym_extern_modifier] = STATE(2163), + [sym_visibility_modifier] = STATE(1944), + [sym_bracketed_type] = STATE(3340), + [sym_generic_type_with_turbofish] = STATE(3366), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(3205), [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_declaration_list_repeat1] = STATE(755), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_macro_rules_BANG] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_u8] = ACTIONS(2896), + [anon_sym_i8] = ACTIONS(2896), + [anon_sym_u16] = ACTIONS(2896), + [anon_sym_i16] = ACTIONS(2896), + [anon_sym_u32] = ACTIONS(2896), + [anon_sym_i32] = ACTIONS(2896), + [anon_sym_u64] = ACTIONS(2896), + [anon_sym_i64] = ACTIONS(2896), + [anon_sym_u128] = ACTIONS(2896), + [anon_sym_i128] = ACTIONS(2896), + [anon_sym_isize] = ACTIONS(2896), + [anon_sym_usize] = ACTIONS(2896), + [anon_sym_f32] = ACTIONS(2896), + [anon_sym_f64] = ACTIONS(2896), + [anon_sym_bool] = ACTIONS(2896), + [anon_sym_str] = ACTIONS(2896), + [anon_sym_char] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2908), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_mod] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_use] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_crate] = ACTIONS(2934), + [sym_metavariable] = ACTIONS(2936), }, [755] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_empty_statement] = STATE(1410), + [sym_macro_definition] = STATE(1410), + [sym_attribute_item] = STATE(1410), + [sym_inner_attribute_item] = STATE(1410), + [sym_mod_item] = STATE(1410), + [sym_foreign_mod_item] = STATE(1410), + [sym_struct_item] = STATE(1410), + [sym_union_item] = STATE(1410), + [sym_enum_item] = STATE(1410), + [sym_extern_crate_declaration] = STATE(1410), + [sym_const_item] = STATE(1410), + [sym_static_item] = STATE(1410), + [sym_type_item] = STATE(1410), + [sym_function_item] = STATE(1410), + [sym_function_signature_item] = STATE(1410), + [sym_function_modifiers] = STATE(3609), + [sym_impl_item] = STATE(1410), + [sym_trait_item] = STATE(1410), + [sym_associated_type] = STATE(1410), + [sym_let_declaration] = STATE(1410), + [sym_use_declaration] = STATE(1410), + [sym_extern_modifier] = STATE(2163), + [sym_visibility_modifier] = STATE(1944), + [sym_bracketed_type] = STATE(3340), + [sym_generic_type_with_turbofish] = STATE(3366), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(3205), [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_declaration_list_repeat1] = STATE(752), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_macro_rules_BANG] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_u8] = ACTIONS(2896), + [anon_sym_i8] = ACTIONS(2896), + [anon_sym_u16] = ACTIONS(2896), + [anon_sym_i16] = ACTIONS(2896), + [anon_sym_u32] = ACTIONS(2896), + [anon_sym_i32] = ACTIONS(2896), + [anon_sym_u64] = ACTIONS(2896), + [anon_sym_i64] = ACTIONS(2896), + [anon_sym_u128] = ACTIONS(2896), + [anon_sym_i128] = ACTIONS(2896), + [anon_sym_isize] = ACTIONS(2896), + [anon_sym_usize] = ACTIONS(2896), + [anon_sym_f32] = ACTIONS(2896), + [anon_sym_f64] = ACTIONS(2896), + [anon_sym_bool] = ACTIONS(2896), + [anon_sym_str] = ACTIONS(2896), + [anon_sym_char] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2908), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_mod] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_use] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_crate] = ACTIONS(2934), + [sym_metavariable] = ACTIONS(2936), }, [756] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_empty_statement] = STATE(1410), + [sym_macro_definition] = STATE(1410), + [sym_attribute_item] = STATE(1410), + [sym_inner_attribute_item] = STATE(1410), + [sym_mod_item] = STATE(1410), + [sym_foreign_mod_item] = STATE(1410), + [sym_struct_item] = STATE(1410), + [sym_union_item] = STATE(1410), + [sym_enum_item] = STATE(1410), + [sym_extern_crate_declaration] = STATE(1410), + [sym_const_item] = STATE(1410), + [sym_static_item] = STATE(1410), + [sym_type_item] = STATE(1410), + [sym_function_item] = STATE(1410), + [sym_function_signature_item] = STATE(1410), + [sym_function_modifiers] = STATE(3609), + [sym_impl_item] = STATE(1410), + [sym_trait_item] = STATE(1410), + [sym_associated_type] = STATE(1410), + [sym_let_declaration] = STATE(1410), + [sym_use_declaration] = STATE(1410), + [sym_extern_modifier] = STATE(2163), + [sym_visibility_modifier] = STATE(1944), + [sym_bracketed_type] = STATE(3340), + [sym_generic_type_with_turbofish] = STATE(3366), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(3205), [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_declaration_list_repeat1] = STATE(757), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_macro_rules_BANG] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2940), + [anon_sym_u8] = ACTIONS(2896), + [anon_sym_i8] = ACTIONS(2896), + [anon_sym_u16] = ACTIONS(2896), + [anon_sym_i16] = ACTIONS(2896), + [anon_sym_u32] = ACTIONS(2896), + [anon_sym_i32] = ACTIONS(2896), + [anon_sym_u64] = ACTIONS(2896), + [anon_sym_i64] = ACTIONS(2896), + [anon_sym_u128] = ACTIONS(2896), + [anon_sym_i128] = ACTIONS(2896), + [anon_sym_isize] = ACTIONS(2896), + [anon_sym_usize] = ACTIONS(2896), + [anon_sym_f32] = ACTIONS(2896), + [anon_sym_f64] = ACTIONS(2896), + [anon_sym_bool] = ACTIONS(2896), + [anon_sym_str] = ACTIONS(2896), + [anon_sym_char] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2908), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_mod] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_use] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_crate] = ACTIONS(2934), + [sym_metavariable] = ACTIONS(2936), }, [757] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_empty_statement] = STATE(1410), + [sym_macro_definition] = STATE(1410), + [sym_attribute_item] = STATE(1410), + [sym_inner_attribute_item] = STATE(1410), + [sym_mod_item] = STATE(1410), + [sym_foreign_mod_item] = STATE(1410), + [sym_struct_item] = STATE(1410), + [sym_union_item] = STATE(1410), + [sym_enum_item] = STATE(1410), + [sym_extern_crate_declaration] = STATE(1410), + [sym_const_item] = STATE(1410), + [sym_static_item] = STATE(1410), + [sym_type_item] = STATE(1410), + [sym_function_item] = STATE(1410), + [sym_function_signature_item] = STATE(1410), + [sym_function_modifiers] = STATE(3609), + [sym_impl_item] = STATE(1410), + [sym_trait_item] = STATE(1410), + [sym_associated_type] = STATE(1410), + [sym_let_declaration] = STATE(1410), + [sym_use_declaration] = STATE(1410), + [sym_extern_modifier] = STATE(2163), + [sym_visibility_modifier] = STATE(1944), + [sym_bracketed_type] = STATE(3340), + [sym_generic_type_with_turbofish] = STATE(3366), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(3205), [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_declaration_list_repeat1] = STATE(752), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_macro_rules_BANG] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_u8] = ACTIONS(2896), + [anon_sym_i8] = ACTIONS(2896), + [anon_sym_u16] = ACTIONS(2896), + [anon_sym_i16] = ACTIONS(2896), + [anon_sym_u32] = ACTIONS(2896), + [anon_sym_i32] = ACTIONS(2896), + [anon_sym_u64] = ACTIONS(2896), + [anon_sym_i64] = ACTIONS(2896), + [anon_sym_u128] = ACTIONS(2896), + [anon_sym_i128] = ACTIONS(2896), + [anon_sym_isize] = ACTIONS(2896), + [anon_sym_usize] = ACTIONS(2896), + [anon_sym_f32] = ACTIONS(2896), + [anon_sym_f64] = ACTIONS(2896), + [anon_sym_bool] = ACTIONS(2896), + [anon_sym_str] = ACTIONS(2896), + [anon_sym_char] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2908), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_mod] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_use] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_crate] = ACTIONS(2934), + [sym_metavariable] = ACTIONS(2936), }, [758] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3423), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2752), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [759] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3410), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2802), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2539), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [760] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(3071), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2798), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [761] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_pattern] = STATE(3501), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_match_arm_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [762] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1486), + [sym_inner_attribute_item] = STATE(1486), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_match_pattern] = STATE(3469), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(3016), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_match_arm_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [763] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_const_parameter] = STATE(2959), - [sym_constrained_type_parameter] = STATE(2693), - [sym_optional_type_parameter] = STATE(2959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(2373), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(3071), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2798), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [aux_sym_enum_variant_list_repeat1] = STATE(2055), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [764] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(885), - [sym__type] = STATE(2579), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(3071), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2798), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [aux_sym_enum_variant_list_repeat1] = STATE(772), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [765] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(3071), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2798), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [766] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_const_parameter] = STATE(2999), + [sym_constrained_type_parameter] = STATE(2719), + [sym_optional_type_parameter] = STATE(2999), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2982), + [sym_bracketed_type] = STATE(3348), + [sym_qualified_type] = STATE(3449), + [sym_lifetime] = STATE(2351), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_enum_variant_list_repeat1] = STATE(2047), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(2986), }, [767] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(912), + [sym__type] = STATE(2562), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_enum_variant_list_repeat1] = STATE(778), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [768] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(3071), + [sym_closure_parameters] = STATE(232), + [sym__pattern] = STATE(2798), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [769] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2797), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_enum_variant_list_repeat1] = STATE(775), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [770] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2797), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_enum_variant_list_repeat1] = STATE(775), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [771] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2674), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2797), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(775), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [772] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(942), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2797), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_enum_variant_list_repeat1] = STATE(775), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [773] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2524), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2797), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(775), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [774] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(910), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2797), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_enum_variant_list_repeat1] = STATE(775), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [775] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2525), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(865), + [sym__type] = STATE(2856), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(1052), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [776] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2501), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2687), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_RBRACK] = ACTIONS(3012), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [777] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(3018), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [778] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2730), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(1052), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [779] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2639), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2513), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [780] = { - [sym_parameter] = STATE(3201), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2915), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1479), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2797), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(775), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1609), }, [781] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2549), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2680), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3013), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [782] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2699), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [783] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2532), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2588), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [784] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [785] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3021), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [786] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [787] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2661), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3038), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [788] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_parameter] = STATE(2923), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2480), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(3044), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3046), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [789] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_parameter] = STATE(3229), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2957), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(3044), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3046), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [790] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_RBRACK] = ACTIONS(3048), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [791] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [792] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [793] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [794] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [795] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2429), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_parameter] = STATE(2923), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2583), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(3044), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3046), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [796] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3301), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [797] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [798] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3188), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [799] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3212), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_RBRACK] = ACTIONS(3064), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [800] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2485), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3251), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [801] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2910), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [802] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2978), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(2843), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(3066), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [803] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3014), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2097), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(3068), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [804] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3267), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2133), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [805] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(2849), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [806] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2965), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2503), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [807] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2434), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2425), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(3070), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [808] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3247), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [809] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2761), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2430), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [810] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(2794), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [811] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2516), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2111), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3043), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [812] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2101), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2120), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [813] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2100), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [814] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(2762), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [815] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2122), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3319), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [816] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2086), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [817] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2466), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2929), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3047), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [818] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3272), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2098), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [819] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2393), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3250), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [820] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2912), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2605), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [821] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2949), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(2751), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [822] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3302), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2754), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [823] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2926), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2521), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3072), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [824] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2878), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3245), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [825] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3283), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(2424), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(3074), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [826] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3296), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(2861), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [827] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3299), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3540), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3274), + [sym_macro_invocation] = STATE(3031), + [sym_scoped_identifier] = STATE(2153), + [sym_scoped_type_identifier] = STATE(2935), + [sym_const_block] = STATE(3031), + [sym__pattern] = STATE(2759), + [sym_tuple_pattern] = STATE(3031), + [sym_slice_pattern] = STATE(3031), + [sym_tuple_struct_pattern] = STATE(3031), + [sym_struct_pattern] = STATE(3031), + [sym_remaining_field_pattern] = STATE(3031), + [sym_mut_pattern] = STATE(3031), + [sym_range_pattern] = STATE(3031), + [sym_ref_pattern] = STATE(3031), + [sym_captured_pattern] = STATE(3031), + [sym_reference_pattern] = STATE(3031), + [sym_or_pattern] = STATE(3031), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2311), + [sym_string_literal] = STATE(2311), + [sym_raw_string_literal] = STATE(2311), + [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [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_DASH] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_ref] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1671), + [sym_super] = ACTIONS(1671), + [sym_crate] = ACTIONS(1671), + [sym_metavariable] = ACTIONS(1673), + [sym__raw_string_literal_start] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1665), }, [828] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3300), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3293), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [829] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3313), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3053), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [830] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3057), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [831] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3317), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3089), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [832] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_bracketed_type] = STATE(3403), + [sym_generic_type] = STATE(3423), + [sym_generic_type_with_turbofish] = STATE(3168), + [sym_macro_invocation] = STATE(2124), + [sym_scoped_identifier] = STATE(1971), + [sym_scoped_type_identifier] = STATE(2764), + [sym_const_block] = STATE(2124), + [sym__pattern] = STATE(3318), + [sym_tuple_pattern] = STATE(2124), + [sym_slice_pattern] = STATE(2124), + [sym_tuple_struct_pattern] = STATE(2124), + [sym_struct_pattern] = STATE(2124), + [sym_remaining_field_pattern] = STATE(2124), + [sym_mut_pattern] = STATE(2124), + [sym_range_pattern] = STATE(2124), + [sym_ref_pattern] = STATE(2124), + [sym_captured_pattern] = STATE(2124), + [sym_reference_pattern] = STATE(2124), + [sym_or_pattern] = STATE(2124), + [sym__literal_pattern] = STATE(2017), + [sym_negative_literal] = STATE(2016), + [sym_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [sym_mutable_specifier] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_ref] = ACTIONS(1413), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1419), }, [833] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1122), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [sym_mutable_specifier] = ACTIONS(3106), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [834] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1701), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [sym_mutable_specifier] = ACTIONS(3142), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [835] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(3150), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3152), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [836] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3312), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(3154), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [837] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1747), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(831), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(3156), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [838] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_higher_ranked_trait_bound] = STATE(2192), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2207), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2197), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3141), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [839] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1416), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(833), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [sym_mutable_specifier] = ACTIONS(3160), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [840] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2177), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_RBRACK] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_u8] = ACTIONS(2145), + [anon_sym_i8] = ACTIONS(2145), + [anon_sym_u16] = ACTIONS(2145), + [anon_sym_i16] = ACTIONS(2145), + [anon_sym_u32] = ACTIONS(2145), + [anon_sym_i32] = ACTIONS(2145), + [anon_sym_u64] = ACTIONS(2145), + [anon_sym_i64] = ACTIONS(2145), + [anon_sym_u128] = ACTIONS(2145), + [anon_sym_i128] = ACTIONS(2145), + [anon_sym_isize] = ACTIONS(2145), + [anon_sym_usize] = ACTIONS(2145), + [anon_sym_f32] = ACTIONS(2145), + [anon_sym_f64] = ACTIONS(2145), + [anon_sym_bool] = ACTIONS(2145), + [anon_sym_str] = ACTIONS(2145), + [anon_sym_char] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym__] = ACTIONS(2145), + [anon_sym_DOT_DOT] = ACTIONS(2143), + [anon_sym_COMMA] = ACTIONS(2143), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_gen] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_loop] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_unsafe] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_ref] = ACTIONS(2145), + [sym_mutable_specifier] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_move] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [sym_integer_literal] = ACTIONS(2143), + [aux_sym_string_literal_token1] = ACTIONS(2143), + [sym_char_literal] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_crate] = ACTIONS(2145), + [sym_metavariable] = ACTIONS(2143), + [sym__raw_string_literal_start] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2143), }, [841] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(950), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2382), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2165), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2982), + [sym_bracketed_type] = STATE(3348), + [sym_qualified_type] = STATE(3449), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [842] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [843] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2223), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1681), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(834), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [sym_mutable_specifier] = ACTIONS(3164), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [844] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_type_parameters] = STATE(946), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2344), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2298), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2177), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [845] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(935), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2341), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2147), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [846] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2173), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2146), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2153), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_higher_ranked_trait_bound] = STATE(2192), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2195), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2197), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [847] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3069), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(830), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(837), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3159), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(3174), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [848] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(938), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2319), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2140), + [sym_function_modifiers] = STATE(3428), + [sym_higher_ranked_trait_bound] = STATE(2192), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2207), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2209), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [849] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [850] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1228), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(832), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2558), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [sym_mutable_specifier] = ACTIONS(3165), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [851] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_type_parameters] = STATE(1000), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2348), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2364), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2182), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [852] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2693), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [853] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2385), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2170), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2617), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [854] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_higher_ranked_trait_bound] = STATE(2148), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2150), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(2152), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [855] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3269), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(836), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [sym_mutable_specifier] = ACTIONS(3188), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [856] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [857] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2692), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [858] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [859] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1996), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_type_parameters] = STATE(929), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2363), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2372), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2174), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [860] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_type_parameters] = STATE(1006), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2319), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2145), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [861] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [862] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [863] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2304), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [864] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1729), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1246), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [865] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2946), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [866] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2896), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [867] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1732), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2231), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [868] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1736), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2745), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [869] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1737), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1476), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [870] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1738), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2301), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [871] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2394), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [872] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2184), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2395), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [873] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2692), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [874] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2351), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2904), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [875] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2837), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [876] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2863), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [877] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2355), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2354), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [878] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2947), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [879] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2357), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2967), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [880] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1223), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2978), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [881] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2668), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [882] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2328), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [883] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2952), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2452), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [884] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2467), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2564), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [885] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1739), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [886] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2353), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [887] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [888] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2359), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2004), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [889] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [890] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [891] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [892] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1121), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [893] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1292), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1122), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [894] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2565), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [895] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1294), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2617), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [896] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1225), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2657), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [897] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1210), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2558), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [898] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1667), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2813), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [899] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3018), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(1983), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [900] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1298), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3297), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [901] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3059), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2225), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [902] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [903] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3015), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2717), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [904] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1126), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [905] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [906] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3277), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3015), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [907] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1305), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2500), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [908] = { + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [sym_identifier] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_RBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2412), - [anon_sym_i8] = ACTIONS(2412), - [anon_sym_u16] = ACTIONS(2412), - [anon_sym_i16] = ACTIONS(2412), - [anon_sym_u32] = ACTIONS(2412), - [anon_sym_i32] = ACTIONS(2412), - [anon_sym_u64] = ACTIONS(2412), - [anon_sym_i64] = ACTIONS(2412), - [anon_sym_u128] = ACTIONS(2412), - [anon_sym_i128] = ACTIONS(2412), - [anon_sym_isize] = ACTIONS(2412), - [anon_sym_usize] = ACTIONS(2412), - [anon_sym_f32] = ACTIONS(2412), - [anon_sym_f64] = ACTIONS(2412), - [anon_sym_bool] = ACTIONS(2412), - [anon_sym_str] = ACTIONS(2412), - [anon_sym_char] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym__] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_COLON_COLON] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_ref] = ACTIONS(2412), - [sym_mutable_specifier] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_move] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [aux_sym_string_literal_token1] = ACTIONS(2410), - [sym_char_literal] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2410), - [sym__raw_string_literal_start] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(2410), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [909] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2315), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [910] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2324), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [911] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3166), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2341), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [912] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3048), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2730), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [913] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_attribute_item] = STATE(1007), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_enum_variant_list_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_u8] = ACTIONS(3208), + [anon_sym_i8] = ACTIONS(3208), + [anon_sym_u16] = ACTIONS(3208), + [anon_sym_i16] = ACTIONS(3208), + [anon_sym_u32] = ACTIONS(3208), + [anon_sym_i32] = ACTIONS(3208), + [anon_sym_u64] = ACTIONS(3208), + [anon_sym_i64] = ACTIONS(3208), + [anon_sym_u128] = ACTIONS(3208), + [anon_sym_i128] = ACTIONS(3208), + [anon_sym_isize] = ACTIONS(3208), + [anon_sym_usize] = ACTIONS(3208), + [anon_sym_f32] = ACTIONS(3208), + [anon_sym_f64] = ACTIONS(3208), + [anon_sym_bool] = ACTIONS(3208), + [anon_sym_str] = ACTIONS(3208), + [anon_sym_char] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(3208), + [anon_sym_async] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_gen] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_loop] = ACTIONS(3208), + [anon_sym_match] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [anon_sym_unsafe] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_yield] = ACTIONS(3208), + [anon_sym_move] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(755), + [aux_sym_string_literal_token1] = ACTIONS(755), + [sym_char_literal] = ACTIONS(755), + [anon_sym_true] = ACTIONS(3208), + [anon_sym_false] = ACTIONS(3208), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3208), + [sym_super] = ACTIONS(3208), + [sym_crate] = ACTIONS(3208), + [sym_metavariable] = ACTIONS(755), + [sym__raw_string_literal_start] = ACTIONS(755), + [sym_float_literal] = ACTIONS(755), }, [914] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2708), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [915] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2565), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [916] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [917] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1388), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2186), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [918] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1389), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1174), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [919] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1981), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [920] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1700), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [921] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2569), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1701), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [922] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1449), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1176), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [923] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3183), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [924] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1422), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [925] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1412), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [926] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2537), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [927] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2768), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [928] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1972), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1179), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [929] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2369), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2377), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2176), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [930] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1244), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [931] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2189), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2221), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [932] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1832), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [933] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2185), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2432), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [934] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2930), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1181), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [935] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2379), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2174), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [936] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2856), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [937] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2866), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [938] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2328), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2380), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2131), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [939] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2347), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2350), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [940] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2362), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [941] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2829), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [942] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3021), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [943] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2927), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [944] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2183), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2442), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [945] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1212), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2527), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [946] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2366), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2383), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2178), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [947] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3311), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [948] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2997), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3312), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [949] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2228), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [950] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2291), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2384), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2168), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [951] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2358), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [952] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2758), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2376), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [953] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2379), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [954] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2308), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2547), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [955] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2538), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2842), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [956] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2985), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [957] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2450), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2449), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [958] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2550), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [959] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2309), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2386), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2172), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3003), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [960] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2366), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2553), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [961] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2367), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2693), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [962] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2370), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [963] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2192), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2349), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [964] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2357), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [965] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2290), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [966] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2750), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [967] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(1983), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [968] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2557), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2317), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [969] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2340), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [970] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2367), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [971] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2378), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [972] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2932), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2237), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [973] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2560), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2570), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [974] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [975] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2218), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [976] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2000), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [977] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2303), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [978] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2986), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1707), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [979] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2194), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [980] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1644), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [981] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2333), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2774), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [982] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2196), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [983] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2224), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [984] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2570), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2201), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [985] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2338), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [986] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1648), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [987] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2186), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1650), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [988] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2739), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1979), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [989] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2190), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2809), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [990] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2236), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [991] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2193), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [992] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1656), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [993] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2780), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1657), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [994] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3218), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [995] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1999), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [996] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2947), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1659), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), }, [997] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [998] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1764), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [999] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3208), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [1000] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1725), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2305), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2300), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2171), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [1001] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(3268), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), }, [1002] = { - [sym_attribute_item] = STATE(1003), + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1419), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_u8] = ACTIONS(3201), - [anon_sym_i8] = ACTIONS(3201), - [anon_sym_u16] = ACTIONS(3201), - [anon_sym_i16] = ACTIONS(3201), - [anon_sym_u32] = ACTIONS(3201), - [anon_sym_i32] = ACTIONS(3201), - [anon_sym_u64] = ACTIONS(3201), - [anon_sym_i64] = ACTIONS(3201), - [anon_sym_u128] = ACTIONS(3201), - [anon_sym_i128] = ACTIONS(3201), - [anon_sym_isize] = ACTIONS(3201), - [anon_sym_usize] = ACTIONS(3201), - [anon_sym_f32] = ACTIONS(3201), - [anon_sym_f64] = ACTIONS(3201), - [anon_sym_bool] = ACTIONS(3201), - [anon_sym_str] = ACTIONS(3201), - [anon_sym_char] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(796), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_loop] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_move] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(796), - [aux_sym_string_literal_token1] = ACTIONS(796), - [sym_char_literal] = ACTIONS(796), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3201), - [sym_super] = ACTIONS(3201), - [sym_crate] = ACTIONS(3201), - [sym_metavariable] = ACTIONS(796), - [sym__raw_string_literal_start] = ACTIONS(796), - [sym_float_literal] = ACTIONS(796), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), }, [1003] = { + [sym_function_modifiers] = STATE(3328), + [sym_removed_trait_bound] = STATE(1645), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1661), + [sym_bracketed_type] = STATE(3546), + [sym_lifetime] = STATE(3363), + [sym_array_type] = STATE(1645), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1645), + [sym_tuple_type] = STATE(1645), + [sym_unit_type] = STATE(1645), + [sym_generic_type] = STATE(1626), + [sym_generic_type_with_turbofish] = STATE(3538), + [sym_bounded_type] = STATE(1645), + [sym_reference_type] = STATE(1645), + [sym_pointer_type] = STATE(1645), + [sym_never_type] = STATE(1645), + [sym_abstract_type] = STATE(1645), + [sym_dynamic_type] = STATE(1645), + [sym_macro_invocation] = STATE(1645), + [sym_scoped_identifier] = STATE(3277), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_u8] = ACTIONS(3203), - [anon_sym_i8] = ACTIONS(3203), - [anon_sym_u16] = ACTIONS(3203), - [anon_sym_i16] = ACTIONS(3203), - [anon_sym_u32] = ACTIONS(3203), - [anon_sym_i32] = ACTIONS(3203), - [anon_sym_u64] = ACTIONS(3203), - [anon_sym_i64] = ACTIONS(3203), - [anon_sym_u128] = ACTIONS(3203), - [anon_sym_i128] = ACTIONS(3203), - [anon_sym_isize] = ACTIONS(3203), - [anon_sym_usize] = ACTIONS(3203), - [anon_sym_f32] = ACTIONS(3203), - [anon_sym_f64] = ACTIONS(3203), - [anon_sym_bool] = ACTIONS(3203), - [anon_sym_str] = ACTIONS(3203), - [anon_sym_char] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_POUND] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_async] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_loop] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_move] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3205), - [aux_sym_string_literal_token1] = ACTIONS(3205), - [sym_char_literal] = ACTIONS(3205), - [anon_sym_true] = ACTIONS(3203), - [anon_sym_false] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3203), - [sym_super] = ACTIONS(3203), - [sym_crate] = ACTIONS(3203), - [sym_metavariable] = ACTIONS(3205), - [sym__raw_string_literal_start] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3205), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3146), + }, + [1004] = { + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2219), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(1963), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1928), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + }, + [1005] = { + [sym_function_modifiers] = STATE(3354), + [sym_removed_trait_bound] = STATE(1426), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(1243), + [sym_bracketed_type] = STATE(3531), + [sym_lifetime] = STATE(3337), + [sym_array_type] = STATE(1426), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1426), + [sym_tuple_type] = STATE(1426), + [sym_unit_type] = STATE(1426), + [sym_generic_type] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1426), + [sym_reference_type] = STATE(1426), + [sym_pointer_type] = STATE(1426), + [sym_never_type] = STATE(1426), + [sym_abstract_type] = STATE(1426), + [sym_dynamic_type] = STATE(1426), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(1019), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3110), + }, + [1006] = { + [sym_function_modifiers] = STATE(3428), + [sym_removed_trait_bound] = STATE(1985), + [sym_extern_modifier] = STATE(2318), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3348), + [sym_lifetime] = STATE(3455), + [sym_array_type] = STATE(1985), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1985), + [sym_tuple_type] = STATE(1985), + [sym_unit_type] = STATE(1985), + [sym_generic_type] = STATE(2316), + [sym_generic_type_with_turbofish] = STATE(3477), + [sym_bounded_type] = STATE(1985), + [sym_reference_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_never_type] = STATE(1985), + [sym_abstract_type] = STATE(1985), + [sym_dynamic_type] = STATE(1985), + [sym_macro_invocation] = STATE(1985), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2158), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1591), + [anon_sym_i8] = ACTIONS(1591), + [anon_sym_u16] = ACTIONS(1591), + [anon_sym_i16] = ACTIONS(1591), + [anon_sym_u32] = ACTIONS(1591), + [anon_sym_i32] = ACTIONS(1591), + [anon_sym_u64] = ACTIONS(1591), + [anon_sym_i64] = ACTIONS(1591), + [anon_sym_u128] = ACTIONS(1591), + [anon_sym_i128] = ACTIONS(1591), + [anon_sym_isize] = ACTIONS(1591), + [anon_sym_usize] = ACTIONS(1591), + [anon_sym_f32] = ACTIONS(1591), + [anon_sym_f64] = ACTIONS(1591), + [anon_sym_bool] = ACTIONS(1591), + [anon_sym_str] = ACTIONS(1591), + [anon_sym_char] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + }, + [1007] = { + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [sym_identifier] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_u8] = ACTIONS(3228), + [anon_sym_i8] = ACTIONS(3228), + [anon_sym_u16] = ACTIONS(3228), + [anon_sym_i16] = ACTIONS(3228), + [anon_sym_u32] = ACTIONS(3228), + [anon_sym_i32] = ACTIONS(3228), + [anon_sym_u64] = ACTIONS(3228), + [anon_sym_i64] = ACTIONS(3228), + [anon_sym_u128] = ACTIONS(3228), + [anon_sym_i128] = ACTIONS(3228), + [anon_sym_isize] = ACTIONS(3228), + [anon_sym_usize] = ACTIONS(3228), + [anon_sym_f32] = ACTIONS(3228), + [anon_sym_f64] = ACTIONS(3228), + [anon_sym_bool] = ACTIONS(3228), + [anon_sym_str] = ACTIONS(3228), + [anon_sym_char] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_loop] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_move] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [sym_integer_literal] = ACTIONS(3230), + [aux_sym_string_literal_token1] = ACTIONS(3230), + [sym_char_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_crate] = ACTIONS(3228), + [sym_metavariable] = ACTIONS(3230), + [sym__raw_string_literal_start] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + }, + [1008] = { + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_u8] = ACTIONS(1575), + [anon_sym_i8] = ACTIONS(1575), + [anon_sym_u16] = ACTIONS(1575), + [anon_sym_i16] = ACTIONS(1575), + [anon_sym_u32] = ACTIONS(1575), + [anon_sym_i32] = ACTIONS(1575), + [anon_sym_u64] = ACTIONS(1575), + [anon_sym_i64] = ACTIONS(1575), + [anon_sym_u128] = ACTIONS(1575), + [anon_sym_i128] = ACTIONS(1575), + [anon_sym_isize] = ACTIONS(1575), + [anon_sym_usize] = ACTIONS(1575), + [anon_sym_f32] = ACTIONS(1575), + [anon_sym_f64] = ACTIONS(1575), + [anon_sym_bool] = ACTIONS(1575), + [anon_sym_str] = ACTIONS(1575), + [anon_sym_char] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym__] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1577), + [anon_sym_DASH_GT] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_gen] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1575), + [anon_sym_union] = ACTIONS(1575), + [anon_sym_unsafe] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_yield] = ACTIONS(1575), + [anon_sym_move] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1577), + [aux_sym_string_literal_token1] = ACTIONS(1577), + [sym_char_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1577), + [sym_float_literal] = ACTIONS(1577), + }, + [1009] = { + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [sym_identifier] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_u8] = ACTIONS(3232), + [anon_sym_i8] = ACTIONS(3232), + [anon_sym_u16] = ACTIONS(3232), + [anon_sym_i16] = ACTIONS(3232), + [anon_sym_u32] = ACTIONS(3232), + [anon_sym_i32] = ACTIONS(3232), + [anon_sym_u64] = ACTIONS(3232), + [anon_sym_i64] = ACTIONS(3232), + [anon_sym_u128] = ACTIONS(3232), + [anon_sym_i128] = ACTIONS(3232), + [anon_sym_isize] = ACTIONS(3232), + [anon_sym_usize] = ACTIONS(3232), + [anon_sym_f32] = ACTIONS(3232), + [anon_sym_f64] = ACTIONS(3232), + [anon_sym_bool] = ACTIONS(3232), + [anon_sym_str] = ACTIONS(3232), + [anon_sym_char] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym__] = ACTIONS(3232), + [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_loop] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_move] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3234), + [aux_sym_string_literal_token1] = ACTIONS(3234), + [sym_char_literal] = ACTIONS(3234), + [anon_sym_true] = ACTIONS(3232), + [anon_sym_false] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + [sym__raw_string_literal_start] = ACTIONS(3234), + [sym_float_literal] = ACTIONS(3234), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1556), 17, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1554), 43, - 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_DASH, - anon_sym__, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [75] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1005), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3209), 17, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3207), 43, - 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_DASH, - anon_sym__, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [150] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1006), 2, + STATE(1010), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 18, + ACTIONS(1085), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108556,7 +109919,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3211), 41, + ACTIONS(3236), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108581,6 +109944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_default, anon_sym_for, + anon_sym_gen, anon_sym_if, anon_sym_loop, anon_sym_match, @@ -108598,15 +109962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [224] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1007), 2, + STATE(1011), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 17, + ACTIONS(2143), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108624,7 +109988,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(2145), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108663,15 +110027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [294] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [145] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1008), 2, + STATE(1012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 20, + ACTIONS(3240), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108692,7 +110056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3213), 34, + ACTIONS(3238), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108727,57 +110091,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [363] = 21, + [214] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1375), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1421), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1431), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(3217), 1, + ACTIONS(3242), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3252), 1, sym_metavariable, - STATE(2048), 1, + STATE(2067), 1, sym_scoped_identifier, - STATE(2091), 1, + STATE(2123), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(1009), 2, + STATE(1013), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1419), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3221), 3, + ACTIONS(3246), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3225), 3, + ACTIONS(3250), 3, sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2016), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3219), 7, + ACTIONS(3244), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -108785,7 +110149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3223), 19, + ACTIONS(3248), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108805,57 +110169,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [462] = 21, + [313] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1375), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1421), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1431), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(3229), 1, + ACTIONS(3254), 1, sym_identifier, - ACTIONS(3239), 1, + ACTIONS(3264), 1, sym_metavariable, - STATE(2036), 1, + STATE(2046), 1, sym_scoped_identifier, - STATE(2080), 1, + STATE(2112), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(1010), 2, + STATE(1014), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1419), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3233), 3, + ACTIONS(3258), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3237), 3, + ACTIONS(3262), 3, sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2016), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3231), 7, + ACTIONS(3256), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -108863,7 +110227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3235), 19, + ACTIONS(3260), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108883,27 +110247,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [561] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [412] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + ACTIONS(3272), 1, anon_sym_BANG, - ACTIONS(3249), 1, + ACTIONS(3274), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3276), 1, anon_sym_LT2, - STATE(1071), 1, + STATE(1054), 1, sym_type_arguments, - STATE(1087), 1, + STATE(1061), 1, sym_parameters, - STATE(1011), 2, + STATE(1015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, + ACTIONS(3270), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -108921,7 +110285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3241), 27, + ACTIONS(3266), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -108949,25 +110313,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [638] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [489] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3276), 1, anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(3282), 1, anon_sym_COLON_COLON, - STATE(1071), 1, + STATE(1054), 1, sym_type_arguments, - STATE(1087), 1, + STATE(1061), 1, sym_parameters, - STATE(1012), 2, + STATE(1016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 17, + ACTIONS(3280), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -108985,7 +110349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3253), 27, + ACTIONS(3278), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109013,25 +110377,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [712] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [563] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3276), 1, anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(3282), 1, anon_sym_COLON_COLON, - STATE(1071), 1, + STATE(1054), 1, sym_type_arguments, - STATE(1087), 1, + STATE(1061), 1, sym_parameters, - STATE(1013), 2, + STATE(1017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 17, + ACTIONS(3286), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109049,7 +110413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3259), 27, + ACTIONS(3284), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109077,25 +110441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [786] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [637] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3276), 1, anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(3282), 1, anon_sym_COLON_COLON, - STATE(1071), 1, + STATE(1054), 1, sym_type_arguments, - STATE(1087), 1, + STATE(1061), 1, sym_parameters, - STATE(1014), 2, + STATE(1018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, + ACTIONS(3290), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109113,7 +110477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 27, + ACTIONS(3288), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109141,15 +110505,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [860] = 5, - ACTIONS(101), 1, + [711] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3268), 1, + anon_sym_LPAREN, + ACTIONS(3276), 1, + anon_sym_LT2, + STATE(1055), 1, + sym_type_arguments, + STATE(1062), 1, + sym_parameters, + STATE(1019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3294), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3292), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [782] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1015), 2, + STATE(1020), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 9, + ACTIONS(1257), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109159,7 +110585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1238), 39, + ACTIONS(1259), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109199,19 +110625,77 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [923] = 7, - ACTIONS(101), 1, + [845] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1021), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1047), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1045), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + 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, + [908] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(3300), 1, anon_sym_BANG, - ACTIONS(3273), 1, + ACTIONS(3302), 1, anon_sym_COLON_COLON, - STATE(1016), 2, + STATE(1022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(3298), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109229,7 +110713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 29, + ACTIONS(3296), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109259,19 +110743,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [990] = 7, - ACTIONS(101), 1, + [975] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3268), 1, + anon_sym_LPAREN, + ACTIONS(3276), 1, + anon_sym_LT2, + STATE(1055), 1, + sym_type_arguments, + STATE(1062), 1, + sym_parameters, + STATE(1023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3306), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3304), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1046] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1024), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1341), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1343), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + 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, + [1109] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3312), 1, anon_sym_BANG, - ACTIONS(3281), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - STATE(1017), 2, + STATE(1025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3277), 17, + ACTIONS(3310), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109289,7 +110893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3275), 29, + ACTIONS(3308), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109319,15 +110923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1057] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1176] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1018), 2, + STATE(1026), 2, sym_line_comment, sym_block_comment, - ACTIONS(1206), 9, + ACTIONS(1253), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109337,7 +110941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1208), 39, + ACTIONS(1255), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109377,15 +110981,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1239] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1019), 2, + STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 9, + ACTIONS(1245), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109395,7 +110999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(985), 39, + ACTIONS(1247), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109435,15 +111039,75 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1183] = 5, - ACTIONS(101), 1, + [1302] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3320), 1, + anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_COLON_COLON, + STATE(1028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3318), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3316), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [1369] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1020), 2, + STATE(1029), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 9, + ACTIONS(1035), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109453,7 +111117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1234), 39, + ACTIONS(1033), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109493,23 +111157,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1246] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1432] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3276), 1, anon_sym_LT2, - STATE(1075), 1, + STATE(1055), 1, sym_type_arguments, - STATE(1086), 1, + STATE(1062), 1, sym_parameters, - STATE(1021), 2, + STATE(1030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 17, + ACTIONS(3326), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109527,7 +111191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 27, + ACTIONS(3324), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109555,23 +111219,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1317] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1503] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3276), 1, anon_sym_LT2, - STATE(1075), 1, + STATE(1055), 1, sym_type_arguments, - STATE(1086), 1, + STATE(1062), 1, sym_parameters, - STATE(1022), 2, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 17, + ACTIONS(3330), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109589,7 +111253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 27, + ACTIONS(3328), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109617,15 +111281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1388] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1574] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1023), 2, + STATE(1032), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 9, + ACTIONS(1317), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109635,7 +111299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(989), 39, + ACTIONS(1319), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109675,19 +111339,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1451] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1637] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3336), 1, anon_sym_BANG, - ACTIONS(3297), 1, + ACTIONS(3338), 1, anon_sym_COLON_COLON, - STATE(1024), 2, + STATE(1033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3293), 17, + ACTIONS(3334), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109705,7 +111369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3291), 29, + ACTIONS(3332), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109735,73 +111399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1518] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1704] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1025), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1442), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1444), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - 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, - [1581] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 9, + ACTIONS(1249), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109811,7 +111417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1322), 39, + ACTIONS(1251), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109851,15 +111457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1644] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1767] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 9, + ACTIONS(1261), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109869,7 +111475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1246), 39, + ACTIONS(1263), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109909,149 +111515,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1707] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1830] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1028), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3301), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1778] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1029), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3305), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1849] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1030), 2, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(1240), 9, + ACTIONS(1803), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1242), 39, + ACTIONS(1805), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110074,7 +111556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110091,249 +111572,74 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1912] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1892] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_BANG, - ACTIONS(3313), 1, - anon_sym_COLON_COLON, - STATE(1031), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3309), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3307), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1979] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_BANG, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - STATE(1032), 2, + ACTIONS(3344), 1, + anon_sym_POUND, + STATE(1486), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1037), 3, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3317), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3315), 23, - anon_sym_SEMI, + aux_sym_match_arm_repeat1, + ACTIONS(3342), 14, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [2047] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1033), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 16, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2109] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3340), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1958] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3311), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3313), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2171] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(2795), 9, + ACTIONS(2223), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110343,7 +111649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2797), 38, + ACTIONS(2225), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110382,15 +111688,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2233] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2020] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3320), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110407,7 +111713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 31, + ACTIONS(3322), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110439,72 +111745,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2295] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2082] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1037), 2, + ACTIONS(3272), 1, + anon_sym_BANG, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(3349), 1, + anon_sym_COLON_COLON, + STATE(1172), 1, + sym_field_initializer_list, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(1762), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1764), 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, - [2357] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [2152] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1038), 2, + STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(2458), 9, + ACTIONS(1959), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110514,7 +111824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2460), 38, + ACTIONS(1961), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110553,15 +111863,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2214] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + STATE(1042), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 9, + ACTIONS(2543), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110571,7 +111881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(2545), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110610,29 +111920,22 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2481] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2276] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1040), 2, + STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3336), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -110642,12 +111945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(3338), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110669,76 +111973,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2551] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2338] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_POUND, - STATE(1479), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1041), 3, + STATE(1044), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3331), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3300), 16, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, + ACTIONS(3302), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3329), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2617] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2400] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3312), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110755,7 +112059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 31, + ACTIONS(3314), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110787,15 +112091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2679] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2462] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, + STATE(1046), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 9, + ACTIONS(2255), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110805,7 +112109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 38, + ACTIONS(2257), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110844,15 +112148,26 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2741] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2524] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + ACTIONS(3355), 1, + anon_sym_BANG, + ACTIONS(3357), 1, + anon_sym_COLON_COLON, + STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 15, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3353), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110868,13 +112183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3336), 31, + anon_sym_as, + ACTIONS(3351), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110895,24 +112208,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2802] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2592] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1386), 1, + STATE(1465), 1, sym_label, - STATE(1045), 2, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110928,7 +112236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 29, + ACTIONS(3361), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110958,24 +112266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [2867] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2657] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1046), 2, + ACTIONS(3367), 1, + anon_sym_COLON_COLON, + STATE(1049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3294), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -110985,12 +112292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 29, + ACTIONS(3292), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111012,18 +112320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2930] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2720] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1047), 2, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(3294), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111039,7 +112349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 31, + ACTIONS(3292), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111067,19 +112377,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2783] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, + ACTIONS(3371), 1, + anon_sym_COLON_COLON, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 15, + ACTIONS(3294), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111095,7 +112406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3352), 31, + ACTIONS(3292), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111123,80 +112434,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3052] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2846] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3360), 1, - anon_sym_DASH_GT, - STATE(1049), 2, + ACTIONS(3373), 1, + anon_sym_POUND, + STATE(1479), 1, + sym_attribute_item, + STATE(1052), 3, sym_line_comment, sym_block_comment, - ACTIONS(3358), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3356), 30, - anon_sym_SEMI, + aux_sym_enum_variant_list_repeat1, + ACTIONS(755), 11, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3115] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_integer_literal, + sym_metavariable, + ACTIONS(3208), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_else, - STATE(1239), 1, - sym_else_clause, - STATE(1050), 2, + STATE(1053), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 15, + ACTIONS(3378), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111212,7 +112519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1194), 29, + ACTIONS(3376), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111240,19 +112547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [3180] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [2972] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1051), 2, + STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3382), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111268,7 +112575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 30, + ACTIONS(3380), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111296,18 +112603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3243] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3033] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1052), 2, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, + ACTIONS(3386), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111323,7 +112631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3366), 31, + ACTIONS(3384), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111355,15 +112663,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3304] = 5, - ACTIONS(101), 1, + [3094] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(3388), 1, + sym_identifier, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, + anon_sym_STAR, + ACTIONS(3398), 1, + anon_sym_AMP, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3402), 1, + anon_sym_SQUOTE, + ACTIONS(3406), 1, + anon_sym_for, + ACTIONS(3410), 1, + sym_metavariable, + STATE(2542), 1, + sym_where_predicate, + STATE(2556), 1, + sym_scoped_type_identifier, + STATE(2964), 1, + sym_generic_type, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3486), 1, + sym_bracketed_type, + ACTIONS(3390), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3404), 2, + anon_sym_default, + anon_sym_union, + STATE(1056), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3396), 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, + [3193] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1053), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3238), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111379,7 +112762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 31, + ACTIONS(3240), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111387,6 +112770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111407,101 +112791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3365] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3254] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3384), 1, - anon_sym_for, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - STATE(1530), 1, - sym_scoped_type_identifier, - STATE(1597), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1054), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - STATE(1708), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 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, - [3470] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3394), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_arguments, - STATE(1055), 2, + ACTIONS(3416), 1, + anon_sym_DASH_GT, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111517,8 +112820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 29, + ACTIONS(3412), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -111547,24 +112851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3535] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3317] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1056), 2, + ACTIONS(3371), 1, + anon_sym_COLON_COLON, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3306), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111574,12 +112877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 29, + ACTIONS(3304), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111601,18 +112905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3598] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3380] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1057), 2, + ACTIONS(3371), 1, + anon_sym_COLON_COLON, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3402), 15, + ACTIONS(3330), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111628,7 +112934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3400), 31, + ACTIONS(3328), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111656,19 +112962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3443] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1058), 2, + ACTIONS(3422), 1, + anon_sym_DASH_GT, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3420), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111684,7 +112991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3404), 31, + ACTIONS(3418), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111712,19 +113019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3506] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1059), 2, + ACTIONS(3428), 1, + anon_sym_DASH_GT, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111740,7 +113048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3408), 31, + ACTIONS(3424), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111768,21 +113076,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3781] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3569] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_DASH_GT, - STATE(1060), 2, + ACTIONS(3430), 1, + anon_sym_else, + STATE(1137), 1, + sym_else_clause, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1241), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111798,7 +113107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 30, + ACTIONS(1239), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111828,16 +113137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [3844] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3634] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1061), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(3298), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111848,12 +113156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3418), 31, + ACTIONS(3296), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111872,106 +113182,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3905] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [3695] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3422), 1, - sym_identifier, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3428), 1, - anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3432), 1, - anon_sym_for, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, - sym_metavariable, - STATE(1022), 1, - sym_scoped_type_identifier, - STATE(1088), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1062), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - STATE(1293), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 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, - [4010] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1063), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1546), 15, + ACTIONS(3434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111987,7 +113217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1548), 31, + ACTIONS(3432), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111995,7 +113225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112016,18 +113245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4071] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3756] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + ACTIONS(3440), 1, + anon_sym_DASH_GT, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3438), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112038,14 +113270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 29, + ACTIONS(3436), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112064,84 +113294,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [4132] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3819] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_POUND, - STATE(1476), 1, - sym_attribute_item, - STATE(1065), 3, + ACTIONS(3446), 1, + anon_sym_DASH_GT, + STATE(1067), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(796), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3444), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3442), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3201), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4197] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [3882] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + ACTIONS(3448), 1, + anon_sym_COLON_COLON, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112157,7 +113389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3443), 31, + ACTIONS(1291), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112185,21 +113417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4258] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3945] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3451), 1, - anon_sym_DASH_GT, - STATE(1067), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112215,7 +113444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3447), 30, + ACTIONS(3450), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112243,105 +113472,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4321] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4006] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - ACTIONS(3453), 1, - sym_identifier, - STATE(1520), 1, - sym_scoped_type_identifier, - STATE(1613), 1, - sym_for_lifetimes, - STATE(1633), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - STATE(1730), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 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, - [4426] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1069), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -112351,12 +113500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 29, + ACTIONS(3454), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -112378,20 +113528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4489] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4067] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, + ACTIONS(3371), 1, anon_sym_COLON_COLON, - STATE(1070), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3326), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112407,7 +113558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 30, + ACTIONS(3324), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112438,15 +113589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4552] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4130] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1071), 2, + ACTIONS(3462), 1, + anon_sym_DASH_GT, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 15, + ACTIONS(3460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112462,7 +113615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3457), 31, + ACTIONS(3458), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112490,19 +113643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4613] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4193] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3463), 15, + ACTIONS(3466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112518,7 +113670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3461), 31, + ACTIONS(3464), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112550,17 +113702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4674] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4254] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3465), 1, - anon_sym_COLON_COLON, - STATE(1073), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3470), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112576,7 +113726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(3468), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112604,96 +113754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4737] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4315] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3428), 1, - anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, - sym_metavariable, - ACTIONS(3467), 1, - sym_identifier, - STATE(1021), 1, - sym_scoped_type_identifier, - STATE(1070), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1074), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - STATE(1296), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 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, - [4842] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, + ACTIONS(3474), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112709,7 +113782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 31, + ACTIONS(3472), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112741,17 +113814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4903] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4376] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3478), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112767,7 +113838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3476), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112795,95 +113866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4966] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4437] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3477), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1077), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 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, - [5065] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112899,7 +113894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3480), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112927,96 +113922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5128] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4498] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3499), 1, - sym_identifier, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3505), 1, - anon_sym_for, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1914), 1, - sym_scoped_type_identifier, - STATE(1951), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(1966), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 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, - [5233] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(3486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113032,7 +113950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 31, + ACTIONS(3484), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113040,7 +113958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113061,24 +113978,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5294] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4559] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + ACTIONS(3488), 1, + anon_sym_LBRACE, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3300), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -113088,13 +114009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 31, + ACTIONS(3302), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -113116,102 +114036,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [5355] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4622] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3511), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 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, - [5454] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3517), 1, - anon_sym_DASH_GT, - STATE(1083), 2, + ACTIONS(3490), 1, + anon_sym_LBRACE, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3320), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -113221,13 +114066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(3322), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -113249,98 +114093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [5517] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4685] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3519), 1, - sym_identifier, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1916), 1, - sym_scoped_type_identifier, - STATE(1940), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1084), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(1979), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 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, - [5622] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_DASH_GT, - STATE(1085), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(3494), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113356,7 +114120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3521), 30, + ACTIONS(3492), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113384,20 +114148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5685] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4746] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3531), 1, - anon_sym_DASH_GT, - STATE(1086), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, + ACTIONS(3498), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113413,7 +114176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3527), 30, + ACTIONS(3496), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113441,20 +114204,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5748] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4807] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3537), 1, - anon_sym_DASH_GT, - STATE(1087), 2, + ACTIONS(3502), 1, + anon_sym_LPAREN, + STATE(1327), 1, + sym_arguments, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3535), 15, + ACTIONS(3504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113470,9 +114236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3533), 30, + ACTIONS(3500), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -113501,304 +114266,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5811] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4872] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(3388), 1, + sym_identifier, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3398), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3402), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5874] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3406), 1, + anon_sym_for, + ACTIONS(3410), 1, + sym_metavariable, + STATE(2542), 1, + sym_where_predicate, + STATE(2556), 1, + sym_scoped_type_identifier, + STATE(2964), 1, + sym_generic_type, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3486), 1, + sym_bracketed_type, + ACTIONS(3404), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3506), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1089), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3396), 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, + [4971] = 27, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3297), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [5937] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3541), 1, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3086), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_fn, + ACTIONS(3508), 1, + sym_identifier, + ACTIONS(3510), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, anon_sym_COLON_COLON, - STATE(1090), 2, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(3518), 1, + anon_sym_for, + ACTIONS(3520), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_metavariable, + STATE(1023), 1, + sym_scoped_type_identifier, + STATE(1059), 1, + sym_generic_type, + STATE(1630), 1, + sym_for_lifetimes, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3354), 1, + sym_function_modifiers, + STATE(3499), 1, + sym_scoped_identifier, + STATE(3533), 1, + sym_generic_type_with_turbofish, + STATE(3543), 1, + sym_bracketed_type, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1366), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1958), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1960), 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(1397), 3, 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, + ACTIONS(3522), 3, sym_self, sym_super, sym_crate, - [6120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1962), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1964), 38, + STATE(1442), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3512), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113816,44 +114419,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, + [5076] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1405), 1, + anon_sym_for, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3086), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, 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, + ACTIONS(3510), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(3520), 1, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3524), 1, + sym_metavariable, + ACTIONS(3526), 1, sym_identifier, + STATE(1030), 1, + sym_scoped_type_identifier, + STATE(1071), 1, + sym_generic_type, + STATE(1630), 1, + sym_for_lifetimes, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3354), 1, + sym_function_modifiers, + STATE(3499), 1, + sym_scoped_identifier, + STATE(3533), 1, + sym_generic_type_with_turbofish, + STATE(3543), 1, + sym_bracketed_type, + STATE(1086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3522), 3, sym_self, sym_super, sym_crate, - [6180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1094), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1966), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1968), 38, + STATE(1177), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3512), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113871,44 +114497,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, + [5181] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1371), 1, + anon_sym_QMARK, + ACTIONS(1403), 1, 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, + ACTIONS(1405), 1, + anon_sym_for, + ACTIONS(1411), 1, anon_sym_extern, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3404), 1, + anon_sym_union, + ACTIONS(3410), 1, + sym_metavariable, + ACTIONS(3528), 1, sym_identifier, + ACTIONS(3532), 1, + anon_sym_default, + STATE(1603), 1, + sym_for_lifetimes, + STATE(1923), 1, + sym_scoped_type_identifier, + STATE(1947), 1, + sym_generic_type, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3428), 1, + sym_function_modifiers, + STATE(3486), 1, + sym_bracketed_type, + STATE(1087), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - [6240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1970), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1972), 38, + STATE(1987), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3530), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113926,44 +114575,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, + [5286] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1371), 1, + anon_sym_QMARK, + ACTIONS(1403), 1, 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, + ACTIONS(1411), 1, anon_sym_extern, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3404), 1, + anon_sym_union, + ACTIONS(3410), 1, + sym_metavariable, + ACTIONS(3532), 1, + anon_sym_default, + ACTIONS(3534), 1, sym_identifier, + ACTIONS(3536), 1, + anon_sym_for, + STATE(1603), 1, + sym_for_lifetimes, + STATE(1924), 1, + sym_scoped_type_identifier, + STATE(1949), 1, + sym_generic_type, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3428), 1, + sym_function_modifiers, + STATE(3486), 1, + sym_bracketed_type, + STATE(1088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - [6300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1096), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1974), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1976), 38, + STATE(2003), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3530), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113981,44 +114653,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_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, - [6360] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5391] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + ACTIONS(3538), 1, + anon_sym_LBRACE, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(3336), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3338), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [5454] = 27, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3122), 1, + anon_sym_QMARK, + ACTIONS(3134), 1, + anon_sym_fn, + ACTIONS(3540), 1, + sym_identifier, + ACTIONS(3542), 1, + anon_sym_LPAREN, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3548), 1, + anon_sym_default, + ACTIONS(3550), 1, + anon_sym_for, + ACTIONS(3552), 1, + anon_sym_union, + ACTIONS(3556), 1, sym_metavariable, - ACTIONS(1980), 38, + STATE(1538), 1, + sym_scoped_type_identifier, + STATE(1589), 1, + sym_generic_type, + STATE(1638), 1, + sym_for_lifetimes, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3328), 1, + sym_function_modifiers, + STATE(3524), 1, + sym_scoped_identifier, + STATE(3541), 1, + sym_generic_type_with_turbofish, + STATE(3547), 1, + sym_bracketed_type, + STATE(1090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3554), 3, + sym_self, + sym_super, + sym_crate, + STATE(1743), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3544), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114036,44 +114788,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, + [5559] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1405), 1, + anon_sym_for, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3122), 1, + anon_sym_QMARK, + ACTIONS(3134), 1, 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, + ACTIONS(3542), 1, + anon_sym_LPAREN, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3548), 1, + anon_sym_default, + ACTIONS(3552), 1, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3556), 1, + sym_metavariable, + ACTIONS(3558), 1, sym_identifier, + STATE(1529), 1, + sym_scoped_type_identifier, + STATE(1586), 1, + sym_generic_type, + STATE(1638), 1, + sym_for_lifetimes, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3328), 1, + sym_function_modifiers, + STATE(3524), 1, + sym_scoped_identifier, + STATE(3541), 1, + sym_generic_type_with_turbofish, + STATE(3547), 1, + sym_bracketed_type, + STATE(1091), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3554), 3, sym_self, sym_super, sym_crate, - [6420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1098), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1982), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1984), 38, + STATE(1646), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3544), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114091,36 +114866,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_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, - [6480] = 5, - ACTIONS(101), 1, + [5664] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3560), 1, + anon_sym_LBRACE, + STATE(1092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3312), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3314), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [5727] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1551), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1553), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5788] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3566), 1, + anon_sym_DASH_GT, + STATE(1094), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3564), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3562), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5851] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1095), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3570), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3568), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5911] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5971] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1097), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1339), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1337), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6031] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(2519), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114128,7 +115217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(2521), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114167,15 +115256,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6091] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2523), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114183,7 +115272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(2525), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114222,15 +115311,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6151] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2539), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114238,7 +115327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(2541), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114277,15 +115366,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6660] = 5, - ACTIONS(101), 1, + [6211] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1101), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1311), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1309), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6271] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2683), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114293,7 +115437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(2685), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114332,15 +115476,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6331] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114348,7 +115492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(2689), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114387,15 +115531,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6780] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6391] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(2699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114403,7 +115547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(2701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114442,15 +115586,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6451] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(2707), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114458,7 +115602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(2709), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114497,15 +115641,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6511] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(2731), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114513,7 +115657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(2733), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114552,15 +115696,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6571] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(2195), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114568,7 +115712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 38, + ACTIONS(2197), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114607,15 +115751,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6631] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(2239), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114623,7 +115767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 38, + ACTIONS(2241), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114662,15 +115806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6691] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(2459), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114678,7 +115822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 38, + ACTIONS(2461), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114717,15 +115861,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6751] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(1283), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1281), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6811] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1111), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1319), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1317), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6871] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1112), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2691), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114733,7 +115987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 38, + ACTIONS(2693), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114772,15 +116026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6931] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(2715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114788,7 +116042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 38, + ACTIONS(2717), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114827,15 +116081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6991] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(2719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114843,7 +116097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 38, + ACTIONS(2721), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114882,15 +116136,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7051] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114898,7 +116152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 38, + ACTIONS(1909), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114937,15 +116191,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7111] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114953,7 +116207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 38, + ACTIONS(1953), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114992,235 +116246,345 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7171] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2052), 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, - [7500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1251), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1249), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7231] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(1271), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1269), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2056), 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, - [7560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(3574), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3572), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2060), 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, - [7620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7351] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(3578), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3576), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7411] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3582), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [7680] = 5, - ACTIONS(101), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3580), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7471] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1122), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3586), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3584), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7531] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(2415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115228,7 +116592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 38, + ACTIONS(2417), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115267,23 +116631,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7591] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(3590), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2072), 38, + ACTIONS(3588), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115304,33 +116674,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [7800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7651] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(2427), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115338,7 +116702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 38, + ACTIONS(2429), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115377,78 +116741,249 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7711] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [7920] = 5, - ACTIONS(101), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3592), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7771] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1127), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3592), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7831] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(969), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(971), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7891] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1129), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3598), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3596), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7951] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1130), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3602), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2084), 38, + ACTIONS(3600), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115469,33 +117004,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [7980] = 5, - ACTIONS(101), 1, + [8011] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1131), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1045), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1047), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8071] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(2155), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115503,7 +117087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 38, + ACTIONS(2157), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115542,15 +117126,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8131] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(2159), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115558,7 +117142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 38, + ACTIONS(2161), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115597,15 +117181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8191] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2163), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115613,7 +117197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 38, + ACTIONS(2165), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115652,70 +117236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8251] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1127), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1430), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1428), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8220] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2175), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115723,7 +117252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(2177), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115762,15 +117291,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8311] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2183), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115778,7 +117307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(2185), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115817,15 +117346,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8371] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(1400), 15, + ACTIONS(1299), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115841,7 +117370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1398), 30, + ACTIONS(1297), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115872,15 +117401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [8400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8431] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2187), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115888,7 +117417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 38, + ACTIONS(2189), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115927,15 +117456,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8491] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2191), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115943,7 +117472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 38, + ACTIONS(2193), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115982,15 +117511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8551] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2211), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115998,7 +117527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 38, + ACTIONS(2213), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116037,15 +117566,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8580] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8611] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2215), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116053,7 +117582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 38, + ACTIONS(2217), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116092,15 +117621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8671] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(2219), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116108,7 +117637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 38, + ACTIONS(2221), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116147,23 +117676,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8731] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(1315), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1313), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8791] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1144), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3606), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2124), 38, + ACTIONS(3604), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116184,33 +117774,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [8760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8851] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2227), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116218,7 +117802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 38, + ACTIONS(2229), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116257,15 +117841,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2231), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116273,7 +117857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 38, + ACTIONS(2233), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116312,15 +117896,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2235), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116328,7 +117912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 38, + ACTIONS(2237), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116367,15 +117951,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8940] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9031] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2247), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116383,7 +117967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 38, + ACTIONS(2249), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116422,15 +118006,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9091] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2251), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116438,7 +118022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 38, + ACTIONS(2253), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116477,70 +118061,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9151] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1142), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1894), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1896), 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, - [9120] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2279), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116548,7 +118077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 38, + ACTIONS(2281), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116587,70 +118116,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9211] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1144), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2154), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2156), 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, - [9240] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2283), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116658,7 +118132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 38, + ACTIONS(2285), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116697,70 +118171,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9271] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1146), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2162), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2164), 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, - [9360] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(2287), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116768,7 +118187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 38, + ACTIONS(2289), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116807,70 +118226,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9331] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1148), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2170), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2172), 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, - [9480] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(2291), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116878,7 +118242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 38, + ACTIONS(2293), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116917,15 +118281,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9391] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2295), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116933,7 +118297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 38, + ACTIONS(2297), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116972,15 +118336,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9451] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(2299), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116988,7 +118352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 38, + ACTIONS(2301), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117027,15 +118391,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9511] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2303), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117043,7 +118407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 38, + ACTIONS(2305), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117082,15 +118446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9571] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(2307), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117098,7 +118462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2192), 38, + ACTIONS(2309), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117137,15 +118501,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9780] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9631] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(2311), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117153,7 +118517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 38, + ACTIONS(2313), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117192,15 +118556,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9691] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(2315), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117208,7 +118572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 38, + ACTIONS(2317), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117247,15 +118611,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9751] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(2319), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117263,7 +118627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2204), 38, + ACTIONS(2321), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117302,15 +118666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9811] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(2323), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117318,7 +118682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 38, + ACTIONS(2325), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117357,15 +118721,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9871] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2327), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117373,7 +118737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 38, + ACTIONS(2329), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117412,15 +118776,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9931] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(2331), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117428,7 +118792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 38, + ACTIONS(2333), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117467,15 +118831,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9991] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2735), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117483,7 +118847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 38, + ACTIONS(2737), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117522,15 +118886,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10051] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2339), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117538,7 +118902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 38, + ACTIONS(2341), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117577,15 +118941,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10111] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2343), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117593,7 +118957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 38, + ACTIONS(2345), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117632,15 +118996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10171] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2347), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117648,7 +119012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 38, + ACTIONS(2349), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117687,15 +119051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10231] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2351), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117703,7 +119067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 38, + ACTIONS(2353), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117742,70 +119106,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(1351), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1349), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2240), 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, - [10500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10351] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2359), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117813,7 +119177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 38, + ACTIONS(2361), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117852,15 +119216,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10411] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(2379), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117868,7 +119232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 38, + ACTIONS(2381), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117907,256 +119271,586 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10471] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(3610), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3608), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2256), 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, - [10680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10531] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(3614), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3612), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2260), 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, - [10740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10591] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(3618), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3616), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2264), 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, - [10800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10651] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2268), 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, - [10860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10711] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(3622), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3620), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2917), 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_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10771] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1177), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3326), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3324), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10831] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1263), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1261), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10891] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3626), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3624), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10951] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1180), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1259), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1257), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11011] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1181), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3630), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3628), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11071] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1182), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2403), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2405), 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, @@ -118182,15 +119876,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11131] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118198,7 +119892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 38, + ACTIONS(2409), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118237,15 +119931,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10980] = 5, - ACTIONS(101), 1, + [11191] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1033), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1035), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11251] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118253,7 +120002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 38, + ACTIONS(2421), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118292,15 +120041,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11311] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2431), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118308,7 +120057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 38, + ACTIONS(2433), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118347,15 +120096,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11371] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2435), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118363,7 +120112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 38, + ACTIONS(2437), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118402,15 +120151,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11431] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2439), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118418,7 +120167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 38, + ACTIONS(2441), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118457,15 +120206,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11491] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2443), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118473,7 +120222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 38, + ACTIONS(2445), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118512,15 +120261,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11551] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2447), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118528,7 +120277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 38, + ACTIONS(2449), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118567,15 +120316,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11340] = 5, - ACTIONS(101), 1, + [11611] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1191), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1279), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1277), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11671] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1192), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1295), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1293), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11731] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 7, + ACTIONS(2467), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118583,7 +120442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 38, + ACTIONS(2469), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118622,15 +120481,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11791] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2471), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118638,7 +120497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 38, + ACTIONS(2473), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118677,15 +120536,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11851] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2475), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118693,7 +120552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 38, + ACTIONS(2477), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118732,70 +120591,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11580] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1184), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2479), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118803,7 +120607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(2481), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118842,15 +120646,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(2491), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118858,7 +120662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 38, + ACTIONS(2493), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118897,70 +120701,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12031] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3547), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11760] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 7, + ACTIONS(2495), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118968,7 +120717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(2497), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119007,15 +120756,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12091] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 7, + ACTIONS(2499), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119023,7 +120772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2248), 38, + ACTIONS(2501), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119062,70 +120811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12151] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1189), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3553), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3551), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11940] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2511), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119133,7 +120827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 38, + ACTIONS(2513), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119172,15 +120866,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12211] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(2515), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119188,7 +120882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 38, + ACTIONS(2517), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119227,15 +120921,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12271] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(1303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119251,7 +120945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(1301), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119282,15 +120976,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12120] = 5, - ACTIONS(101), 1, + [12331] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2531), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2533), 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, + [12391] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 15, + ACTIONS(3634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119306,7 +121055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3555), 30, + ACTIONS(3632), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119337,15 +121086,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12180] = 5, - ACTIONS(101), 1, + [12451] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2563), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2565), 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, + [12511] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(2567), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119353,7 +121157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 38, + ACTIONS(2569), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119392,125 +121196,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12571] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1450), 30, + ACTIONS(2571), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2573), 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, + [12631] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(1322), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1320), 30, + ACTIONS(2575), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12360] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2577), 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, + [12691] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(2579), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119518,7 +121322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 38, + ACTIONS(2581), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119557,125 +121361,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12751] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(753), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(755), 30, + ACTIONS(2583), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2585), 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, + [12811] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3559), 30, + ACTIONS(2587), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2589), 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, + [12871] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2591), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119683,7 +121487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 38, + ACTIONS(2593), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119722,15 +121526,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12931] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2595), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119738,7 +121542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 38, + ACTIONS(2597), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119777,70 +121581,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12991] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3563), 30, + ACTIONS(2599), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2601), 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, + [13051] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2603), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119848,7 +121652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 38, + ACTIONS(2605), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119887,15 +121691,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12780] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13111] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2607), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119903,7 +121707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 38, + ACTIONS(2609), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119942,663 +121746,628 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13171] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1206), 30, + ACTIONS(2611), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2613), 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, + [13231] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1382), 30, + ACTIONS(2615), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2617), 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, + [13291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 30, + ACTIONS(2619), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2621), 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, + [13351] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3571), 30, + ACTIONS(2623), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2625), 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, + [13411] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3575), 30, + ACTIONS(2627), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2629), 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, + [13471] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 30, + ACTIONS(2631), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2633), 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, + [13531] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3583), 30, + ACTIONS(2635), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2637), 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, + [13591] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3587), 30, + ACTIONS(2639), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2641), 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, + [13651] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 30, + ACTIONS(2643), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2645), 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, + [13711] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(2647), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2649), 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, + [13771] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3392), 30, + ACTIONS(2651), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13500] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3221), 1, - anon_sym_if, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3603), 1, + anon_sym_POUND, sym_metavariable, - STATE(2726), 1, - sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3219), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1216), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, + ACTIONS(2653), 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, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 19, + [13831] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1228), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2655), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2657), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120616,25 +122385,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_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, - [13592] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13891] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2659), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2661), 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, + [13951] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2663), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2665), 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, + [14011] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1231), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2667), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2669), 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, + [14071] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1232), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2671), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2673), 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, + [14131] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2675), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2677), 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, + [14191] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1234), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2679), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2681), 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, + [14251] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1247), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -120642,7 +122760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3605), 30, + ACTIONS(1245), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120673,15 +122791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13652] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14311] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(1422), 15, + ACTIONS(1335), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120697,7 +122815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1420), 30, + ACTIONS(1333), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120728,15 +122846,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13712] = 5, - ACTIONS(101), 1, + [14371] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2695), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2697), 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, + [14431] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2703), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2705), 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, + [14491] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1643), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + aux_sym_string_literal_token1, + ACTIONS(1675), 1, + sym__raw_string_literal_start, + ACTIONS(3258), 1, + anon_sym_if, + ACTIONS(3636), 1, + sym_identifier, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, + ACTIONS(3644), 1, + sym_metavariable, + STATE(2512), 1, + sym_scoped_identifier, + STATE(3044), 1, + sym__literal_pattern, + STATE(3483), 1, + sym_bracketed_type, + STATE(3494), 1, + sym_generic_type_with_turbofish, + ACTIONS(1669), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3256), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1665), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3642), 3, + sym_self, + sym_super, + sym_crate, + STATE(2311), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3638), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [14583] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, + ACTIONS(3648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120752,7 +123051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3609), 30, + ACTIONS(3646), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120783,15 +123082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13772] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14643] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3615), 15, + ACTIONS(3652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120807,7 +123106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3613), 30, + ACTIONS(3650), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120838,15 +123137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14703] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(3658), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120860,17 +123165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3617), 30, + ACTIONS(3654), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -120893,15 +123195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13892] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14769] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, + ACTIONS(3666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120917,7 +123219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3621), 30, + ACTIONS(3664), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120948,15 +123250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13952] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14829] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120972,7 +123274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 30, + ACTIONS(3668), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121003,15 +123305,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14012] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14889] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3674), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121025,17 +123333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 30, + ACTIONS(3672), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -121058,15 +123363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14072] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14955] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121082,7 +123387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 30, + ACTIONS(3676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121113,70 +123418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14132] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15015] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1226), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3635), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3633), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14192] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(2727), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121184,7 +123434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 38, + ACTIONS(2729), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121223,84 +123473,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14252] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15075] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1228), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3639), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3637), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14312] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 13, + ACTIONS(2711), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3641), 32, + ACTIONS(2713), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121321,41 +123510,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14372] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15135] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 13, + ACTIONS(2207), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3645), 32, + ACTIONS(2209), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121376,82 +123565,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14432] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15195] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1231), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(985), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(987), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14492] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 7, + ACTIONS(1691), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121459,7 +123599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2420), 38, + ACTIONS(1693), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121498,15 +123638,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14552] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15255] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2422), 7, + ACTIONS(1695), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121514,7 +123654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2424), 38, + ACTIONS(1697), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121553,15 +123693,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14612] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15315] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2426), 7, + ACTIONS(1699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121569,7 +123709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2428), 38, + ACTIONS(1701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121608,15 +123748,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15375] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 7, + ACTIONS(1703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121624,7 +123764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2432), 38, + ACTIONS(1705), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121663,15 +123803,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14732] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15435] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 7, + ACTIONS(1791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121679,7 +123819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2436), 38, + ACTIONS(1793), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121718,182 +123858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14792] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1237), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3651), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3649), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14852] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - ACTIONS(3653), 1, - anon_sym_BANG, - STATE(1238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3317), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3315), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [14916] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15495] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1239), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1388), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1386), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14976] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2438), 7, + ACTIONS(2123), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121901,7 +123874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2440), 38, + ACTIONS(2125), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121940,70 +123913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15036] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15555] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1241), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15096] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 7, + ACTIONS(2127), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122011,7 +123929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2444), 38, + ACTIONS(2129), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122050,33 +123968,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15156] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15615] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - anon_sym_RBRACE, - STATE(1243), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3657), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2131), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3655), 29, + ACTIONS(2133), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122094,27 +124002,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + 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_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [15218] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15675] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2135), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122122,7 +124039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(2137), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122161,15 +124078,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15735] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2446), 7, + ACTIONS(2139), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122177,7 +124094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2448), 38, + ACTIONS(2141), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122216,15 +124133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15338] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15795] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 7, + ACTIONS(2147), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122232,7 +124149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2452), 38, + ACTIONS(2149), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122271,15 +124188,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15398] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15855] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 7, + ACTIONS(2151), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122287,7 +124204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2456), 38, + ACTIONS(2153), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122326,239 +124243,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15458] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15915] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(1396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15518] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1249), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3663), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3661), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15578] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1250), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15638] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3669), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [15706] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1252), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2462), 7, + ACTIONS(2167), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122566,7 +124259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2464), 38, + ACTIONS(2169), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122605,15 +124298,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15975] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2466), 7, + ACTIONS(2171), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122621,7 +124314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2468), 38, + ACTIONS(2173), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122660,15 +124353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15826] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16035] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2179), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122676,7 +124369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2472), 38, + ACTIONS(2181), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122715,15 +124408,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15886] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16095] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2474), 7, + ACTIONS(2199), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122731,7 +124424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2476), 38, + ACTIONS(2201), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122770,15 +124463,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15946] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16155] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 7, + ACTIONS(2203), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122786,7 +124479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2480), 38, + ACTIONS(2205), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122825,15 +124518,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16215] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 15, + ACTIONS(1267), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122849,7 +124542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 30, + ACTIONS(1265), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122880,15 +124573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16275] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2482), 7, + ACTIONS(2243), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122896,7 +124589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2484), 38, + ACTIONS(2245), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122935,15 +124628,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16126] = 5, - ACTIONS(101), 1, + [16335] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(977), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(979), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [16395] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2486), 7, + ACTIONS(2259), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122951,7 +124699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2488), 38, + ACTIONS(2261), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122990,29 +124738,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16186] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16455] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 13, + ACTIONS(2263), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3681), 32, + ACTIONS(2265), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123033,41 +124775,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16515] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 13, + ACTIONS(2267), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3685), 32, + ACTIONS(2269), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123088,82 +124830,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16575] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1262), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3691), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3689), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16366] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(2271), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123171,7 +124864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 38, + ACTIONS(2273), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123210,70 +124903,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16635] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3695), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3693), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16486] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(2275), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123281,7 +124919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 38, + ACTIONS(2277), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123320,15 +124958,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16695] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, + ACTIONS(1687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123336,7 +124974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2500), 38, + ACTIONS(1689), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123375,15 +125013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16755] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 7, + ACTIONS(2363), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123391,7 +125029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2504), 38, + ACTIONS(2365), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123430,15 +125068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16815] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 7, + ACTIONS(2367), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123446,7 +125084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2508), 38, + ACTIONS(2369), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123485,70 +125123,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16875] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1269), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1376), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1374), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16786] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2514), 7, + ACTIONS(2371), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123556,7 +125139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2516), 38, + ACTIONS(2373), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123595,15 +125178,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16935] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2375), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123611,7 +125194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 38, + ACTIONS(2377), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123650,29 +125233,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16995] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 13, + ACTIONS(2387), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3697), 32, + ACTIONS(2389), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123693,41 +125270,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, - anon_sym_union, + 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17055] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 13, + ACTIONS(2391), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3701), 32, + ACTIONS(2393), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123748,96 +125325,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17026] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17115] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3705), 30, + ACTIONS(2395), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17086] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2397), 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, + [17175] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 13, + ACTIONS(2399), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3709), 32, + ACTIONS(2401), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123858,27 +125435,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17235] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123886,7 +125469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 38, + ACTIONS(2425), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123925,15 +125508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17295] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 7, + ACTIONS(2455), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123941,7 +125524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2530), 38, + ACTIONS(2457), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123980,70 +125563,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17355] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3713), 30, + ACTIONS(2463), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17326] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2465), 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, + [17415] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2615), 7, + ACTIONS(2483), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124051,7 +125634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2617), 38, + ACTIONS(2485), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124090,15 +125673,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17386] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17475] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2619), 7, + ACTIONS(2487), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124106,7 +125689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2621), 38, + ACTIONS(2489), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124145,15 +125728,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17446] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17535] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2623), 7, + ACTIONS(2503), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124161,7 +125744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2625), 38, + ACTIONS(2505), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124200,15 +125783,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17595] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 7, + ACTIONS(2507), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124216,7 +125799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2629), 38, + ACTIONS(2509), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124255,15 +125838,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17566] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17655] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2631), 7, + ACTIONS(2527), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124271,7 +125854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2633), 38, + ACTIONS(2529), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124310,15 +125893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17626] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17715] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(2535), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124326,7 +125909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 38, + ACTIONS(2537), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124365,15 +125948,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17775] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(2547), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124381,7 +125964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2643), 38, + ACTIONS(2549), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124420,143 +126003,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17746] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17835] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1286), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3719), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3717), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17806] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(1426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1424), 30, + ACTIONS(2551), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17866] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3725), 1, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - STATE(1288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3723), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3721), 29, + ACTIONS(2553), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124574,27 +126037,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + 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_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [17928] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17895] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2555), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124602,7 +126074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 38, + ACTIONS(2557), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124641,15 +126113,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17988] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17955] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2559), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124657,7 +126129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2655), 38, + ACTIONS(2561), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124696,15 +126168,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18048] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18015] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(1255), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124720,7 +126192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 30, + ACTIONS(1253), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124751,15 +126223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18075] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124775,7 +126247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 30, + ACTIONS(3680), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124806,125 +126278,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18168] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18135] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 30, + ACTIONS(2723), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18228] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2725), 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, + [18195] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3735), 30, + ACTIONS(2335), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18288] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2337), 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, + [18255] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(965), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124940,7 +126412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 30, + ACTIONS(967), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124971,15 +126443,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18348] = 5, - ACTIONS(101), 1, + [18315] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1643), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + aux_sym_string_literal_token1, + ACTIONS(1675), 1, + sym__raw_string_literal_start, + ACTIONS(3246), 1, + anon_sym_if, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, + ACTIONS(3684), 1, + sym_identifier, + ACTIONS(3690), 1, + sym_metavariable, + STATE(2523), 1, + sym_scoped_identifier, + STATE(2783), 1, + sym__literal_pattern, + STATE(3483), 1, + sym_bracketed_type, + STATE(3494), 1, + sym_generic_type_with_turbofish, + ACTIONS(1669), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3244), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1665), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3688), 3, + sym_self, + sym_super, + sym_crate, + STATE(2311), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3686), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [18407] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124995,7 +126538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 30, + ACTIONS(3692), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125026,235 +126569,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18408] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18467] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 30, + ACTIONS(1707), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18468] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1709), 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, + [18527] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3743), 30, + ACTIONS(1711), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18528] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1299), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3749), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3747), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18588] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1713), 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, + [18587] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3751), 30, + ACTIONS(1715), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18648] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1717), 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, + [18647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(1719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125262,7 +126750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2408), 38, + ACTIONS(1721), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125301,113 +126789,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18708] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18707] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1240), 30, + ACTIONS(1723), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18768] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3233), 1, - anon_sym_if, - ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, + anon_sym_POUND, sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3231), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, + ACTIONS(1725), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125425,127 +126823,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_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, - [18860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18767] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3763), 30, + ACTIONS(1727), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1729), 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, + [18827] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3767), 30, + ACTIONS(1731), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1733), 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, + [18887] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(1735), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125553,7 +126970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2659), 38, + ACTIONS(1737), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125592,15 +127009,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18947] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(1739), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125608,7 +127025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2663), 38, + ACTIONS(1741), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125647,235 +127064,235 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19007] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(3773), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3771), 30, + ACTIONS(1743), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1745), 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, + [19067] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3775), 30, + ACTIONS(1747), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1749), 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, + [19127] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(1751), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1753), 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, + [19187] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(991), 30, + ACTIONS(1755), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1757), 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, + [19247] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 7, + ACTIONS(1759), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125883,7 +127300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2667), 38, + ACTIONS(1761), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125922,70 +127339,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19307] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(767), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(769), 30, + ACTIONS(1763), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1765), 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, + [19367] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(1767), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125993,7 +127410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2671), 38, + ACTIONS(1769), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126032,15 +127449,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19427] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 7, + ACTIONS(1771), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126048,7 +127465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2675), 38, + ACTIONS(1773), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126087,15 +127504,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19580] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19487] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 7, + ACTIONS(1775), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126103,7 +127520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2679), 38, + ACTIONS(1777), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126142,15 +127559,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19547] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 7, + ACTIONS(1779), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126158,7 +127575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2683), 38, + ACTIONS(1781), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126197,15 +127614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19607] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2685), 7, + ACTIONS(1783), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126213,7 +127630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2687), 38, + ACTIONS(1785), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126252,403 +127669,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19667] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1350), 30, + ACTIONS(1787), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1320), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3781), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3779), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1321), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1354), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19940] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1789), 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, + [19727] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1322), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3785), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3783), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20000] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1323), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3787), 28, + ACTIONS(1795), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1324), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3793), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3791), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1797), 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, + [19787] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1325), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3797), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3795), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20186] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2689), 7, + ACTIONS(1799), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126656,7 +127795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2691), 38, + ACTIONS(1801), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126695,15 +127834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19847] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(3698), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126719,7 +127858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 30, + ACTIONS(3696), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126750,15 +127889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [20306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19907] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 7, + ACTIONS(1807), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126766,7 +127905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2695), 38, + ACTIONS(1809), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126805,15 +127944,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20366] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19967] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2697), 7, + ACTIONS(1811), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126821,7 +127960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2699), 38, + ACTIONS(1813), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126860,15 +127999,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20027] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 7, + ACTIONS(1815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126876,7 +128015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2703), 38, + ACTIONS(1817), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126915,15 +128054,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20486] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20087] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2705), 7, + ACTIONS(1819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126931,7 +128070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2707), 38, + ACTIONS(1821), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126970,15 +128109,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20147] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 7, + ACTIONS(1823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126986,7 +128125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2711), 38, + ACTIONS(1825), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127025,15 +128164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20207] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2713), 7, + ACTIONS(1827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127041,7 +128180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2715), 38, + ACTIONS(1829), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127080,15 +128219,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20267] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2717), 7, + ACTIONS(1831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127096,7 +128235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2719), 38, + ACTIONS(1833), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127135,15 +128274,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20327] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 7, + ACTIONS(1835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127151,7 +128290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2723), 38, + ACTIONS(1837), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127190,128 +128329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1336), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1364), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1362), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20846] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20387] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1337), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3805), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3803), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20912] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2791), 7, + ACTIONS(1839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127319,7 +128345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2793), 38, + ACTIONS(1841), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127358,15 +128384,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20972] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20447] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2799), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127374,7 +128400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2801), 38, + ACTIONS(1845), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127413,15 +128439,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20507] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2803), 7, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +128455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2805), 38, + ACTIONS(1849), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127468,15 +128494,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21092] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20567] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2807), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127484,7 +128510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2809), 38, + ACTIONS(1853), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127523,15 +128549,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21152] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20627] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127539,7 +128565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 38, + ACTIONS(1857), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127578,15 +128604,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21212] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20687] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127594,7 +128620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2817), 38, + ACTIONS(1861), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127633,15 +128659,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21272] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20747] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127649,7 +128675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2821), 38, + ACTIONS(1865), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127688,15 +128714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21332] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20807] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, + ACTIONS(1867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127704,7 +128730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2825), 38, + ACTIONS(1869), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127743,15 +128769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21392] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20867] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127759,7 +128785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2829), 38, + ACTIONS(1873), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127798,15 +128824,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21452] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20927] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127814,7 +128840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 38, + ACTIONS(1877), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127853,15 +128879,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21512] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20987] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127869,7 +128895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2837), 38, + ACTIONS(1881), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127908,15 +128934,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21572] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21047] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127924,7 +128950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2841), 38, + ACTIONS(1885), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127963,15 +128989,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21632] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21107] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127979,7 +129005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 38, + ACTIONS(1889), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128018,15 +129044,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21692] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21167] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128034,7 +129060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2849), 38, + ACTIONS(1893), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128073,15 +129099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21752] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21227] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128089,7 +129115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 38, + ACTIONS(1897), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128128,73 +129154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21812] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21287] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1353), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3809), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3807), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21878] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128202,7 +129170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 38, + ACTIONS(1901), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128241,15 +129209,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21938] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21347] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128257,7 +129225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 38, + ACTIONS(1905), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128296,15 +129264,180 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21998] = 5, - ACTIONS(101), 1, + [21407] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1353), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1345), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21467] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1354), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3702), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3700), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21527] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1355), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3706), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3704), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21587] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128312,7 +129445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 38, + ACTIONS(1913), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128351,15 +129484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22058] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128367,7 +129500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2869), 38, + ACTIONS(1917), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128406,15 +129539,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22118] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21707] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128422,7 +129555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2873), 38, + ACTIONS(1921), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128461,15 +129594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22178] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21767] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128477,7 +129610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2877), 38, + ACTIONS(1925), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128516,15 +129649,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22238] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21827] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128532,7 +129665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2881), 38, + ACTIONS(1929), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128571,15 +129704,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22298] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21887] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128587,7 +129720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2885), 38, + ACTIONS(1933), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128626,15 +129759,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22358] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21947] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128642,7 +129775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2889), 38, + ACTIONS(1937), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128681,15 +129814,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22418] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22007] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128697,7 +129830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2893), 38, + ACTIONS(1941), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128736,15 +129869,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22478] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22067] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2895), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128752,7 +129885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2897), 38, + ACTIONS(1945), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128791,29 +129924,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22538] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22127] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 13, + ACTIONS(1947), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3811), 32, + ACTIONS(1949), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128834,41 +129961,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22598] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22187] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 13, + ACTIONS(1955), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3815), 32, + ACTIONS(1957), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128889,41 +130016,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22658] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22247] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 13, + ACTIONS(3710), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3708), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22307] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1368), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1963), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3819), 32, + ACTIONS(1965), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128944,27 +130126,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22718] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22367] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2899), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128972,7 +130160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2901), 38, + ACTIONS(1969), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129011,70 +130199,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22778] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22427] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3823), 30, + ACTIONS(1971), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [22838] = 5, - ACTIONS(101), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1973), 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, + [22487] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1975), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1977), 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, + [22547] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2903), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129082,7 +130325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2905), 38, + ACTIONS(1981), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129121,15 +130364,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22607] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129137,7 +130380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2909), 38, + ACTIONS(1985), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129176,15 +130419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22958] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22667] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 7, + ACTIONS(1987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129192,7 +130435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2913), 38, + ACTIONS(1989), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129231,15 +130474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23018] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22727] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129247,7 +130490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 38, + ACTIONS(1993), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129286,15 +130529,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23078] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22787] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(1995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129302,7 +130545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2651), 38, + ACTIONS(1997), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129341,181 +130584,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23138] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1375), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1234), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1232), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23198] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22847] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1376), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1380), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1378), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23258] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 28, + ACTIONS(1999), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [23320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2001), 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, + [22907] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 7, + ACTIONS(2003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129523,7 +130655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(2005), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129562,15 +130694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22967] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 7, + ACTIONS(2007), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129578,7 +130710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(2009), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129617,573 +130749,188 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23027] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(771), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(773), 30, + ACTIONS(2011), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2013), 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, + [23087] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1370), 30, + ACTIONS(2015), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2017), 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, + [23147] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(2019), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2021), 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, + [23207] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3833), 30, + ACTIONS(2023), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1384), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3839), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3837), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1385), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3843), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3841), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1386), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3847), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3845), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1387), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1444), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1442), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1388), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3851), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3849), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1389), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3855), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3853), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1390), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1758), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(2025), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130222,70 +130969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23267] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1391), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3859), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3857), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24160] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 7, + ACTIONS(2027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130293,7 +130985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(2029), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130332,72 +131024,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24220] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23327] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - STATE(1393), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [24284] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 7, + ACTIONS(2031), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130405,7 +131040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(2033), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130444,15 +131079,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24344] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23387] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 7, + ACTIONS(2035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130460,7 +131095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(2037), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130499,15 +131134,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24404] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23447] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 7, + ACTIONS(2039), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130515,7 +131150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(2041), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130554,15 +131189,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24464] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23507] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 7, + ACTIONS(2043), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130570,7 +131205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(2045), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130609,15 +131244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24524] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23567] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 7, + ACTIONS(2047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130625,7 +131260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(2049), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130664,15 +131299,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24584] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23627] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 7, + ACTIONS(2051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130680,7 +131315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(2053), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130719,15 +131354,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24644] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23687] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1702), 7, + ACTIONS(2055), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130735,7 +131370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(2057), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130774,15 +131409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24704] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23747] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1706), 7, + ACTIONS(2059), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130790,7 +131425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(2061), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130829,15 +131464,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24764] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23807] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 7, + ACTIONS(2063), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130845,7 +131480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(2065), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130884,15 +131519,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24824] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23867] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1714), 7, + ACTIONS(2067), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130900,7 +131535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(2069), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130939,15 +131574,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24884] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23927] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(1718), 7, + ACTIONS(2071), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130955,7 +131590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(2073), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130994,15 +131629,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24944] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23987] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(1722), 7, + ACTIONS(2075), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131010,7 +131645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(2077), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131049,15 +131684,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25004] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24047] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(1726), 7, + ACTIONS(2079), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131065,7 +131700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(2081), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131104,15 +131739,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25064] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24107] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(1730), 7, + ACTIONS(2083), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131120,7 +131755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(2085), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131159,15 +131794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25124] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24167] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(1734), 7, + ACTIONS(2087), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131175,7 +131810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(2089), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131214,15 +131849,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25184] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24227] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 7, + ACTIONS(2091), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131230,7 +131865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(2093), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131269,15 +131904,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25244] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24287] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(1742), 7, + ACTIONS(2095), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131285,7 +131920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(2097), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131324,15 +131959,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24347] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(1746), 7, + ACTIONS(2099), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131340,7 +131975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(2101), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131379,15 +132014,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25364] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24407] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(1750), 7, + ACTIONS(2103), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131395,7 +132030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(2105), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131434,70 +132069,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25424] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24467] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1413), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1390), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25484] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(1754), 7, + ACTIONS(2107), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131505,7 +132085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(2109), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131544,15 +132124,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25544] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24527] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(1766), 7, + ACTIONS(2111), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131560,7 +132140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(2113), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131599,15 +132179,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25604] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24587] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(1770), 7, + ACTIONS(2115), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131615,7 +132195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(2117), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131654,15 +132234,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25664] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(1774), 7, + ACTIONS(2119), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131670,7 +132250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(2121), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131709,15 +132289,18 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25724] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24707] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + ACTIONS(3714), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131733,13 +132316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 30, + ACTIONS(3712), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -131761,21 +132343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25784] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24769] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1419), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131791,12 +132369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 28, + ACTIONS(3718), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -131818,17 +132397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24829] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1778), 7, + ACTIONS(3724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131836,7 +132416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(3722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131875,620 +132455,1285 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24889] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(1782), 7, + ACTIONS(3728), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3726), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1784), 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, - [25966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24949] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(1786), 7, + ACTIONS(3732), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3730), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1788), 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, - [26026] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25009] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(1790), 7, + ACTIONS(3736), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3734), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1792), 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, - [26086] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25069] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(1794), 7, + ACTIONS(3740), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1796), 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, - [26146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_else, + [25137] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(1798), 7, + ACTIONS(3746), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3744), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1800), 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, - [26206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25197] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, + ACTIONS(3750), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3748), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1804), 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, - [26266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25257] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(3754), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3752), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1808), 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, - [26326] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25317] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 7, + ACTIONS(3758), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3756), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1812), 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, - [26386] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25377] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(3762), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3760), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [26446] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25437] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + ACTIONS(3764), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(3716), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3712), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1820), 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, - [26506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [25499] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(3716), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3712), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1824), 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, - [26566] = 5, - ACTIONS(101), 1, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25559] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1422), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3768), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3766), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25619] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25679] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3772), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3770), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25739] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3776), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3774), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25799] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3294), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3292), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25859] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1427), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3780), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3778), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25919] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3784), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3782), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25979] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26039] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1430), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3788), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3786), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26099] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3792), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3790), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26159] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(3796), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3794), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26219] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1433), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(973), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(975), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26279] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2143), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132496,7 +133741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(2145), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132535,15 +133780,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26626] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26339] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(2355), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132551,7 +133796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(2357), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132590,23 +133835,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26399] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(3800), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(3798), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132627,41 +133878,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26746] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26459] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(3804), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(3802), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132682,41 +133933,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26806] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26519] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(3808), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(3806), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132737,143 +133988,690 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26866] = 5, - ACTIONS(101), 1, + [26579] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(961), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(963), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26639] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3812), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3810), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26699] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1441), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3816), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3814), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26759] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3306), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3304), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26819] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3818), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26879] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1275), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1273), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26939] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3824), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3822), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26999] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1446), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3330), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3328), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27059] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1323), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1321), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27119] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + STATE(1448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3828), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3826), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27185] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(1355), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1353), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1848), 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, - [26926] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27245] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(3832), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3830), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1852), 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, - [26986] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27305] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(1359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132889,7 +134687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 30, + ACTIONS(1357), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132920,23 +134718,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27046] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27365] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(3836), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(3834), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132957,151 +134761,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27106] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27425] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(3840), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3838), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1860), 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, - [27166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27485] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(3844), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3842), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [27226] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27545] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(3848), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(3846), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133122,33 +134926,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27286] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27605] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(1331), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133164,7 +134962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 30, + ACTIONS(1329), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133195,70 +134993,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27346] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27665] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(1343), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1341), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1872), 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, - [27406] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27725] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(3504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133274,7 +135072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 30, + ACTIONS(3500), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133305,23 +135103,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27466] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27785] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(3852), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(3850), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133342,41 +135146,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27526] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27845] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(3856), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(3854), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133397,33 +135201,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27586] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27905] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + ACTIONS(3272), 1, + anon_sym_BANG, + ACTIONS(3858), 1, + anon_sym_COLON_COLON, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133439,13 +135241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 30, + ACTIONS(1291), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -133467,73 +135268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27646] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27969] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1450), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1898), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1900), 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, - [27706] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133549,7 +135294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3860), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133580,78 +135325,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28029] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1904), 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, - [27826] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28089] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + ACTIONS(3868), 1, + anon_sym_RBRACE, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3866), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(3864), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133669,36 +135424,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, 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, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [27886] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28151] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133714,7 +135460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1402), 30, + ACTIONS(3870), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133745,15 +135491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27946] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28211] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(2411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133761,7 +135507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 38, + ACTIONS(2413), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133800,188 +135546,255 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28271] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 7, + ACTIONS(3876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3874), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(3877), 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, - [28066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28331] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(3880), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3878), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1920), 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, - [28126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28391] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1924), 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, - [28186] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28451] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + ACTIONS(3357), 1, + anon_sym_COLON_COLON, + ACTIONS(3886), 1, + anon_sym_BANG, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(3353), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3351), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [28515] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3892), 1, anon_sym_RBRACE, + STATE(1471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3890), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(3888), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133999,36 +135812,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, 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, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [28246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28577] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3883), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134044,7 +135848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3881), 30, + ACTIONS(3894), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134075,70 +135879,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28637] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(3900), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3898), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1932), 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, - [28366] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28697] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134154,7 +135958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(937), 30, + ACTIONS(3902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134185,15 +135989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28757] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134209,7 +136013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(969), 30, + ACTIONS(1291), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134240,78 +136044,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28486] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28817] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(3908), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3906), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28877] = 23, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(3388), 1, + sym_identifier, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, + anon_sym_STAR, + ACTIONS(3398), 1, + anon_sym_AMP, + ACTIONS(3400), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3402), 1, + anon_sym_SQUOTE, + ACTIONS(3406), 1, + anon_sym_for, + ACTIONS(3410), 1, sym_metavariable, - ACTIONS(1936), 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, + STATE(2402), 1, + sym_where_predicate, + STATE(2556), 1, + sym_scoped_type_identifier, + STATE(2964), 1, + sym_generic_type, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3486), 1, + sym_bracketed_type, + ACTIONS(3404), 2, 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, + STATE(1477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - [28546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1465), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1938), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1940), 38, + STATE(3086), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3396), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134329,99 +136171,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_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, - [28606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28972] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + ACTIONS(3357), 1, + anon_sym_COLON_COLON, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(3353), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3351), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1944), 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, - [28666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [29033] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3230), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(1948), 38, + ACTIONS(3228), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134442,41 +136268,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [28726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29092] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3866), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(3864), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134494,44 +136322,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, 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, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [28786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29151] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3890), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(3888), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134549,44 +136376,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, 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, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [28846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29210] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + ACTIONS(3910), 1, + anon_sym_COLON_COLON, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(2510), 7, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [29271] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1483), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2143), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2512), 38, + ACTIONS(2145), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134607,33 +136485,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, 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, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [28906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29330] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3887), 15, + ACTIONS(2403), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134649,7 +136521,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3885), 29, + ACTIONS(2405), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134679,28 +136551,61 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28965] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29389] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2410), 12, - anon_sym_LPAREN, + ACTIONS(1587), 1, anon_sym_LBRACK, + ACTIONS(3388), 1, + sym_identifier, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3398), 1, anon_sym_AMP, - anon_sym_LT, + ACTIONS(3400), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3402), 1, anon_sym_SQUOTE, - sym_integer_literal, + ACTIONS(3406), 1, + anon_sym_for, + ACTIONS(3410), 1, sym_metavariable, - ACTIONS(2412), 32, + STATE(2542), 1, + sym_where_predicate, + STATE(2556), 1, + sym_scoped_type_identifier, + STATE(2964), 1, + sym_generic_type, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3486), 1, + sym_bracketed_type, + ACTIONS(3404), 2, + anon_sym_default, + anon_sym_union, + STATE(1485), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3396), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134718,30 +136623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29024] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29484] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3657), 15, + ACTIONS(3914), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134757,7 +136647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3655), 29, + ACTIONS(3912), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134787,15 +136677,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29083] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29543] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 15, + ACTIONS(3918), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134811,7 +136701,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2659), 29, + ACTIONS(3916), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134841,40 +136731,504 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29142] = 6, - ACTIONS(101), 1, + [29602] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(3944), 1, + anon_sym_DOT_DOT, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3946), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1488), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [29692] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(3349), 1, anon_sym_COLON_COLON, - STATE(1475), 2, + ACTIONS(3948), 1, + anon_sym_BANG, + STATE(1172), 1, + sym_field_initializer_list, + STATE(1489), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [29758] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3740), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3738), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [29840] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3740), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1491), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3738), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [29924] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3740), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [29994] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3944), 1, + anon_sym_DOT_DOT, + ACTIONS(3952), 1, + anon_sym_EQ, + ACTIONS(3922), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3946), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1493), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3950), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30084] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3944), 1, + anon_sym_DOT_DOT, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3922), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3946), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1494), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3596), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30176] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3740), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(3738), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -134894,127 +137248,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_as, anon_sym_else, - [29203] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30254] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3205), 12, - anon_sym_LPAREN, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3660), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3203), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29262] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1477), 2, + ACTIONS(3960), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3958), 19, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30340] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3944), 1, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3721), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29321] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3964), 1, + anon_sym_EQ, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3946), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1497), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3962), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30430] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(3968), 1, + anon_sym_BANG, + ACTIONS(3970), 1, anon_sym_COLON_COLON, - STATE(1478), 2, + ACTIONS(3972), 1, + anon_sym_LT2, + STATE(1610), 1, + sym_parameters, + STATE(1621), 1, + sym_type_arguments, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3270), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135025,18 +137416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3266), 20, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135048,42 +137437,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_as, - anon_sym_else, - [29382] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30500] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3944), 1, + anon_sym_DOT_DOT, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3946), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3974), 17, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30590] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3944), 1, anon_sym_DOT_DOT, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3946), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1500), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3778), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30682] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3098), 1, + anon_sym_fn, + ACTIONS(3514), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(3520), 1, + anon_sym_union, + ACTIONS(3524), 1, sym_metavariable, - ACTIONS(3891), 29, + ACTIONS(3978), 1, + sym_identifier, + ACTIONS(3980), 1, + anon_sym_for, + STATE(1031), 1, + sym_scoped_type_identifier, + STATE(1060), 1, + sym_generic_type, + STATE(1630), 1, + sym_for_lifetimes, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3354), 1, + sym_function_modifiers, + STATE(3499), 1, + sym_scoped_identifier, + STATE(3533), 1, + sym_generic_type_with_turbofish, + STATE(3543), 1, + sym_bracketed_type, + STATE(1446), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3522), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3512), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135101,73 +137656,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29441] = 23, + [30780] = 25, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, + ACTIONS(1403), 1, + anon_sym_fn, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3158), 1, anon_sym_for, - ACTIONS(3497), 1, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3404), 1, + anon_sym_union, + ACTIONS(3410), 1, sym_metavariable, - STATE(2507), 1, + ACTIONS(3532), 1, + anon_sym_default, + ACTIONS(3982), 1, + sym_identifier, + STATE(1603), 1, + sym_for_lifetimes, + STATE(1922), 1, sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, + STATE(1961), 1, sym_generic_type, - STATE(3340), 1, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3356), 1, sym_generic_type_with_turbofish, - STATE(3385), 1, + STATE(3399), 1, sym_scoped_identifier, - STATE(3469), 1, + STATE(3428), 1, + sym_function_modifiers, + STATE(3486), 1, sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1480), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3495), 3, + STATE(1974), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, + ACTIONS(3530), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135185,61 +137729,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [29536] = 23, + [30878] = 25, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3134), 1, + anon_sym_fn, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, + ACTIONS(3548), 1, + anon_sym_default, + ACTIONS(3552), 1, + anon_sym_union, + ACTIONS(3556), 1, sym_metavariable, - STATE(2438), 1, - sym_where_predicate, - STATE(2507), 1, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3986), 1, + anon_sym_for, + STATE(1540), 1, sym_scoped_type_identifier, - STATE(3020), 1, + STATE(1600), 1, sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, + STATE(1638), 1, + sym_for_lifetimes, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(3328), 1, + sym_function_modifiers, + STATE(3524), 1, sym_scoped_identifier, - STATE(3469), 1, + STATE(3541), 1, + sym_generic_type_with_turbofish, + STATE(3547), 1, sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1481), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3495), 3, + STATE(1751), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3554), 3, sym_self, sym_super, sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, + ACTIONS(3544), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135257,54 +137802,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [29631] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30976] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3897), 2, + ACTIONS(387), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - STATE(1482), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 19, + ACTIONS(385), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135324,63 +137869,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29717] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31062] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + STATE(1505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3740), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1483), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 17, + anon_sym_DOT_DOT, + ACTIONS(3738), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135391,48 +137919,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29807] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31130] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1484), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3944), 1, + anon_sym_DOT_DOT, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(3946), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 17, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135443,49 +137994,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [29873] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [31220] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1485), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, + ACTIONS(3740), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3738), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135511,33 +138057,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29947] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31294] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1486), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, + ACTIONS(3740), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -135545,7 +138091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3738), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135571,58 +138117,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30019] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31366] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, + ACTIONS(3944), 1, anon_sym_DOT_DOT, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + ACTIONS(3946), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1487), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3661), 7, + ACTIONS(3860), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135630,7 +138176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135641,120 +138187,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30111] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31458] = 21, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1488), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30187] = 21, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, + ACTIONS(3944), 1, anon_sym_DOT_DOT, - ACTIONS(3935), 1, + ACTIONS(3990), 1, anon_sym_EQ, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + ACTIONS(3946), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1489), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3933), 17, + ACTIONS(3988), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135772,50 +138256,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [30277] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31548] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1490), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 21, + ACTIONS(3740), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135833,104 +138310,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30359] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31624] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3145), 1, - anon_sym_for, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3937), 1, - sym_identifier, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1917), 1, - sym_scoped_type_identifier, - STATE(1944), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1491), 2, - sym_line_comment, - sym_block_comment, - STATE(1984), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [30457] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3941), 1, + ACTIONS(3272), 1, anon_sym_BANG, - ACTIONS(3943), 1, + ACTIONS(3992), 1, anon_sym_COLON_COLON, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1492), 2, + STATE(1172), 1, + sym_field_initializer_list, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135941,16 +138343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3241), 20, + ACTIONS(1291), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135962,66 +138363,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [30527] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31687] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(3972), 1, + anon_sym_LT2, + ACTIONS(3994), 1, + anon_sym_COLON_COLON, + STATE(1610), 1, + sym_parameters, + STATE(1621), 1, + sym_type_arguments, + STATE(1513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3290), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1493), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(368), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3288), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136030,69 +138423,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30613] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [31754] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3968), 1, + anon_sym_BANG, + ACTIONS(3996), 1, + anon_sym_LBRACE, + ACTIONS(3998), 1, + anon_sym_COLON_COLON, + STATE(1702), 1, + sym_field_initializer_list, + STATE(1514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1494), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3947), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136103,46 +138479,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30703] = 10, - ACTIONS(101), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31819] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1375), 1, + anon_sym_DASH, + ACTIONS(1421), 1, + aux_sym_string_literal_token1, + ACTIONS(1431), 1, + sym__raw_string_literal_start, + ACTIONS(2898), 1, + anon_sym_COLON_COLON, + ACTIONS(3254), 1, + sym_identifier, + ACTIONS(3264), 1, + sym_metavariable, + STATE(2046), 1, + sym_scoped_identifier, + STATE(2112), 1, + sym__literal_pattern, + STATE(3340), 1, + sym_bracketed_type, + STATE(3366), 1, + sym_generic_type_with_turbofish, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + STATE(1515), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3262), 3, + sym_self, + sym_super, + sym_crate, + STATE(2016), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3260), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [31904] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1495), 2, + ACTIONS(1643), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + aux_sym_string_literal_token1, + ACTIONS(1675), 1, + sym__raw_string_literal_start, + ACTIONS(3636), 1, + sym_identifier, + ACTIONS(3640), 1, + anon_sym_COLON_COLON, + ACTIONS(3644), 1, + sym_metavariable, + STATE(2512), 1, + sym_scoped_identifier, + STATE(3044), 1, + sym__literal_pattern, + STATE(3483), 1, + sym_bracketed_type, + STATE(3494), 1, + sym_generic_type_with_turbofish, + ACTIONS(1669), 2, + anon_sym_true, + anon_sym_false, + STATE(1516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1665), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3642), 3, + sym_self, + sym_super, + sym_crate, + STATE(2311), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3638), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [31989] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1375), 1, + anon_sym_DASH, + ACTIONS(1421), 1, + aux_sym_string_literal_token1, + ACTIONS(1431), 1, + sym__raw_string_literal_start, + ACTIONS(2898), 1, + anon_sym_COLON_COLON, + ACTIONS(3242), 1, + sym_identifier, + ACTIONS(3252), 1, + sym_metavariable, + STATE(2067), 1, + sym_scoped_identifier, + STATE(2123), 1, + sym__literal_pattern, + STATE(3340), 1, + sym_bracketed_type, + STATE(3366), 1, + sym_generic_type_with_turbofish, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + STATE(1517), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3250), 3, + sym_self, + sym_super, + sym_crate, + STATE(2016), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3248), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [32074] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(3972), 1, + anon_sym_LT2, + ACTIONS(3994), 1, + anon_sym_COLON_COLON, + STATE(1610), 1, + sym_parameters, + STATE(1621), 1, + sym_type_arguments, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3286), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3284), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136153,76 +138734,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30771] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [32141] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1496), 2, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(3972), 1, + anon_sym_LT2, + ACTIONS(3994), 1, + anon_sym_COLON_COLON, + STATE(1610), 1, + sym_parameters, + STATE(1621), 1, + sym_type_arguments, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3280), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_EQ, - ACTIONS(3771), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3278), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136231,51 +138791,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30863] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32208] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1497), 2, + ACTIONS(3355), 1, + anon_sym_BANG, + ACTIONS(3357), 1, + anon_sym_COLON_COLON, + ACTIONS(4000), 1, + sym_identifier, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3353), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + anon_sym_as, + ACTIONS(3351), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136294,64 +138853,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30941] = 25, + [32271] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(1643), 1, + anon_sym_DASH, + ACTIONS(1667), 1, + aux_sym_string_literal_token1, + ACTIONS(1675), 1, + sym__raw_string_literal_start, + ACTIONS(3640), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, - sym_metavariable, - ACTIONS(3951), 1, + ACTIONS(3684), 1, sym_identifier, - ACTIONS(3953), 1, - anon_sym_for, - STATE(1029), 1, - sym_scoped_type_identifier, - STATE(1051), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, + ACTIONS(3690), 1, + sym_metavariable, + STATE(2523), 1, sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, + STATE(2783), 1, + sym__literal_pattern, + STATE(3483), 1, sym_bracketed_type, - STATE(1297), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1498), 2, + STATE(3494), 1, + sym_generic_type_with_turbofish, + ACTIONS(1669), 2, + anon_sym_true, + anon_sym_false, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, + ACTIONS(1665), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3688), 3, sym_self, sym_super, sym_crate, - ACTIONS(3426), 17, + STATE(2311), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3686), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136369,63 +138917,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31039] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_default, + anon_sym_union, + [32356] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3886), 1, + anon_sym_BANG, + ACTIONS(4002), 1, + anon_sym_COLON_COLON, + STATE(1522), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3353), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1499), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3351), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136436,59 +138964,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31129] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [32416] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3320), 1, + anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_COLON_COLON, + STATE(1523), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3318), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1500), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 20, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3316), 22, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136498,37 +139017,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31213] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_LT2, + [32476] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1501), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3300), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -136536,13 +139048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, - anon_sym_SEMI, + ACTIONS(3302), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136561,65 +139073,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31283] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [32532] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + STATE(1525), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4009), 9, anon_sym_LBRACK, - ACTIONS(3671), 1, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1502), 2, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4004), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32590] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(3972), 1, + anon_sym_LT2, + STATE(1611), 1, + sym_parameters, + STATE(1623), 1, + sym_type_arguments, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3294), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_EQ, - ACTIONS(336), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3292), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136628,67 +139176,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31373] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32654] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1527), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3320), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1503), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3322), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136699,141 +139225,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31463] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [32710] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - ACTIONS(3963), 1, - sym_identifier, - ACTIONS(3965), 1, - anon_sym_for, - STATE(1532), 1, - sym_scoped_type_identifier, - STATE(1600), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1504), 2, + ACTIONS(3560), 1, + anon_sym_LBRACE, + STATE(1528), 2, sym_line_comment, sym_block_comment, - STATE(1709), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3378), 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, - [31561] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3312), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1505), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3739), 7, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3314), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136844,25 +139278,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31653] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [32768] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(3966), 1, anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3972), 1, anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, + STATE(1611), 1, sym_parameters, - STATE(1506), 2, + STATE(1623), 1, + sym_type_arguments, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 17, + ACTIONS(3326), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136880,7 +139320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3259), 20, + ACTIONS(3324), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -136901,29 +139341,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31720] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32832] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1650), 1, - sym_field_initializer_list, - STATE(1507), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3336), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -136933,10 +139366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3338), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136956,46 +139389,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [31785] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32888] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1508), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, + ACTIONS(3312), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 20, + ACTIONS(3314), 25, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137007,34 +139432,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [31852] = 8, - ACTIONS(101), 1, + [32944] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4013), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4011), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33000] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, + STATE(1533), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4017), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(3321), 1, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3973), 1, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4015), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, - STATE(1509), 2, + sym_self, + sym_super, + sym_crate, + [33056] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3538), 1, + anon_sym_LBRACE, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 16, + ACTIONS(3336), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137044,12 +139572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3315), 23, - anon_sym_SEMI, + ACTIONS(3338), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137069,53 +139595,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [31915] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_as, + [33114] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, - sym__raw_string_literal_start, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(3229), 1, - sym_identifier, - ACTIONS(3239), 1, - sym_metavariable, - STATE(2036), 1, - sym_scoped_identifier, - STATE(2080), 1, - sym__literal_pattern, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(1510), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3237), 3, - sym_self, - sym_super, - sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3235), 19, + ACTIONS(3602), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3600), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137133,23 +139634,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [32000] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33170] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3975), 1, + ACTIONS(3858), 1, anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1511), 2, + ACTIONS(3948), 1, + anon_sym_BANG, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137165,10 +139676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(1291), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137188,55 +139700,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [32063] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33230] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, - sym__raw_string_literal_start, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3227), 1, - sym_metavariable, - STATE(2048), 1, - sym_scoped_identifier, - STATE(2091), 1, - sym__literal_pattern, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(1512), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3225), 3, - sym_self, - sym_super, - sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3223), 19, + ACTIONS(3848), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3846), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137254,27 +139738,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [32148] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33286] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(3966), 1, anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3972), 1, anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, + STATE(1611), 1, sym_parameters, - STATE(1513), 2, + STATE(1623), 1, + sym_type_arguments, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 17, + ACTIONS(3306), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137292,7 +139786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3253), 20, + ACTIONS(3304), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -137313,167 +139807,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32215] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33350] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3599), 1, + ACTIONS(3312), 1, + anon_sym_BANG, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, - sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1514), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32300] = 19, - ACTIONS(29), 1, + ACTIONS(3310), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3308), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [33410] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3603), 1, - sym_metavariable, - STATE(2726), 1, - sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1515), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32385] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(3972), 1, + anon_sym_LT2, + STATE(1611), 1, + sym_parameters, + STATE(1623), 1, + sym_type_arguments, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3330), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 25, - anon_sym_LPAREN, + ACTIONS(3328), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137485,28 +139908,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32441] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33474] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - STATE(1517), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 9, + ACTIONS(4021), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -137514,9 +139931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3977), 31, + ACTIONS(4019), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137548,34 +139966,37 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33530] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1518), 2, + ACTIONS(3336), 1, + anon_sym_BANG, + ACTIONS(3338), 1, + anon_sym_COLON_COLON, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3334), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(3332), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137590,47 +140011,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [33590] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 1, + anon_sym_BANG, + ACTIONS(3302), 1, anon_sym_COLON_COLON, + STATE(1543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3298), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3296), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - [32557] = 7, - ACTIONS(101), 1, + anon_sym_LT2, + [33650] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4023), 1, + anon_sym_COLON_COLON, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4009), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4004), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33708] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - STATE(1519), 2, + ACTIONS(3488), 1, + anon_sym_LBRACE, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(3293), 17, + ACTIONS(3300), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3291), 22, + ACTIONS(3302), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137645,31 +140166,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [32617] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33766] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1520), 2, + ACTIONS(3272), 1, + anon_sym_BANG, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 17, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137680,16 +140199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 20, + ACTIONS(1291), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137701,22 +140219,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [32681] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33826] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + ACTIONS(3490), 1, + anon_sym_LBRACE, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3320), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137733,10 +140256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 25, + ACTIONS(3322), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137757,26 +140280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32737] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33884] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1522), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3474), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137786,9 +140305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 24, + ACTIONS(3472), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137811,22 +140331,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [32795] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33939] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137836,10 +140355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 25, + ACTIONS(3450), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137860,26 +140380,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32851] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33994] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1524), 2, + ACTIONS(4028), 1, + anon_sym_SQUOTE, + STATE(1660), 1, + sym_label, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137889,7 +140409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(3361), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137912,24 +140432,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [32909] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34053] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + ACTIONS(4030), 1, + anon_sym_BANG, + ACTIONS(4032), 1, + anon_sym_COLON_COLON, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137939,10 +140461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 25, + ACTIONS(3351), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137962,26 +140484,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32965] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34112] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1526), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 17, + ACTIONS(3466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137992,15 +140504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 20, + ACTIONS(3464), 25, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -138013,44 +140525,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [33029] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34167] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_BANG, - ACTIONS(3273), 1, - anon_sym_COLON_COLON, - STATE(1527), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(3336), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 22, + ACTIONS(3338), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -138065,78 +140575,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [33089] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34222] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1528), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3817), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3815), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33145] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_BANG, - ACTIONS(3313), 1, - anon_sym_COLON_COLON, - STATE(1529), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138147,16 +140604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 22, + ACTIONS(3480), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -138169,31 +140625,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [33205] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34277] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1530), 2, + ACTIONS(4034), 1, + anon_sym_else, + STATE(1703), 1, + sym_else_clause, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 17, + ACTIONS(1241), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138204,14 +140658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 20, + ACTIONS(1239), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138225,105 +140678,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33269] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34336] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_LPAREN, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 9, + ACTIONS(867), 1, + anon_sym_RBRACK, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3660), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3977), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33327] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1532), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3305), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_SEMI, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4042), 1, + anon_sym_COMMA, + STATE(2749), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138332,26 +140755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33391] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34431] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_BANG, - ACTIONS(3281), 1, + ACTIONS(3714), 1, anon_sym_COLON_COLON, - STATE(1533), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3277), 17, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138362,17 +140778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3275), 22, + ACTIONS(3712), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138384,27 +140798,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [33451] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34488] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1534), 2, + STATE(1465), 1, + sym_label, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138420,11 +140834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_SEMI, + ACTIONS(3361), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138444,42 +140857,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [33511] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34545] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3987), 1, - anon_sym_COLON_COLON, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(985), 1, + anon_sym_RBRACK, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4044), 1, + anon_sym_SEMI, + ACTIONS(4046), 1, + anon_sym_COMMA, + STATE(2836), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1559), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138490,100 +140929,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33571] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34640] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3647), 10, - anon_sym_LPAREN, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3660), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, + anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + STATE(1191), 1, + sym_block, + STATE(3556), 1, + sym_label, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4070), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3645), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33627] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3653), 1, - anon_sym_BANG, - ACTIONS(3989), 1, - anon_sym_COLON_COLON, - STATE(1537), 2, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, - anon_sym_PLUS, + ACTIONS(4050), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34735] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(943), 1, + anon_sym_RBRACK, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4076), 1, + anon_sym_SEMI, + ACTIONS(4078), 1, + anon_sym_COMMA, + STATE(2875), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3315), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34830] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, + anon_sym_CARET, + ACTIONS(4054), 1, + anon_sym_AMP, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4058), 1, anon_sym_AMP_AMP, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + STATE(1353), 1, + sym_block, + STATE(3556), 1, + sym_label, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138594,25 +141139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33687] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34925] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1538), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3312), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138629,7 +141164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 24, + ACTIONS(3314), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -138654,192 +141189,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [33745] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34980] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3993), 10, - anon_sym_LPAREN, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3660), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, + anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + STATE(392), 1, + sym_block, + STATE(3569), 1, + sym_label, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4070), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3991), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33801] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1540), 2, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(3997), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4050), 3, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3995), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33857] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35075] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4001), 10, - anon_sym_LPAREN, + ACTIONS(1217), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3660), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, + anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3999), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33913] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1386), 1, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + STATE(477), 1, + sym_block, + STATE(3606), 1, sym_label, - STATE(1542), 2, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, - anon_sym_PLUS, + ACTIONS(4050), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35170] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + STATE(374), 1, + sym_block, + STATE(3569), 1, + sym_label, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3340), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1566), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138850,74 +141399,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33970] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35265] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(1217), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4066), 1, anon_sym_EQ, - ACTIONS(4003), 1, - anon_sym_SEMI, - ACTIONS(4005), 1, + ACTIONS(4072), 1, anon_sym_DOT_DOT, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(2960), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + STATE(457), 1, + sym_block, + STATE(3606), 1, + sym_label, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4074), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1543), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138928,41 +141469,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34065] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35360] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1647), 1, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, + anon_sym_CARET, + ACTIONS(4054), 1, + anon_sym_AMP, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + STATE(1709), 1, + sym_block, + STATE(3607), 1, sym_label, - STATE(1544), 2, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, - anon_sym_PLUS, + ACTIONS(4050), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35455] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + STATE(1714), 1, + sym_block, + STATE(3607), 1, + sym_label, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3340), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138973,22 +141609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34124] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35550] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3300), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139005,7 +141634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 24, + ACTIONS(3302), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139030,19 +141659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34179] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35605] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(4013), 1, + ACTIONS(3714), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1546), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139058,7 +141686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3712), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139082,22 +141710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34238] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35662] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + ACTIONS(4002), 1, + anon_sym_COLON_COLON, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139107,10 +141736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(3351), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139130,21 +141759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34293] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35719] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, + ACTIONS(3968), 1, anon_sym_BANG, - ACTIONS(4017), 1, + ACTIONS(4080), 1, anon_sym_COLON_COLON, - STATE(1548), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139160,7 +141789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 23, + ACTIONS(1291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139184,91 +141813,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34352] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35778] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4019), 1, - anon_sym_SEMI, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1549), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34447] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3463), 15, + ACTIONS(3320), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139278,10 +141838,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3461), 25, + ACTIONS(3322), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139304,88 +141863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34502] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35833] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(469), 1, - sym_block, - STATE(3590), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1551), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34597] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, + ACTIONS(3764), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1552), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139401,7 +141890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(3712), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139425,17 +141914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34654] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35890] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(4082), 1, anon_sym_COLON_COLON, - STATE(1553), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139451,7 +141940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 24, + ACTIONS(1291), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -139476,19 +141965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [34711] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35947] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4051), 1, - anon_sym_else, - STATE(1766), 1, - sym_else_clause, - STATE(1554), 2, + ACTIONS(3764), 1, + anon_sym_COLON_COLON, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139504,10 +141991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1194), 23, + ACTIONS(3712), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139527,67 +142014,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [34770] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36004] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, + ACTIONS(883), 1, anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4053), 1, + ACTIONS(4084), 1, anon_sym_SEMI, - ACTIONS(4055), 1, + ACTIONS(4086), 1, anon_sym_COMMA, - STATE(2777), 1, + STATE(3024), 1, aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1555), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139598,15 +142086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34865] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36099] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(3434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139622,10 +142110,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 25, + ACTIONS(3432), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139646,17 +142133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_as, - [34920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36153] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1557), 2, + ACTIONS(4088), 1, + anon_sym_DASH_GT, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139672,10 +142161,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3404), 25, + ACTIONS(3412), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139696,19 +142184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34975] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36209] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, + ACTIONS(4090), 1, anon_sym_COLON_COLON, - STATE(1558), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139724,10 +142211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(1291), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139747,40 +142234,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36265] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3410), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(387), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3408), 25, + STATE(1582), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(385), 15, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139791,116 +142295,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35087] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [36347] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4092), 1, anon_sym_DOT_DOT, - STATE(376), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4094), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35182] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1561), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3271), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(341), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139911,74 +142362,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35237] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [36433] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4092), 1, anon_sym_DOT_DOT, - STATE(1127), 1, - sym_block, - STATE(3539), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4094), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1562), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3974), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139989,108 +142427,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35332] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [36519] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3964), 1, + anon_sym_EQ, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4092), 1, anon_sym_DOT_DOT, - STATE(1777), 1, - sym_block, - STATE(3591), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4094), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1563), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35427] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3311), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3313), 24, + ACTIONS(3962), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140101,25 +142492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35482] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [36605] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 1, + ACTIONS(4096), 1, anon_sym_COLON_COLON, - STATE(1565), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3326), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140135,10 +142519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(3324), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140158,68 +142542,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35539] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36661] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - STATE(1772), 1, - sym_block, - STATE(3591), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4098), 1, + anon_sym_RPAREN, + ACTIONS(4100), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1566), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140230,66 +142611,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35634] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36753] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(987), 1, + anon_sym_RBRACK, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - STATE(394), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4102), 1, + anon_sym_COMMA, + STATE(2928), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1567), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36845] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4096), 1, + anon_sym_COLON_COLON, + STATE(1589), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3306), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3304), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140300,18 +142722,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [36901] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1568), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140327,7 +142753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(3484), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140350,67 +142776,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [35786] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36955] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(989), 1, + anon_sym_RPAREN, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4059), 1, - anon_sym_SEMI, - ACTIONS(4061), 1, + ACTIONS(4104), 1, anon_sym_COMMA, - STATE(2788), 1, + STATE(3014), 1, aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1569), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140421,17 +142846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35881] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37047] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 1, + ACTIONS(4032), 1, anon_sym_COLON_COLON, - STATE(1570), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140447,10 +142872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(3351), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140470,68 +142895,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35938] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37103] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + STATE(1593), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3740), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1319), 1, - sym_block, - STATE(3539), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT_DOT, + ACTIONS(3738), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140542,66 +142943,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36033] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [37167] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - STATE(453), 1, - sym_block, - STATE(3590), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1572), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4106), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140612,62 +143016,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36128] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37255] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1573), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3740), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140678,64 +143066,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36216] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [37325] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2790), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4108), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140746,60 +143139,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36308] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37413] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1575), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 13, + ACTIONS(3740), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140810,65 +143188,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [36394] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37481] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4110), 1, + anon_sym_COLON_COLON, + STATE(1598), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3294), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3292), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140879,60 +143238,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36486] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37537] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1577), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 13, + ACTIONS(3740), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140943,65 +143296,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [36572] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37609] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4096), 1, + anon_sym_COLON_COLON, + STATE(1600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3330), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3328), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141012,56 +143346,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36664] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37665] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, + ACTIONS(3740), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - STATE(1579), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 15, + ACTIONS(3738), 17, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141075,44 +143414,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [36746] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37743] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4023), 2, + ACTIONS(4052), 1, + anon_sym_CARET, + ACTIONS(4054), 1, + anon_sym_AMP, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(3740), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1580), 2, + ACTIONS(4070), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3738), 16, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141124,44 +143473,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [36814] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37823] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1581), 2, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3404), 1, + anon_sym_union, + ACTIONS(3410), 1, + sym_metavariable, + ACTIONS(3532), 1, + anon_sym_default, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, + anon_sym_fn, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(2655), 1, + sym_scoped_type_identifier, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3423), 1, + sym_generic_type, + STATE(3444), 1, + sym_function_modifiers, + STATE(3486), 1, + sym_bracketed_type, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3530), 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, + [37911] = 24, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(983), 1, + anon_sym_RBRACK, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4116), 1, + anon_sym_COMMA, + STATE(2793), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3352), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141172,45 +143610,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36868] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38003] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1582), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4092), 1, + anon_sym_DOT_DOT, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3457), 24, + ACTIONS(4094), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3860), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141221,23 +143676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36922] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38091] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1583), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, + ACTIONS(3378), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141253,7 +143700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 24, + ACTIONS(3376), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141278,15 +143725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36976] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38145] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1584), 2, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 15, + ACTIONS(3456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141302,7 +143749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3336), 24, + ACTIONS(3454), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141327,62 +143774,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [37030] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38199] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4063), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4118), 1, + anon_sym_RPAREN, + ACTIONS(4120), 1, + anon_sym_COMMA, + STATE(3012), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1585), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141393,37 +143842,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37118] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38291] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1586), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, - anon_sym_PLUS, + ACTIONS(4050), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 22, + ACTIONS(3738), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141434,23 +143888,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [37172] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [38357] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1587), 2, + ACTIONS(4122), 1, + anon_sym_DASH_GT, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, + ACTIONS(3420), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141466,7 +143923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1240), 24, + ACTIONS(3418), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141490,46 +143947,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [37226] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38413] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1588), 2, + ACTIONS(4124), 1, + anon_sym_DASH_GT, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3426), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3424), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141548,65 +143996,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37298] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [38469] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3952), 1, + anon_sym_EQ, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4092), 1, anon_sym_DOT_DOT, - ACTIONS(4073), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4094), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1589), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3950), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141617,54 +144061,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37390] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [38555] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3990), 1, + anon_sym_EQ, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_EQ, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4092), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - STATE(1590), 2, + ACTIONS(4094), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 17, + ACTIONS(3988), 13, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141675,20 +144126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37468] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38641] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - STATE(1591), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(1259), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141704,7 +144151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 23, + ACTIONS(1257), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141728,120 +144175,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37524] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [38695] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4075), 1, - sym_identifier, - ACTIONS(4077), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2509), 1, - sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3370), 1, - sym_function_modifiers, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(1592), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [37612] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(1251), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1593), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1249), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141853,20 +144217,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37692] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [38749] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4079), 1, - anon_sym_DASH_GT, - STATE(1594), 2, + ACTIONS(4126), 1, + anon_sym_LPAREN, + STATE(1836), 1, + sym_arguments, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141882,8 +144253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, - anon_sym_LPAREN, + ACTIONS(3500), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141906,15 +144276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37748] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38807] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1595), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, + ACTIONS(1247), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141930,7 +144300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1206), 24, + ACTIONS(1245), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141955,17 +144325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [37802] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38861] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - STATE(1596), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(1255), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141981,7 +144349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(1253), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142005,37 +144373,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37858] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [38915] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1597), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(4052), 1, + anon_sym_CARET, + ACTIONS(4054), 1, + anon_sym_AMP, + ACTIONS(4056), 1, + anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4092), 1, + anon_sym_DOT_DOT, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4070), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4094), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, + ACTIONS(4050), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [39001] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3740), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(3738), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142054,18 +144497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [37914] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [39075] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4085), 1, - anon_sym_DASH_GT, - STATE(1598), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(3382), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142081,7 +144522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3521), 23, + ACTIONS(3380), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142104,16 +144545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [37970] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39129] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3402), 15, + ACTIONS(3494), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142129,7 +144571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3400), 24, + ACTIONS(3492), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142154,17 +144596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [38024] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39183] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1600), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3386), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142180,7 +144620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 23, + ACTIONS(3384), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142203,61 +144643,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [38080] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39237] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4092), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4094), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1601), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3778), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142268,18 +144711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38166] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39325] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4087), 1, - anon_sym_DASH_GT, - STATE(1602), 2, + ACTIONS(4128), 1, + anon_sym_COLON_COLON, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3535), 15, + ACTIONS(3294), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142295,7 +144737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3533), 23, + ACTIONS(3292), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142319,15 +144761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38222] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39381] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + ACTIONS(4096), 1, + anon_sym_COLON_COLON, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, + ACTIONS(3294), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142343,7 +144787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1232), 24, + ACTIONS(3292), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142367,20 +144811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38276] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39437] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_LPAREN, - STATE(1652), 1, - sym_arguments, - STATE(1604), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(3498), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142396,7 +144835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 22, + ACTIONS(3496), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142418,16 +144858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [38334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39491] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, + ACTIONS(3298), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142438,12 +144879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3443), 24, + ACTIONS(3296), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142458,54 +144901,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38388] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [39545] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1606), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 9, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4058), 1, + anon_sym_AMP_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4092), 1, + anon_sym_DOT_DOT, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(4094), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1629), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3596), 3, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142516,69 +144975,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38454] = 22, - ACTIONS(101), 1, + [39633] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1411), 1, + anon_sym_extern, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3404), 1, + anon_sym_union, + ACTIONS(3410), 1, + sym_metavariable, + ACTIONS(3532), 1, + anon_sym_default, + ACTIONS(4130), 1, + sym_identifier, + ACTIONS(4132), 1, + anon_sym_fn, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, + sym_extern_modifier, + STATE(2700), 1, + sym_scoped_type_identifier, + STATE(3356), 1, + sym_generic_type_with_turbofish, + STATE(3387), 1, + sym_function_modifiers, + STATE(3399), 1, + sym_scoped_identifier, + STATE(3423), 1, + sym_generic_type, + STATE(3486), 1, + sym_bracketed_type, + STATE(1630), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1397), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3530), 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, + [39721] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3960), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1607), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4091), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3915), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3958), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142589,17 +145101,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38542] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39803] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, + ACTIONS(4134), 1, anon_sym_COLON_COLON, - STATE(1608), 2, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142615,7 +145130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(1291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142639,15 +145154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38598] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39859] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1609), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(3470), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142663,7 +145178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 24, + ACTIONS(3468), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142686,83 +145201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [38652] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39913] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1610), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4093), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38740] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + ACTIONS(4136), 1, + anon_sym_DASH_GT, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3438), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142778,7 +145229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 24, + ACTIONS(3436), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142801,19 +145252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38794] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39969] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4095), 1, - anon_sym_COLON_COLON, - STATE(1612), 2, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142829,7 +145279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3442), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142853,83 +145303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38850] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40025] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4097), 1, - sym_identifier, - ACTIONS(4099), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2603), 1, - sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(3484), 1, - sym_function_modifiers, - STATE(1613), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [38938] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4101), 1, + ACTIONS(4140), 1, anon_sym_DASH_GT, - STATE(1614), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, + ACTIONS(3564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142945,7 +145329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3527), 23, + ACTIONS(3562), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142969,145 +145353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38994] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1615), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3947), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39080] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40081] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1616), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39166] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(4142), 1, + anon_sym_DASH_GT, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143123,7 +145379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(3458), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143146,57 +145402,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [39220] = 22, + [40137] = 22, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, + ACTIONS(1411), 1, anon_sym_extern, - ACTIONS(3487), 1, + ACTIONS(3400), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, + ACTIONS(3404), 1, anon_sym_union, - ACTIONS(3497), 1, + ACTIONS(3410), 1, sym_metavariable, - ACTIONS(3503), 1, + ACTIONS(3532), 1, anon_sym_default, - ACTIONS(4103), 1, + ACTIONS(4144), 1, sym_identifier, - ACTIONS(4105), 1, + ACTIONS(4146), 1, anon_sym_fn, - STATE(2206), 1, + STATE(2222), 1, aux_sym_function_modifiers_repeat1, - STATE(2320), 1, + STATE(2318), 1, sym_extern_modifier, - STATE(2578), 1, + STATE(2607), 1, sym_scoped_type_identifier, - STATE(3330), 1, - sym_function_modifiers, - STATE(3340), 1, + STATE(3356), 1, sym_generic_type_with_turbofish, - STATE(3385), 1, + STATE(3399), 1, sym_scoped_identifier, - STATE(3403), 1, + STATE(3423), 1, sym_generic_type, - STATE(3469), 1, + STATE(3486), 1, sym_bracketed_type, - STATE(1618), 2, + STATE(3500), 1, + sym_function_modifiers, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1397), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3495), 3, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - ACTIONS(3501), 17, + ACTIONS(3530), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143214,48 +145469,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [39308] = 15, - ACTIONS(101), 1, + [40225] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3478), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3476), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [40279] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1003), 1, + anon_sym_RPAREN, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4023), 2, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4148), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_arguments_repeat1, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1619), 2, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143266,24 +145586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39382] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40371] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(1263), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143299,7 +145610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(1261), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143323,15 +145634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39438] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [40425] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, + ACTIONS(3758), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143347,7 +145659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3366), 24, + ACTIONS(3756), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143370,19 +145682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39492] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40478] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4109), 1, - anon_sym_DASH_GT, - STATE(1622), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143398,7 +145707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(3612), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143422,17 +145731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39548] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40531] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - anon_sym_DASH_GT, - STATE(1623), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 15, + ACTIONS(3622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143448,7 +145755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3356), 23, + ACTIONS(3620), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143472,15 +145779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39604] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40584] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1624), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(3294), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143496,7 +145803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3418), 24, + ACTIONS(3292), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143519,84 +145826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [39658] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40637] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39744] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, - anon_sym_DASH_GT, - STATE(1626), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3326), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143612,7 +145851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3447), 23, + ACTIONS(3324), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143636,127 +145875,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39800] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40690] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1627), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3504), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39882] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4115), 1, - anon_sym_RPAREN, - ACTIONS(4117), 1, - anon_sym_COMMA, - STATE(2830), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3500), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143767,29 +145916,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39974] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40743] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1629), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3626), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143798,10 +145945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3624), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143820,45 +145970,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40038] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [40796] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1630), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3780), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3778), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143877,16 +146018,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [40849] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1631), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(3630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143902,7 +146043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 24, + ACTIONS(3628), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143926,86 +146067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40162] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40902] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4119), 1, - anon_sym_RPAREN, - ACTIONS(4121), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1632), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40254] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144021,7 +146091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3874), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144045,62 +146115,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40310] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40955] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3900), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3661), 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3898), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144111,17 +146156,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40398] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41008] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144137,7 +146187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3646), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144161,81 +146211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40454] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41061] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4127), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1636), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40543] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1637), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144251,7 +146235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3650), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144275,60 +146259,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40596] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41114] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3904), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1638), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4129), 3, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3902), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144339,15 +146300,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40681] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41167] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(3666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144363,7 +146331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 23, + ACTIONS(3664), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144387,15 +146355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40734] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41220] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, + ACTIONS(3670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144411,7 +146379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3633), 23, + ACTIONS(3668), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144435,15 +146403,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40787] = 5, - ACTIONS(101), 1, + [41273] = 23, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1189), 1, + anon_sym_RPAREN, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41362] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144459,7 +146493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3676), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144483,15 +146517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41415] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144507,7 +146541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 23, + ACTIONS(3870), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144531,21 +146565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40893] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41468] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1643), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 14, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144559,10 +146587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3787), 21, + ACTIONS(3906), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144582,40 +146613,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40952] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41521] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1644), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3805), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4160), 1, anon_sym_CARET, + ACTIONS(4162), 1, anon_sym_AMP, + ACTIONS(4164), 1, anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_AMP_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, + anon_sym_DOT_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3803), 21, + ACTIONS(4180), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3974), 12, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144626,63 +146677,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41011] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41606] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(370), 2, + ACTIONS(3956), 1, anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(4186), 1, + anon_sym_RBRACE, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - STATE(1645), 2, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(368), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144693,62 +146743,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [41092] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41695] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(1065), 1, + anon_sym_RPAREN, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1646), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144759,15 +146809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41177] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41784] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144783,7 +146833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 23, + ACTIONS(3830), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144807,122 +146857,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41230] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41837] = 21, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41315] = 21, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3957), 1, + ACTIONS(3964), 1, anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4166), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4180), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3955), 12, + ACTIONS(3962), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -144935,63 +146921,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41922] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LBRACE, + ACTIONS(4192), 1, + anon_sym_RBRACE, + ACTIONS(4194), 1, + anon_sym_STAR, + ACTIONS(4198), 1, + anon_sym_COMMA, + ACTIONS(4200), 1, + anon_sym_COLON_COLON, + ACTIONS(4204), 1, + sym_metavariable, + STATE(2457), 1, + sym_scoped_identifier, + STATE(2926), 1, + sym__use_clause, + STATE(3343), 1, + sym_bracketed_type, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3559), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4202), 3, + sym_self, + sym_super, + sym_crate, + STATE(3036), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4196), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [42001] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(1551), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145007,7 +147006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3571), 23, + ACTIONS(1553), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145031,15 +147030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42054] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 15, + ACTIONS(1275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145055,7 +147054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3575), 23, + ACTIONS(1273), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145079,15 +147078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42107] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145103,7 +147102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3605), 23, + ACTIONS(1291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145127,81 +147126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41612] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42160] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, - anon_sym_SEMI, - ACTIONS(4165), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41701] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1655), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3773), 15, + ACTIONS(1355), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145217,7 +147150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3771), 23, + ACTIONS(1353), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145241,15 +147174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41754] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42213] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1656), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(1359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145265,7 +147198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(1357), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145289,15 +147222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41807] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42266] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1657), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 15, + ACTIONS(1339), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145313,7 +147246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3783), 23, + ACTIONS(1337), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145337,15 +147270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42319] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1658), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(1271), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145361,7 +147294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 23, + ACTIONS(1269), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145385,113 +147318,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41913] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42372] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1659), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3809), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3807), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41972] = 23, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(286), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(4206), 1, + anon_sym_RPAREN, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1660), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145502,15 +147384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42061] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42461] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145526,7 +147408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 23, + ACTIONS(3838), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145550,15 +147432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42114] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42514] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1662), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145574,7 +147456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3842), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145598,15 +147480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42167] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42567] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145622,7 +147504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 23, + ACTIONS(3860), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145646,90 +147528,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42620] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3619), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(3778), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3617), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42273] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - STATE(1665), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(3669), 14, - anon_sym_PLUS, + ACTIONS(3924), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145740,21 +147593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [42334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42707] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1666), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145770,7 +147617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3649), 23, + ACTIONS(3680), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145794,15 +147641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42760] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, + ACTIONS(3750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145818,7 +147665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3775), 23, + ACTIONS(3748), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145842,15 +147689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42813] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1668), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(1331), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145866,7 +147713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(1329), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145890,37 +147737,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42866] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3990), 1, + anon_sym_EQ, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, anon_sym_CARET, + ACTIONS(4162), 1, anon_sym_AMP, + ACTIONS(4164), 1, anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_AMP_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, + anon_sym_DOT_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3547), 23, + ACTIONS(4180), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3988), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145931,22 +147801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42951] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145962,7 +147825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 23, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145986,80 +147849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42599] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43004] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4167), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1671), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42686] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3663), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146075,7 +147873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3661), 23, + ACTIONS(3770), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146099,15 +147897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42739] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43057] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(1311), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146123,7 +147921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(1309), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146147,62 +147945,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42792] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43110] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(288), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3596), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146213,15 +148010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43197] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(1283), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146237,7 +148034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 23, + ACTIONS(1281), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146261,20 +148058,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42934] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43250] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, - anon_sym_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146283,13 +148089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3747), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146308,36 +148111,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42987] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43313] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1677), 2, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4162), 1, + anon_sym_AMP, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 15, - anon_sym_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3751), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146356,36 +148167,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43382] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1678), 2, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3763), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146404,36 +148222,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43093] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43449] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1679), 2, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, + anon_sym_CARET, + ACTIONS(4162), 1, + anon_sym_AMP, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 15, - anon_sym_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3740), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3779), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146452,36 +148279,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43520] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3793), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, anon_sym_CARET, + ACTIONS(4162), 1, anon_sym_AMP, + ACTIONS(4164), 1, anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(3740), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3791), 23, + STATE(1693), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3738), 16, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146494,27 +148337,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [43597] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, + anon_sym_CARET, + ACTIONS(4162), 1, + anon_sym_AMP, + ACTIONS(4164), 1, + anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(3740), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4174), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3738), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43199] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43676] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, - anon_sym_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146523,13 +148432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146548,63 +148454,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43252] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43741] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1174), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3952), 1, + anon_sym_EQ, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4166), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4180), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1682), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3950), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146615,35 +148518,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43341] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43826] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, + anon_sym_CARET, + ACTIONS(4162), 1, + anon_sym_AMP, + ACTIONS(4164), 1, + anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_AMP_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, + anon_sym_DOT_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4174), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4180), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, - anon_sym_PLUS, + ACTIONS(4156), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43911] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, anon_sym_CARET, + ACTIONS(4162), 1, anon_sym_AMP, + ACTIONS(4164), 1, anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3740), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146662,38 +148640,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43394] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43984] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3871), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, anon_sym_CARET, + ACTIONS(4162), 1, anon_sym_AMP, + ACTIONS(4164), 1, anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_AMP_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(3960), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3869), 23, + STATE(1699), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3958), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146704,22 +148700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43447] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44065] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3883), 15, + ACTIONS(3582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146735,7 +148726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3881), 23, + ACTIONS(3580), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146759,15 +148750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44118] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 15, + ACTIONS(3586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146783,7 +148774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 23, + ACTIONS(3584), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146807,15 +148798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44171] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1687), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, + ACTIONS(3610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146831,7 +148822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3689), 23, + ACTIONS(3608), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146855,15 +148846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44224] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(1299), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146879,7 +148870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 23, + ACTIONS(1297), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146903,15 +148894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44277] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 15, + ACTIONS(1315), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146927,7 +148918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3555), 23, + ACTIONS(1313), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146951,60 +148942,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43712] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44330] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(3860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4171), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147015,15 +149007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43797] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44417] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(1351), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147039,7 +149031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 23, + ACTIONS(1349), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147063,15 +149055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43850] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44470] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, + ACTIONS(3618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147087,7 +149079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3823), 23, + ACTIONS(3616), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147111,15 +149103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43903] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44523] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147135,7 +149127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3609), 23, + ACTIONS(3766), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147159,15 +149151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43956] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44576] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3615), 15, + ACTIONS(1279), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147183,7 +149175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3613), 23, + ACTIONS(1277), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147207,62 +149199,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44009] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44629] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1295), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4173), 1, - anon_sym_SEMI, - ACTIONS(4175), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1695), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1293), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147273,15 +149240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44098] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44682] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1696), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 15, + ACTIONS(1303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147297,7 +149271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 23, + ACTIONS(1301), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147321,61 +149295,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44151] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44735] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1335), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4177), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1697), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1333), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147386,61 +149336,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44238] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44788] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1267), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4179), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1698), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1265), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147451,61 +149384,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44325] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44841] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + STATE(1714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - ACTIONS(4183), 1, - anon_sym_AMP_AMP, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1699), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1345), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147516,15 +149432,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44412] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44894] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(961), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147540,7 +149463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 23, + ACTIONS(963), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147564,15 +149487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44465] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44947] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(965), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147588,7 +149511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(967), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147612,62 +149535,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44518] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45000] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1323), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4185), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1702), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1321), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147678,61 +149576,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44607] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45053] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(969), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4203), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(971), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147743,62 +149624,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44694] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45106] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4166), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4210), 1, + anon_sym_EQ, + ACTIONS(3778), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4180), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1704), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4208), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147809,15 +149696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44783] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45193] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, + ACTIONS(973), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147833,7 +149720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3621), 23, + ACTIONS(975), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147857,15 +149744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44836] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45246] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(1343), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147881,7 +149768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 23, + ACTIONS(1341), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147905,15 +149792,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44889] = 5, - ACTIONS(101), 1, + [45299] = 22, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, + anon_sym_CARET, + ACTIONS(4162), 1, + anon_sym_AMP, + ACTIONS(4164), 1, + anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_AMP_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, + anon_sym_DOT_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4210), 1, + anon_sym_EQ, + ACTIONS(3596), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4174), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4180), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4208), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45386] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(977), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147929,7 +149881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 23, + ACTIONS(979), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147953,15 +149905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44942] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45439] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(1319), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147977,7 +149929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(1317), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148001,15 +149953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44995] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45492] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148025,7 +149977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 23, + ACTIONS(1291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148049,60 +150001,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45048] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45545] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4166), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4210), 1, + anon_sym_EQ, + ACTIONS(3860), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4180), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4208), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148113,61 +150066,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45133] = 22, - ACTIONS(101), 1, + [45632] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3812), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3810), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45685] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4230), 1, anon_sym_EQ, - ACTIONS(4211), 1, + ACTIONS(4236), 1, anon_sym_DOT_DOT, - ACTIONS(3739), 2, + ACTIONS(3778), 2, anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4228), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148178,29 +150179,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45220] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45772] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1712), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1045), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148209,10 +150201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1047), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148231,44 +150226,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45283] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45825] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1713), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1033), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1035), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148287,43 +150274,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45352] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45878] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1714), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1289), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1291), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148342,45 +150322,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45419] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45931] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1715), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3754), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3752), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148399,54 +150370,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45490] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45984] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3669), 2, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - STATE(1716), 2, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4240), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148457,56 +150436,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45567] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46071] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4176), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3658), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1717), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 15, + anon_sym_DOT_DOT, + ACTIONS(3654), 21, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -148518,32 +150480,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45646] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46130] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4176), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1718), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3674), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148553,9 +150516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3672), 21, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148574,60 +150537,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45711] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46189] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + STATE(1736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3710), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1719), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3947), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3708), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148638,60 +150579,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45796] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46242] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4242), 1, + anon_sym_RPAREN, + ACTIONS(4244), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1720), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148702,183 +150652,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45881] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46331] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45954] = 19, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(293), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, + ACTIONS(3956), 1, anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - STATE(1722), 2, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [46035] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46088] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46420] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, + ACTIONS(3732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148894,7 +150742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 23, + ACTIONS(3730), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148918,15 +150766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46141] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46473] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148942,7 +150790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(3568), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148966,15 +150814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46194] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46526] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3238), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148990,7 +150838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(3240), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149014,61 +150862,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46247] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46579] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4230), 1, anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(3661), 2, - anon_sym_LPAREN, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(4248), 1, + anon_sym_DOT_DOT, + STATE(1101), 1, + sym_match_block, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1727), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4228), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149079,15 +150928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46668] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(3306), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149103,7 +150952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 23, + ACTIONS(3304), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149127,15 +150976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46721] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, + ACTIONS(1289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149151,7 +151000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3735), 23, + ACTIONS(1291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149175,37 +151024,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46774] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, + ACTIONS(3924), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46863] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4252), 1, + anon_sym_SEMI, + ACTIONS(4254), 1, + anon_sym_else, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1746), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149216,22 +151156,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [46952] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4256), 1, + anon_sym_RBRACE, + ACTIONS(4258), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47041] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 15, + ACTIONS(3634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149247,7 +151246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3743), 23, + ACTIONS(3632), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149271,15 +151270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47094] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149295,7 +151294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3767), 23, + ACTIONS(3814), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149319,61 +151318,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46599] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47147] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1073), 1, + anon_sym_RPAREN, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4217), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1733), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149384,15 +151384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47236] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3330), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149408,7 +151408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 23, + ACTIONS(3328), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149432,15 +151432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46739] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47289] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149456,7 +151456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(3786), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149480,37 +151480,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46792] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47342] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3851), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4260), 1, + anon_sym_SEMI, + ACTIONS(4262), 1, + anon_sym_else, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3849), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149521,22 +151546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46845] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47431] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149552,7 +151570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 23, + ACTIONS(3882), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149576,37 +151594,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47484] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, + anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3942), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, - anon_sym_PLUS, + ACTIONS(3924), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47573] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1063), 1, + anon_sym_RPAREN, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3857), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149617,22 +151726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46951] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47662] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(3736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149648,7 +151750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 23, + ACTIONS(3734), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149672,62 +151774,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47004] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47715] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - STATE(388), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4264), 1, + anon_sym_SEMI, + ACTIONS(4266), 1, + anon_sym_else, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1740), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149738,37 +151840,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47093] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47804] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1546), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(4268), 1, + anon_sym_RBRACE, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1548), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149779,22 +151906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47893] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1742), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, + ACTIONS(3820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149810,7 +151930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1402), 23, + ACTIONS(3818), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149834,37 +151954,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47199] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47946] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1376), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(4270), 1, + anon_sym_RPAREN, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1374), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149875,44 +152020,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47252] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48035] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1384), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, anon_sym_CARET, + ACTIONS(4162), 1, anon_sym_AMP, + ACTIONS(4164), 1, anon_sym_PIPE, + ACTIONS(4166), 1, + anon_sym_AMP_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(387), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1382), 23, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(385), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149923,44 +152080,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47305] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48116] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1422), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1420), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4272), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149971,68 +152147,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47358] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48203] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1746), 2, + ACTIONS(4274), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150043,15 +152212,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47445] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48290] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + ACTIONS(4152), 1, + anon_sym_LBRACK, + ACTIONS(4158), 1, + anon_sym_QMARK, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(3740), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150065,13 +152242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150090,63 +152264,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47498] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48351] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4276), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4278), 1, + anon_sym_else, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150157,60 +152330,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47587] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48440] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(287), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1749), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150221,15 +152396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48529] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(1400), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150245,7 +152420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1398), 23, + ACTIONS(3692), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150269,61 +152444,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47725] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48582] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3990), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4236), 1, anon_sym_DOT_DOT, - ACTIONS(3739), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1751), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3988), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150334,15 +152508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47812] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48667] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(3702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150358,7 +152532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 23, + ACTIONS(3700), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150382,275 +152556,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47865] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48720] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - STATE(1753), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [47928] = 13, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1754), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 6, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, + anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3932), 1, anon_sym_AMP_AMP, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [47997] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1755), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3956), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48064] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(4280), 1, + anon_sym_SEMI, + ACTIONS(4282), 1, + anon_sym_else, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1756), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 5, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48135] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1757), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150661,57 +152622,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48212] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48809] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(301), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - STATE(1758), 2, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150722,32 +152688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48291] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48898] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1759), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3792), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150756,10 +152710,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3790), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150778,60 +152735,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48356] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48951] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1760), 2, + ACTIONS(4284), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150842,60 +152801,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48441] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49038] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(387), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1761), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 12, + ACTIONS(385), 14, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150906,48 +152861,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48526] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49119] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(4222), 1, + anon_sym_AMP_AMP, + ACTIONS(4224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4236), 1, + anon_sym_DOT_DOT, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1762), 2, + ACTIONS(4234), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4238), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(4232), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150958,62 +152927,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48599] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49204] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3913), 2, + ACTIONS(4230), 1, anon_sym_EQ, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4286), 1, + anon_sym_LBRACE, + STATE(467), 1, + sym_match_block, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - STATE(1763), 2, + ACTIONS(4250), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4228), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151024,183 +152993,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49293] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3589), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_CARET, + ACTIONS(4218), 1, anon_sym_AMP, + ACTIONS(4220), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3587), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4222), 1, anon_sym_AMP_AMP, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48733] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1765), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3593), 15, + ACTIONS(4236), 1, + anon_sym_DOT_DOT, + ACTIONS(4212), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(1388), 15, - anon_sym_PLUS, + ACTIONS(4214), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1386), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48839] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1767), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 23, + ACTIONS(3974), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151208,71 +153054,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48892] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49378] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3964), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4236), 1, anon_sym_DOT_DOT, - ACTIONS(3661), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1768), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3962), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151283,85 +153121,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48979] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49463] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1424), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, - anon_sym_PLUS, + ACTIONS(3924), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3731), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151372,92 +153187,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49552] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4216), 1, anon_sym_CARET, + ACTIONS(4218), 1, anon_sym_AMP, + ACTIONS(4220), 1, anon_sym_PIPE, + ACTIONS(4222), 1, + anon_sym_AMP_AMP, + ACTIONS(4224), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4230), 1, + anon_sym_EQ, + ACTIONS(4236), 1, + anon_sym_DOT_DOT, + ACTIONS(3596), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49138] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, - anon_sym_PLUS, + ACTIONS(4214), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1350), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4228), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151468,92 +153252,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49191] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49639] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1354), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49244] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1774), 2, + ACTIONS(4288), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(1364), 15, - anon_sym_PLUS, + ACTIONS(3924), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1362), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151564,92 +153317,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49297] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49726] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1380), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1378), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4074), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49350] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, + ACTIONS(4050), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1390), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4290), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151660,92 +153381,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49403] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49811] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1430), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1428), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49456] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, - anon_sym_PLUS, + ACTIONS(3924), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(937), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151756,44 +153447,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49509] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49900] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(967), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4052), 1, anon_sym_CARET, + ACTIONS(4054), 1, anon_sym_AMP, + ACTIONS(4056), 1, anon_sym_PIPE, + ACTIONS(4060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4066), 1, + anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_DOT_DOT, + ACTIONS(4048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(969), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4074), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1785), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4292), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4068), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151804,44 +153511,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49562] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49985] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, + ACTIONS(3928), 1, anon_sym_AMP, + ACTIONS(3930), 1, anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(4294), 1, + anon_sym_RBRACE, + ACTIONS(3922), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1366), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3940), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151852,22 +153577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49615] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50074] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(753), 15, + ACTIONS(3796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151883,7 +153601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(755), 23, + ACTIONS(3794), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151907,62 +153625,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49668] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50127] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4166), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4178), 1, anon_sym_DOT_DOT, - ACTIONS(4225), 1, - anon_sym_SEMI, - ACTIONS(4227), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4180), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1782), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151973,61 +153689,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49757] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50212] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(309), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152038,68 +153755,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49844] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50301] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(767), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(769), 23, - anon_sym_LPAREN, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3660), 1, anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, anon_sym_as, - [49897] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, - anon_sym_PLUS, + ACTIONS(4214), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152108,13 +153786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152133,63 +153808,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49950] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50364] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4230), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4233), 1, - anon_sym_RBRACE, - ACTIONS(4235), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4296), 1, + anon_sym_LBRACE, + STATE(1686), 1, + sym_match_block, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4228), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152200,61 +153874,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50039] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50453] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(3739), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + ACTIONS(4038), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1787), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152265,35 +153940,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50542] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_AMP, + ACTIONS(4212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4226), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(771), 15, - anon_sym_PLUS, + ACTIONS(4214), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(773), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152312,36 +153996,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50179] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50611] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4226), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(1322), 15, - anon_sym_PLUS, + ACTIONS(4214), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3740), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1320), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152360,101 +154051,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50232] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50678] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(3661), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1790), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4229), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50319] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(985), 15, - anon_sym_PLUS, + ACTIONS(4214), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3740), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(987), 23, + ACTIONS(3738), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152473,36 +154108,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50372] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50749] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(989), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4216), 1, anon_sym_CARET, + ACTIONS(4218), 1, anon_sym_AMP, + ACTIONS(4220), 1, anon_sym_PIPE, + ACTIONS(3740), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(991), 23, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4232), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3738), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152515,69 +154166,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50425] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50826] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4237), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152588,62 +154234,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50514] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50915] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(292), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4298), 1, + anon_sym_RBRACE, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1794), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152654,123 +154300,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50603] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51004] = 18, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4245), 1, - anon_sym_RBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(2852), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [50682] = 23, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3740), 2, anon_sym_EQ, - ACTIONS(4221), 1, anon_sym_DOT_DOT, - ACTIONS(4259), 1, - anon_sym_LBRACE, - STATE(1130), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3738), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152781,62 +154359,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50771] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51083] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(294), 1, + ACTIONS(317), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1797), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152847,61 +154427,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50860] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51172] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4261), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1798), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152912,61 +154493,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50947] = 22, - ACTIONS(101), 1, + [51261] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3660), 1, + anon_sym_QMARK, + ACTIONS(3662), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(4212), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4214), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3740), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51326] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4263), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1799), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152977,62 +154613,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51034] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51415] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1051), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, + ACTIONS(4300), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153043,62 +154678,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51123] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51502] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4265), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(4267), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4302), 1, + anon_sym_RBRACE, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153109,62 +154744,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51212] = 23, - ACTIONS(101), 1, + [51591] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3718), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51644] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(296), 1, + ACTIONS(325), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153175,62 +154858,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51301] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51733] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1168), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1803), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153241,62 +154924,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51390] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51822] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4269), 1, - anon_sym_SEMI, - ACTIONS(4271), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + ACTIONS(4304), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153307,62 +154989,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51479] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51909] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3952), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4236), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4273), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3950), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153373,62 +155053,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51568] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51994] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4236), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1806), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3920), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153439,62 +155117,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51657] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52079] = 15, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(4275), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1807), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3740), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3738), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153505,62 +155169,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51746] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52152] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4277), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(4279), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153571,62 +155241,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51835] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52241] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4306), 1, + anon_sym_RBRACE, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153637,62 +155307,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51924] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52330] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(300), 1, + ACTIONS(333), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1810), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153703,54 +155373,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52013] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52419] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(370), 2, + ACTIONS(3960), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - STATE(1811), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(368), 14, + ACTIONS(3958), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153765,60 +155435,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52094] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52500] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1812), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153829,62 +155501,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52179] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52589] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4285), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153895,60 +155567,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52268] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52678] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4308), 1, + anon_sym_SEMI, + ACTIONS(4310), 1, + anon_sym_else, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1814), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3933), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153959,60 +155633,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52353] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52767] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(4312), 1, + anon_sym_RBRACE, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3955), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154023,62 +155699,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52438] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52856] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(302), 1, + ACTIONS(337), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1816), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154089,61 +155765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52527] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52945] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3746), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4287), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1817), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3744), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154154,61 +155806,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52614] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52998] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3598), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4289), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3596), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154219,62 +155854,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52701] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53051] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(304), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3896), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1819), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3894), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154285,62 +155902,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52790] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53104] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4291), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3572), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + anon_sym_as, + [53157] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3578), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3576), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154351,62 +155998,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52879] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53210] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(308), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4176), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3828), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT_DOT, + ACTIONS(3826), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154417,62 +156049,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52968] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53269] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4293), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4314), 1, + anon_sym_SEMI, + ACTIONS(4316), 1, + anon_sym_else, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1822), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154483,62 +156122,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53057] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53358] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(310), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1823), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3592), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154549,62 +156163,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53146] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53411] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(312), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4318), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4320), 1, + anon_sym_else, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154615,62 +156236,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53235] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53500] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4295), 1, - anon_sym_SEMI, - ACTIONS(4297), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3592), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154681,62 +156277,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53324] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53553] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(316), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3762), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3760), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + anon_sym_as, + [53606] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3706), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3704), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154747,62 +156373,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53413] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53659] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(318), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4322), 1, + anon_sym_RBRACE, + ACTIONS(4324), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154813,62 +156446,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53502] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53748] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(320), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3716), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3712), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + anon_sym_as, + [53801] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3698), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3696), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154879,62 +156535,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53591] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53854] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(4301), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1829), 2, + ACTIONS(4326), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154945,62 +156607,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53680] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53941] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3776), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4303), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3774), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + anon_sym_as, + [53994] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3784), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3782), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155011,62 +156696,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53769] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54047] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(324), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4066), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4072), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4330), 1, + anon_sym_AMP_AMP, + ACTIONS(4048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4070), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4074), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + ACTIONS(4328), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4050), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4068), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155077,62 +156768,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53858] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54134] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(326), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1832), 2, + ACTIONS(4332), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155143,62 +156833,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53947] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54221] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(328), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1289), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1291), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + anon_sym_as, + [54274] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3728), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3726), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54327] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1844), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3824), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3822), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155209,62 +156970,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54036] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54380] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4230), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4236), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4305), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(3860), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4238), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4228), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155275,62 +157042,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54125] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54467] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(332), 1, + ACTIONS(289), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1835), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155341,128 +157108,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54214] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54556] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(121), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1836), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54303] = 23, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(117), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4334), 1, + anon_sym_RPAREN, + ACTIONS(4336), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155473,127 +157174,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54392] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54645] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4307), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1838), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54481] = 22, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4216), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4222), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4230), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4338), 1, + anon_sym_LBRACE, + STATE(383), 1, + sym_match_block, + ACTIONS(4212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4234), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4309), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1839), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4228), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155604,81 +157240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54568] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54734] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4311), 1, - anon_sym_RPAREN, - ACTIONS(4313), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1840), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54657] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, + ACTIONS(3880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155694,7 +157264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1370), 23, + ACTIONS(3878), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155718,60 +157288,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54710] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54787] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4315), 1, + ACTIONS(4340), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155782,60 +157352,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54796] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54873] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4317), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155846,60 +157416,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54882] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54959] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4319), 1, + ACTIONS(4344), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1844), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155910,60 +157480,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54968] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55045] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4210), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4328), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4208), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155974,118 +157544,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55054] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55131] = 22, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - ACTIONS(4321), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1846), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [55130] = 21, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4129), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + ACTIONS(4352), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156096,60 +157608,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55214] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55217] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4354), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156160,60 +157672,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55300] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55303] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4327), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4356), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156224,60 +157736,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55386] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55389] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4329), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156288,60 +157800,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55472] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55475] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4331), 1, + ACTIONS(4358), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156352,60 +157864,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55558] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55561] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4333), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156416,60 +157928,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55644] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55647] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4335), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4362), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156480,60 +157992,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55730] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55733] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, + ACTIONS(4364), 1, anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156544,60 +158056,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55816] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55819] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4339), 1, + ACTIONS(4366), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156608,60 +158120,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55902] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55905] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156672,60 +158184,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55988] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55991] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4343), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4370), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156736,60 +158248,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56074] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56077] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4345), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156800,60 +158312,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56160] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56163] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4347), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4374), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156864,60 +158376,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56246] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56249] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4376), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156928,60 +158440,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56332] = 22, - ACTIONS(101), 1, + [56335] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LBRACE, + ACTIONS(4194), 1, + anon_sym_STAR, + ACTIONS(4200), 1, + anon_sym_COLON_COLON, + ACTIONS(4204), 1, + sym_metavariable, + ACTIONS(4378), 1, + anon_sym_RBRACE, + STATE(2457), 1, + sym_scoped_identifier, + STATE(3102), 1, + sym__use_clause, + STATE(3343), 1, + sym_bracketed_type, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4202), 3, + sym_self, + sym_super, + sym_crate, + STATE(3036), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4196), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [56411] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4351), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4380), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156992,60 +158563,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56418] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56497] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4210), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4353), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4292), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4208), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157056,60 +158626,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56504] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56581] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4355), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4382), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157120,60 +158690,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56590] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56667] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4357), 1, + ACTIONS(4384), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157184,59 +158754,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56676] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56753] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4386), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4325), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157247,60 +158818,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56760] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56839] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4388), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157311,60 +158882,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56846] = 22, - ACTIONS(101), 1, + [56925] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LBRACE, + ACTIONS(4194), 1, + anon_sym_STAR, + ACTIONS(4200), 1, + anon_sym_COLON_COLON, + ACTIONS(4204), 1, + sym_metavariable, + ACTIONS(4390), 1, + anon_sym_RBRACE, + STATE(2457), 1, + sym_scoped_identifier, + STATE(3102), 1, + sym__use_clause, + STATE(3343), 1, + sym_bracketed_type, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(1875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4202), 3, + sym_self, + sym_super, + sym_crate, + STATE(3036), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4196), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [57001] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4361), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157375,60 +159005,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56932] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57087] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4363), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4392), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157439,60 +159069,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57018] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57173] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4365), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4394), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157503,60 +159133,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57104] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57259] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4367), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4396), 1, + anon_sym_COMMA, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157567,60 +159197,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57190] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57345] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4398), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157631,60 +159261,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57276] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57431] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4152), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4158), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4160), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4176), 1, + anon_sym_DOT, + ACTIONS(4182), 1, + anon_sym_as, + ACTIONS(4210), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4371), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4170), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4174), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4290), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4156), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4208), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157695,60 +159324,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57362] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57515] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3742), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4373), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4400), 1, + anon_sym_SEMI, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157759,119 +159388,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57448] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57601] = 22, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - ACTIONS(4375), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1874), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [57524] = 22, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3660), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3662), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3932), 1, + anon_sym_AMP_AMP, + ACTIONS(3934), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(4231), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 1, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + ACTIONS(4402), 1, + anon_sym_RBRACK, + ACTIONS(3922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4040), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3940), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157882,101 +159452,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57610] = 16, + [57687] = 16, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3487), 1, - sym__use_clause, - STATE(3495), 1, - sym_bracketed_type, - STATE(1876), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [57683] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4190), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4194), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4200), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4204), 1, sym_metavariable, - STATE(2488), 1, + STATE(2457), 1, sym_scoped_identifier, - STATE(3348), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3343), 1, sym_bracketed_type, - STATE(1877), 2, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(3587), 1, + sym__use_clause, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4202), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(3036), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4196), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157996,44 +159509,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57756] = 16, + [57760] = 16, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4190), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4194), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4200), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4204), 1, sym_metavariable, - STATE(2488), 1, + STATE(2457), 1, sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3343), 1, sym_bracketed_type, - STATE(3597), 1, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(3594), 1, sym__use_clause, - STATE(1878), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4202), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(3036), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4196), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158053,44 +159566,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57829] = 16, + [57833] = 16, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4190), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4194), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4200), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4204), 1, sym_metavariable, - STATE(2488), 1, + STATE(2457), 1, sym_scoped_identifier, - STATE(3073), 1, + STATE(3343), 1, + sym_bracketed_type, + STATE(3438), 1, sym__use_clause, - STATE(3374), 1, + STATE(3461), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1879), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4202), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(3036), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4196), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158110,44 +159623,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57902] = 16, + [57906] = 16, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4190), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4194), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4200), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4204), 1, sym_metavariable, - STATE(2488), 1, + STATE(2457), 1, sym_scoped_identifier, - STATE(3328), 1, + STATE(3102), 1, sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3343), 1, sym_bracketed_type, - STATE(1880), 2, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4202), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(3036), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4196), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158167,46 +159680,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57975] = 17, + [57979] = 16, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LBRACE, + ACTIONS(4194), 1, + anon_sym_STAR, + ACTIONS(4200), 1, + anon_sym_COLON_COLON, + ACTIONS(4204), 1, + sym_metavariable, + STATE(2457), 1, + sym_scoped_identifier, + STATE(3343), 1, + sym_bracketed_type, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(3517), 1, + sym__use_clause, + STATE(1888), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4202), 3, + sym_self, + sym_super, + sym_crate, + STATE(3036), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4196), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [58052] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4379), 1, + ACTIONS(4404), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - STATE(3025), 1, + STATE(2881), 1, sym_scoped_type_identifier, - STATE(3297), 1, + STATE(3147), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1881), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158224,46 +159794,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58049] = 17, + [58126] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - ACTIONS(4391), 1, + ACTIONS(4416), 1, sym_identifier, - STATE(3029), 1, + STATE(2775), 1, sym_scoped_type_identifier, - STATE(3306), 1, + STATE(3117), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1882), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158281,46 +159851,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58123] = 17, + [58200] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - ACTIONS(4393), 1, + ACTIONS(4418), 1, sym_identifier, - STATE(2865), 1, + STATE(2989), 1, sym_scoped_type_identifier, - STATE(3043), 1, + STATE(3261), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1883), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158338,46 +159908,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58197] = 17, + [58274] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - ACTIONS(4395), 1, + ACTIONS(4420), 1, sym_identifier, - STATE(2942), 1, + STATE(3039), 1, sym_scoped_type_identifier, - STATE(3227), 1, + STATE(3307), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1884), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158395,46 +159965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58271] = 17, + [58348] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - ACTIONS(4397), 1, + ACTIONS(4422), 1, sym_identifier, - STATE(2979), 1, + STATE(3034), 1, sym_scoped_type_identifier, - STATE(3095), 1, + STATE(3299), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1885), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158452,46 +160022,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58345] = 17, + [58422] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - ACTIONS(4399), 1, + ACTIONS(4424), 1, sym_identifier, - STATE(3013), 1, + STATE(3041), 1, sym_scoped_type_identifier, - STATE(3287), 1, + STATE(3310), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1886), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158509,46 +160079,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58419] = 17, + [58496] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - ACTIONS(4401), 1, + ACTIONS(4426), 1, sym_identifier, - STATE(3019), 1, + STATE(2803), 1, sym_scoped_type_identifier, - STATE(3292), 1, + STATE(3257), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1887), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158566,46 +160136,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58493] = 17, + [58570] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3706), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4408), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4414), 1, sym_metavariable, - ACTIONS(4403), 1, + ACTIONS(4428), 1, sym_identifier, - STATE(3021), 1, + STATE(3043), 1, sym_scoped_type_identifier, - STATE(3294), 1, + STATE(3314), 1, sym_generic_type, - STATE(3369), 1, + STATE(3386), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3491), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3518), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4410), 2, anon_sym_default, anon_sym_union, - STATE(1888), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3704), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4412), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4406), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158623,19 +160193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58567] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58644] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1889), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4407), 3, + ACTIONS(4432), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4405), 28, + ACTIONS(4430), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158664,19 +160234,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58613] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58690] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1890), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4436), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4409), 28, + ACTIONS(4434), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158705,19 +160275,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58736] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1891), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4415), 3, + ACTIONS(4440), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4413), 28, + ACTIONS(4438), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158746,35 +160316,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58705] = 13, + [58782] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3336), 1, - sym_attribute, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - STATE(1892), 2, + STATE(3529), 1, + sym_attribute, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158794,35 +160364,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58766] = 13, + [58843] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - STATE(3468), 1, + STATE(3627), 1, sym_attribute, - STATE(1893), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158842,35 +160412,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58827] = 13, + [58904] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - STATE(3401), 1, + STATE(3604), 1, sym_attribute, - STATE(1894), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158890,35 +160460,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58888] = 13, + [58965] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - STATE(3408), 1, + STATE(3353), 1, sym_attribute, - STATE(1895), 2, + STATE(3366), 1, + sym_generic_type_with_turbofish, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158938,35 +160508,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58949] = 13, + [59026] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3339), 1, + sym_attribute, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - STATE(3392), 1, - sym_attribute, - STATE(1896), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158986,35 +160556,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59010] = 13, + [59087] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3321), 1, - sym_attribute, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - STATE(1897), 2, + STATE(3430), 1, + sym_attribute, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159034,35 +160604,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59071] = 13, + [59148] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - STATE(3411), 1, + STATE(3404), 1, sym_attribute, - STATE(1898), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159082,35 +160652,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59132] = 13, + [59209] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4442), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4448), 1, sym_metavariable, - STATE(2271), 1, + STATE(2273), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3340), 1, sym_bracketed_type, - STATE(3326), 1, - sym_attribute, - STATE(3350), 1, + STATE(3366), 1, sym_generic_type_with_turbofish, - STATE(1899), 2, + STATE(3394), 1, + sym_attribute, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4446), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4444), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159130,33 +160700,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59193] = 12, + [59270] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4425), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(4454), 1, anon_sym_COLON_COLON, - ACTIONS(4433), 1, + ACTIONS(4458), 1, sym_metavariable, - STATE(3107), 1, + STATE(3106), 1, sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3343), 1, sym_bracketed_type, - STATE(1900), 2, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4431), 3, + ACTIONS(4456), 3, sym_self, sym_super, sym_crate, - ACTIONS(4427), 19, + ACTIONS(4452), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159176,33 +160746,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59251] = 12, + [59328] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4429), 1, + ACTIONS(4454), 1, anon_sym_COLON_COLON, - ACTIONS(4435), 1, + ACTIONS(4460), 1, sym_identifier, - ACTIONS(4441), 1, + ACTIONS(4466), 1, sym_metavariable, - STATE(3209), 1, + STATE(3178), 1, sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3343), 1, sym_bracketed_type, - STATE(1901), 2, + STATE(3461), 1, + sym_generic_type_with_turbofish, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4439), 3, + ACTIONS(4464), 3, sym_self, sym_super, sym_crate, - ACTIONS(4437), 19, + ACTIONS(4462), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159222,17 +160792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59309] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59386] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(771), 1, + ACTIONS(969), 1, anon_sym_DOT_DOT, - STATE(1902), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(773), 20, + ACTIONS(971), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159253,54 +160823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59345] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59422] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3245), 1, - anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(1903), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [59393] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, + ACTIONS(977), 1, anon_sym_DOT_DOT, - STATE(1904), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(755), 20, + ACTIONS(979), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159321,27 +160854,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59429] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59458] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3261), 1, + ACTIONS(3270), 1, anon_sym_COLON, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(1905), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3259), 14, + ACTIONS(3266), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159356,20 +160891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59474] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59506] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3318), 1, anon_sym_COLON, - ACTIONS(3273), 2, + ACTIONS(3322), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1906), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 17, + ACTIONS(3316), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159387,27 +160922,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59511] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59543] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3255), 1, + ACTIONS(3286), 1, anon_sym_COLON, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(1907), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(3253), 14, + ACTIONS(3284), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159422,20 +160957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59556] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59588] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, + ACTIONS(3310), 1, anon_sym_COLON, - ACTIONS(3297), 2, + ACTIONS(3314), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1908), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 17, + ACTIONS(3308), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159453,22 +160988,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59593] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59625] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + ACTIONS(3280), 1, anon_sym_COLON, - ACTIONS(3313), 2, - anon_sym_BANG, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - STATE(1909), 2, + STATE(1940), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 17, + ACTIONS(3278), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159480,40 +161021,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59630] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59670] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4455), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4457), 1, + ACTIONS(4482), 1, anon_sym_LBRACE, - ACTIONS(4459), 1, + ACTIONS(4484), 1, anon_sym_COLON, - ACTIONS(4461), 1, + ACTIONS(4486), 1, anon_sym_AT, - ACTIONS(4463), 1, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(4467), 1, + ACTIONS(4492), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - ACTIONS(4465), 2, + ACTIONS(4490), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, + ACTIONS(4478), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159523,28 +161062,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [59683] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59723] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, + ACTIONS(3334), 1, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(3338), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(1911), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 14, + ACTIONS(3332), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159556,22 +161089,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59728] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [59760] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3277), 1, + ACTIONS(3298), 1, anon_sym_COLON, - ACTIONS(3281), 2, + ACTIONS(3302), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1912), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 17, + ACTIONS(3296), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159589,22 +161124,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59765] = 6, - ACTIONS(101), 1, + [59797] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + anon_sym_COLON, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(1940), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3288), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [59842] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3320), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1913), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3316), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3297), 14, + ACTIONS(3322), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159619,23 +161189,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59801] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59878] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1939), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1956), 1, sym_parameters, - STATE(1914), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3328), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159651,53 +161221,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59841] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59918] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3271), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1915), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3267), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3273), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [59877] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1939), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1956), 1, sym_parameters, - STATE(1916), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3324), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159713,23 +161253,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59917] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59958] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1939), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1956), 1, sym_parameters, - STATE(1917), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3304), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159745,22 +161285,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59957] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59998] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3312), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1918), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(3308), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3281), 14, + ACTIONS(3314), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159775,22 +161315,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59993] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60034] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, + ACTIONS(3336), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1919), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(3332), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3313), 14, + ACTIONS(3338), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159805,23 +161345,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60029] = 8, - ACTIONS(101), 1, + [60070] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3296), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3302), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [60106] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1939), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1956), 1, sym_parameters, - STATE(1920), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3292), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159837,45 +161407,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60069] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60146] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3474), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1921), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 16, + ACTIONS(3472), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60179] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(3466), 1, anon_sym_COLON, - STATE(1922), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3404), 17, + ACTIONS(3464), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159893,17 +161463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60135] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60212] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3410), 1, + ACTIONS(3452), 1, anon_sym_COLON, - STATE(1923), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3408), 17, + ACTIONS(3450), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159921,18 +161491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60168] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60245] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3336), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1924), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 16, + ACTIONS(3338), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159949,18 +161519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60201] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60278] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, + ACTIONS(3300), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1925), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 16, + ACTIONS(3302), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159977,44 +161547,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60234] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60311] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + ACTIONS(3312), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 18, + ACTIONS(3314), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - anon_sym_LT2, - [60265] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [60344] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3350), 1, + ACTIONS(3482), 1, anon_sym_COLON, - STATE(1927), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(3348), 17, + ACTIONS(3480), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160032,73 +161603,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60298] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60377] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, + ACTIONS(3320), 2, anon_sym_COLON, - STATE(1928), 2, + anon_sym_DOT_DOT, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(3461), 17, + ACTIONS(3322), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [60331] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [60410] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1929), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 16, + ACTIONS(3296), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60364] = 5, - ACTIONS(101), 1, + anon_sym_LT2, + [60441] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4504), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1938), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4494), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [60487] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3386), 1, anon_sym_COLON, - STATE(1930), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 16, + ACTIONS(3384), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160115,17 +161719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60396] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60519] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3382), 1, anon_sym_COLON, - STATE(1931), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3380), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160142,58 +161746,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60428] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60551] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4471), 1, + ACTIONS(4508), 1, anon_sym_const, - ACTIONS(4473), 1, + ACTIONS(4510), 1, anon_sym_enum, - ACTIONS(4475), 1, + ACTIONS(4512), 1, anon_sym_fn, - ACTIONS(4477), 1, + ACTIONS(4514), 1, anon_sym_mod, - ACTIONS(4479), 1, + ACTIONS(4516), 1, anon_sym_static, - ACTIONS(4481), 1, + ACTIONS(4518), 1, anon_sym_struct, - ACTIONS(4483), 1, + ACTIONS(4520), 1, anon_sym_trait, - ACTIONS(4485), 1, + ACTIONS(4522), 1, anon_sym_type, - ACTIONS(4487), 1, + ACTIONS(4524), 1, anon_sym_union, - ACTIONS(4489), 1, + ACTIONS(4526), 1, anon_sym_unsafe, - ACTIONS(4491), 1, + ACTIONS(4528), 1, anon_sym_use, - ACTIONS(4493), 1, + ACTIONS(4530), 1, anon_sym_extern, - STATE(2133), 1, + STATE(2157), 1, sym_extern_modifier, - STATE(2206), 1, + STATE(2222), 1, aux_sym_function_modifiers_repeat1, - STATE(3407), 1, + STATE(3364), 1, sym_function_modifiers, - ACTIONS(4469), 2, + ACTIONS(4506), 2, anon_sym_async, anon_sym_default, - STATE(1932), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - [60488] = 5, - ACTIONS(101), 1, + [60611] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1942), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4494), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [60655] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, + ACTIONS(3378), 1, anon_sym_COLON, - STATE(1933), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 16, + ACTIONS(3376), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160210,159 +161847,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60520] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60687] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4495), 1, + ACTIONS(4534), 1, anon_sym_const, - ACTIONS(4497), 1, + ACTIONS(4536), 1, anon_sym_enum, - ACTIONS(4499), 1, + ACTIONS(4538), 1, anon_sym_fn, - ACTIONS(4501), 1, + ACTIONS(4540), 1, anon_sym_mod, - ACTIONS(4503), 1, + ACTIONS(4542), 1, anon_sym_static, - ACTIONS(4505), 1, + ACTIONS(4544), 1, anon_sym_struct, - ACTIONS(4507), 1, + ACTIONS(4546), 1, anon_sym_trait, - ACTIONS(4509), 1, + ACTIONS(4548), 1, anon_sym_type, - ACTIONS(4511), 1, + ACTIONS(4550), 1, anon_sym_union, - ACTIONS(4513), 1, + ACTIONS(4552), 1, anon_sym_unsafe, - ACTIONS(4515), 1, + ACTIONS(4554), 1, anon_sym_use, - ACTIONS(4517), 1, + ACTIONS(4556), 1, anon_sym_extern, STATE(2175), 1, sym_extern_modifier, - STATE(2206), 1, + STATE(2222), 1, aux_sym_function_modifiers_repeat1, - STATE(3600), 1, + STATE(3616), 1, sym_function_modifiers, - ACTIONS(4469), 2, + ACTIONS(4506), 2, anon_sym_async, anon_sym_default, - STATE(1934), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - [60580] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60747] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4521), 1, + ACTIONS(4478), 1, + anon_sym_PIPE, + ACTIONS(4482), 1, + anon_sym_LBRACE, + ACTIONS(4484), 1, anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4486), 1, + anon_sym_AT, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(4529), 1, + ACTIONS(4558), 1, + anon_sym_LPAREN, + ACTIONS(4563), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1940), 1, sym_type_arguments, - ACTIONS(4527), 2, + STATE(1967), 1, + sym_parameters, + ACTIONS(4490), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 9, - anon_sym_SEMI, + ACTIONS(4560), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [60624] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1936), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60670] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60802] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(3476), 16, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60713] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60831] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3326), 1, anon_sym_COLON, - ACTIONS(4535), 1, + ACTIONS(4565), 1, anon_sym_COLON_COLON, - STATE(1938), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3324), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160377,15 +161978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60746] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60864] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1939), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 16, + ACTIONS(1317), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160402,19 +162003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [60775] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60893] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, + ACTIONS(3306), 1, anon_sym_COLON, - ACTIONS(4537), 1, + ACTIONS(4565), 1, anon_sym_COLON_COLON, - STATE(1940), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 14, + ACTIONS(3304), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160429,17 +162030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60808] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60926] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4539), 1, - anon_sym_DASH_GT, - STATE(1941), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3521), 15, + ACTIONS(1047), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160455,53 +162054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60839] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [60955] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3241), 1, - anon_sym_PLUS, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4541), 1, - anon_sym_LPAREN, - ACTIONS(4546), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4543), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1942), 2, - sym_line_comment, - sym_block_comment, - [60894] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1943), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 16, + ACTIONS(3468), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160513,55 +162075,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [60923] = 6, - ACTIONS(101), 1, + [60984] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4567), 1, + anon_sym_LPAREN, + STATE(1952), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4004), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [61015] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1944), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 14, + ACTIONS(3454), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60956] = 5, - ACTIONS(101), 1, + [61044] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4569), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4494), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61087] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - STATE(1945), 2, + ACTIONS(3294), 1, + anon_sym_COLON, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3292), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160571,15 +162190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60987] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61120] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1946), 2, + ACTIONS(4573), 1, + anon_sym_DASH_GT, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 16, + ACTIONS(3424), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160591,22 +162212,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61016] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61151] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4550), 1, + ACTIONS(4575), 1, anon_sym_DASH_GT, - STATE(1947), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3527), 15, + ACTIONS(3442), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160622,17 +162242,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61047] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61182] = 16, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4552), 1, - anon_sym_DASH_GT, - STATE(1948), 2, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4482), 1, + anon_sym_LBRACE, + ACTIONS(4486), 1, + anon_sym_AT, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(4560), 1, + anon_sym_RBRACK, + ACTIONS(4577), 1, + anon_sym_LPAREN, + ACTIONS(4579), 1, + anon_sym_COLON_COLON, + STATE(1940), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + ACTIONS(3266), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4478), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1958), 2, + sym_line_comment, + sym_block_comment, + [61235] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 15, + ACTIONS(3432), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160644,23 +162299,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61078] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61264] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3294), 1, anon_sym_COLON, - ACTIONS(4537), 1, + ACTIONS(4581), 1, anon_sym_COLON_COLON, - STATE(1949), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3292), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160675,49 +162331,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61111] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61297] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + ACTIONS(3330), 1, + anon_sym_COLON, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 16, + ACTIONS(3328), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61140] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61330] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1951), 2, + ACTIONS(4583), 1, + anon_sym_DASH_GT, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 14, + ACTIONS(3458), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160727,19 +162384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61173] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61361] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3294), 1, anon_sym_COLON, - ACTIONS(4554), 1, + ACTIONS(4565), 1, anon_sym_COLON_COLON, - STATE(1952), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3292), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160754,15 +162411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61206] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61394] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1953), 2, + ACTIONS(4585), 1, + anon_sym_DASH_GT, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(3412), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160774,20 +162433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61235] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61425] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1954), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 16, + ACTIONS(1035), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160799,57 +162457,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61264] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [61454] = 16, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4457), 1, + ACTIONS(4478), 1, + anon_sym_PIPE, + ACTIONS(4482), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4484), 1, + anon_sym_COLON, + ACTIONS(4486), 1, anon_sym_AT, - ACTIONS(4463), 1, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_RBRACK, - ACTIONS(4556), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - ACTIONS(4558), 1, + ACTIONS(4589), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - ACTIONS(3241), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4465), 2, + ACTIONS(4490), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1955), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - [61317] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3266), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [61507] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1956), 2, + ACTIONS(4591), 1, + anon_sym_DASH_GT, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 16, + ACTIONS(3418), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160861,20 +162521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61346] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61538] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1957), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 16, + ACTIONS(3484), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160886,57 +162545,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61375] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61567] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_LPAREN, - ACTIONS(4562), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1958), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [61428] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1959), 2, + ACTIONS(4593), 1, + anon_sym_DASH_GT, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 16, + ACTIONS(3562), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160952,18 +162576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61457] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61598] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4564), 1, + ACTIONS(4595), 1, anon_sym_DASH_GT, - STATE(1960), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(3436), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160979,28 +162602,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61488] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61629] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4455), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4484), 1, anon_sym_COLON, - ACTIONS(4463), 1, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(4566), 1, + ACTIONS(4597), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4490), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1961), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, + ACTIONS(4478), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161010,17 +162633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [61529] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61670] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_DASH_GT, - STATE(1962), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 15, + ACTIONS(1341), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161036,17 +162657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [61699] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_DASH_GT, - STATE(1963), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 15, + ACTIONS(3646), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161062,41 +162682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61591] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61727] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4572), 1, - anon_sym_LPAREN, - STATE(1964), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3977), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [61622] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 15, + ACTIONS(3328), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161112,15 +162706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61650] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61755] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1966), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3572), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161136,15 +162730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61678] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61783] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1967), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3841), 15, + ACTIONS(3576), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161160,15 +162754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61706] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61811] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3584), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161184,15 +162778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61734] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61839] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 15, + ACTIONS(3704), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161208,15 +162802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61762] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61867] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1970), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3727), 15, + ACTIONS(3628), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161232,15 +162826,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61790] = 4, - ACTIONS(101), 1, + [61895] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4494), 1, + anon_sym_PIPE, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4599), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1980), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61939] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, + ACTIONS(3620), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161256,15 +162882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61818] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61967] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1972), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(3592), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161280,15 +162906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61846] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61995] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 15, + ACTIONS(3592), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161304,39 +162930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62023] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1974), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3995), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [61902] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1975), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 15, + ACTIONS(3612), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161352,15 +162954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61930] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62051] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, + ACTIONS(3292), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161376,39 +162978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61958] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62079] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1977), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3991), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [61986] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3616), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161424,15 +163002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62014] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62107] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3324), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161448,15 +163026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62042] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62135] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1980), 2, + ACTIONS(3910), 1, + anon_sym_COLON_COLON, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 15, + ACTIONS(4009), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161471,50 +163051,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [62070] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62165] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1981), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(4011), 15, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - [62114] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + [62193] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - STATE(1982), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 14, + ACTIONS(4015), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161529,15 +163098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [62144] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + [62221] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 15, + ACTIONS(3650), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161553,15 +163123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62172] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62249] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3906), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161577,15 +163147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62200] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62277] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(3766), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161601,15 +163171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62228] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62305] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3829), 15, + ACTIONS(3624), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161625,17 +163195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62256] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62333] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, + ACTIONS(4601), 1, anon_sym_COLON_COLON, - STATE(1987), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 14, + ACTIONS(4009), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161650,15 +163220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [62286] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62363] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(3708), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161674,15 +163244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62314] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62391] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3735), 15, + ACTIONS(3664), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161698,15 +163268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62342] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62419] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(3668), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161722,15 +163292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62370] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62447] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(3730), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161746,15 +163316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62398] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62475] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 15, + ACTIONS(3676), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161770,15 +163340,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62426] = 4, - ACTIONS(101), 1, + [62503] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2001), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4019), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [62531] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3849), 15, + ACTIONS(3748), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161794,15 +163388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62559] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 15, + ACTIONS(3304), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161818,15 +163412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62482] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62587] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, + ACTIONS(3580), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161842,41 +163436,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62510] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62615] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + ACTIONS(973), 1, + anon_sym_DOT_DOT, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 15, + ACTIONS(975), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62538] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62644] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, + ACTIONS(965), 1, anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 13, + ACTIONS(967), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161890,19 +163484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62567] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62673] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, + ACTIONS(4605), 1, anon_sym_pat, - STATE(144), 1, + STATE(148), 1, sym_fragment_specifier, - STATE(1998), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(4578), 12, + ACTIONS(4603), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -161915,331 +163509,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [62598] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62704] = 16, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4529), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1999), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62633] = 16, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4582), 1, + ACTIONS(4607), 1, anon_sym_COLON, - ACTIONS(4584), 1, + ACTIONS(4609), 1, anon_sym_EQ, - ACTIONS(4586), 1, + ACTIONS(4611), 1, anon_sym_GT, - ACTIONS(4588), 1, + ACTIONS(4613), 1, anon_sym_COMMA, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(2746), 1, - sym_trait_bounds, - STATE(2907), 1, + STATE(2765), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3241), 2, + STATE(3026), 1, + sym_trait_bounds, + ACTIONS(3266), 2, anon_sym_PLUS, anon_sym_as, - STATE(2000), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - [62684] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62755] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(767), 1, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - STATE(2001), 2, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 13, + ACTIONS(4494), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62713] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62790] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3336), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4590), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2002), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 4, - anon_sym_SEMI, + ACTIONS(3332), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3313), 6, + ACTIONS(4615), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3338), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62745] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62822] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(4593), 2, + ACTIONS(4618), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2003), 2, + ACTIONS(3300), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 4, - anon_sym_SEMI, + ACTIONS(3296), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3273), 6, + ACTIONS(3302), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62777] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4596), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62805] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62854] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2005), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62835] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4600), 1, - anon_sym_LPAREN, - ACTIONS(3295), 2, + ACTIONS(3312), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2006), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 5, - anon_sym_RPAREN, + ACTIONS(3308), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3297), 5, + ACTIONS(4621), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3314), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62867] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62886] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACE, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4609), 1, - anon_sym_AT, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4615), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2007), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [62911] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_DOT_DOT, - ACTIONS(4617), 2, + ACTIONS(4621), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2008), 2, + ACTIONS(3312), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 4, - anon_sym_SEMI, + ACTIONS(3308), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3281), 6, + ACTIONS(3314), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62943] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62918] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4590), 1, - anon_sym_LPAREN, - ACTIONS(3311), 2, + ACTIONS(3320), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2009), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 5, - anon_sym_RPAREN, + ACTIONS(3316), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3313), 5, + ACTIONS(4624), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3322), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62975] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62950] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4617), 1, - anon_sym_LPAREN, - ACTIONS(3279), 2, + ACTIONS(3300), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2010), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 5, - anon_sym_RPAREN, + ACTIONS(3296), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3281), 5, + ACTIONS(4618), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3302), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63007] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62982] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, + ACTIONS(4629), 1, anon_sym_DOT_DOT, - STATE(2011), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 12, + ACTIONS(4627), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162252,710 +163744,1161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63035] = 7, - ACTIONS(101), 1, + [63010] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2017), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4478), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [63040] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(4624), 1, + anon_sym_LPAREN, + ACTIONS(3320), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2012), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3316), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4600), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3297), 5, + anon_sym_LT2, + ACTIONS(3322), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63067] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63072] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(4633), 1, + anon_sym_DOT_DOT, + STATE(2019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4631), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [63100] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3312), 1, anon_sym_DOT_DOT, - STATE(2013), 2, + ACTIONS(4621), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3308), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4593), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3273), 5, + ACTIONS(3314), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [63099] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63132] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, - anon_sym_COLON, + ACTIONS(3300), 1, anon_sym_DOT_DOT, - STATE(2014), 2, + ACTIONS(4618), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(3296), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4590), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3313), 5, + ACTIONS(3302), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [63131] = 7, - ACTIONS(101), 1, + [63164] = 13, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4635), 1, + anon_sym_LPAREN, + ACTIONS(4637), 1, + anon_sym_LBRACE, + ACTIONS(4639), 1, + anon_sym_BANG, + ACTIONS(4641), 1, + anon_sym_AT, + ACTIONS(4643), 1, + anon_sym_DOT_DOT, + ACTIONS(4647), 1, + anon_sym_COLON_COLON, + STATE(1940), 1, + sym_type_arguments, + ACTIONS(4645), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2022), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4478), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [63208] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, - anon_sym_COLON, + ACTIONS(3320), 1, anon_sym_DOT_DOT, - STATE(2015), 2, + ACTIONS(4624), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(3316), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4617), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3281), 5, + ACTIONS(3322), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [63163] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63240] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3336), 1, anon_sym_DOT_DOT, - ACTIONS(4600), 2, + ACTIONS(4615), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2016), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 4, + ACTIONS(3332), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3297), 6, + ACTIONS(3338), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [63195] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63272] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(3271), 2, + ACTIONS(3336), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2017), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 5, + ACTIONS(3332), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3273), 5, + ACTIONS(3338), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63227] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63304] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4626), 1, + ACTIONS(4651), 1, anon_sym_GT, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2605), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2018), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63272] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63349] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4632), 1, + ACTIONS(4657), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2019), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63317] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63394] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4634), 1, + ACTIONS(4659), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2020), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63362] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63439] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4636), 1, + ACTIONS(4661), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2021), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63407] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63484] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4638), 1, + ACTIONS(4663), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2022), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63452] = 14, - ACTIONS(101), 1, + [63529] = 14, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(2982), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym_identifier, + ACTIONS(4653), 1, + anon_sym_const, + ACTIONS(4655), 1, + sym_metavariable, + ACTIONS(4665), 1, + anon_sym_GT, + STATE(1479), 1, + sym_attribute_item, + STATE(2048), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2701), 1, + sym_lifetime, + STATE(2969), 1, + sym_constrained_type_parameter, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + STATE(3248), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63574] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4640), 1, + ACTIONS(4667), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2023), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63497] = 14, - ACTIONS(101), 1, + [63619] = 14, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(2982), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym_identifier, + ACTIONS(4653), 1, + anon_sym_const, + ACTIONS(4655), 1, + sym_metavariable, + ACTIONS(4669), 1, + anon_sym_GT, + STATE(1479), 1, + sym_attribute_item, + STATE(2048), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2701), 1, + sym_lifetime, + STATE(2969), 1, + sym_constrained_type_parameter, + STATE(2033), 2, + sym_line_comment, + sym_block_comment, + STATE(3248), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63664] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4642), 1, + ACTIONS(4671), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2577), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2024), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63542] = 14, - ACTIONS(101), 1, + [63709] = 14, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(2982), 1, + anon_sym_SQUOTE, + ACTIONS(4649), 1, + sym_identifier, + ACTIONS(4653), 1, + anon_sym_const, + ACTIONS(4655), 1, + sym_metavariable, + ACTIONS(4673), 1, + anon_sym_GT, + STATE(1479), 1, + sym_attribute_item, + STATE(2048), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2701), 1, + sym_lifetime, + STATE(2969), 1, + sym_constrained_type_parameter, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + STATE(3248), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63754] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4644), 1, + ACTIONS(4675), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2025), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63587] = 10, + [63799] = 10, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4483), 1, + ACTIONS(4520), 1, anon_sym_trait, - ACTIONS(4646), 1, + ACTIONS(4677), 1, anon_sym_impl, - STATE(384), 1, + STATE(390), 1, sym_block, - STATE(3510), 1, + STATE(3569), 1, sym_label, - STATE(2026), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63624] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63836] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4648), 1, + ACTIONS(4679), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2027), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63669] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63881] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4650), 1, + ACTIONS(4681), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2028), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63714] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63926] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4652), 1, + ACTIONS(4683), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2029), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63759] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63971] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4655), 1, sym_metavariable, - ACTIONS(4654), 1, + ACTIONS(4685), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2701), 1, sym_lifetime, - STATE(2847), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2030), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [63804] = 14, - ACTIONS(101), 1, + [64016] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2042), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1245), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64040] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4689), 1, + anon_sym_COLON, + ACTIONS(4691), 1, + anon_sym_COLON_COLON, + STATE(2043), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4687), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64068] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4695), 1, + anon_sym_COLON, + ACTIONS(4697), 1, + anon_sym_COLON_COLON, + STATE(2044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4693), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64096] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4699), 1, + sym_identifier, + ACTIONS(4701), 1, sym_metavariable, - ACTIONS(4656), 1, - anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2047), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2339), 1, sym_lifetime, - STATE(2847), 1, + STATE(2719), 1, sym_constrained_type_parameter, - STATE(2031), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(2999), 2, sym_const_parameter, sym_optional_type_parameter, - [63849] = 14, - ACTIONS(101), 1, + [64138] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4689), 1, + anon_sym_COLON, + ACTIONS(4703), 1, + anon_sym_COLON_COLON, + STATE(2046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4687), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64166] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4705), 1, + sym_identifier, + ACTIONS(4707), 1, sym_metavariable, - ACTIONS(4658), 1, - anon_sym_GT, - STATE(1476), 1, + STATE(1052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2406), 1, + sym_lifetime, + STATE(2563), 1, + sym_constrained_type_parameter, + STATE(2047), 2, + sym_line_comment, + sym_block_comment, + STATE(2817), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64208] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(2982), 1, + anon_sym_SQUOTE, + ACTIONS(4653), 1, + anon_sym_const, + ACTIONS(4709), 1, + sym_identifier, + ACTIONS(4711), 1, + sym_metavariable, + STATE(1052), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(1479), 1, + sym_attribute_item, + STATE(2581), 1, sym_lifetime, - STATE(2847), 1, + STATE(2924), 1, sym_constrained_type_parameter, - STATE(2032), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3295), 2, sym_const_parameter, sym_optional_type_parameter, - [63894] = 14, - ACTIONS(101), 1, + [64250] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1421), 1, + aux_sym_string_literal_token1, + ACTIONS(4715), 1, + sym_crate, + STATE(2229), 1, + sym_string_literal, + STATE(2049), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 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, + [64280] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3270), 1, + anon_sym_COLON, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4717), 1, + anon_sym_EQ, + STATE(1967), 1, + sym_parameters, + STATE(2310), 1, + sym_type_arguments, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3266), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [64320] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1421), 1, + aux_sym_string_literal_token1, + ACTIONS(4719), 1, + sym_crate, + STATE(2229), 1, + sym_string_literal, + STATE(2051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 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, + [64350] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2052), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1249), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64374] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4721), 1, + sym_identifier, + ACTIONS(4723), 1, sym_metavariable, - ACTIONS(4660), 1, - anon_sym_GT, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2054), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2439), 1, sym_lifetime, - STATE(2847), 1, + STATE(2712), 1, sym_constrained_type_parameter, - STATE(2033), 2, + STATE(2053), 2, + sym_line_comment, + sym_block_comment, + STATE(2790), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64416] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(2982), 1, + anon_sym_SQUOTE, + ACTIONS(4653), 1, + anon_sym_const, + ACTIONS(4725), 1, + sym_identifier, + ACTIONS(4727), 1, + sym_metavariable, + STATE(1052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1479), 1, + sym_attribute_item, + STATE(2441), 1, + sym_lifetime, + STATE(2522), 1, + sym_constrained_type_parameter, + STATE(2054), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(2888), 2, sym_const_parameter, sym_optional_type_parameter, - [63939] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64458] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4662), 1, + ACTIONS(4729), 1, anon_sym_for, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(2034), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3266), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [63977] = 6, - ACTIONS(101), 1, + [64496] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4731), 1, + sym_identifier, + STATE(386), 1, + sym_block, + STATE(3569), 1, + sym_label, + STATE(2056), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4733), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64530] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 1, - anon_sym_COLON, - STATE(2035), 2, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4735), 1, + anon_sym_move, + STATE(373), 1, + sym_block, + STATE(3569), 1, + sym_label, + STATE(2057), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64564] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(1257), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64005] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64588] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_COLON, - ACTIONS(4668), 1, + ACTIONS(4697), 1, anon_sym_COLON_COLON, - STATE(2036), 2, + ACTIONS(4739), 1, + anon_sym_COLON, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(4737), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162965,95 +164908,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64033] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64616] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4670), 1, + ACTIONS(4741), 1, anon_sym_for, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(2037), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3266), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64071] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3245), 1, - anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4672), 1, - anon_sym_EQ, - STATE(1945), 1, - sym_parameters, - STATE(2365), 1, - sym_type_arguments, - STATE(2038), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [64111] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64654] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2039), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1240), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64135] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(3312), 1, anon_sym_DOT_DOT, - ACTIONS(3267), 2, + ACTIONS(3308), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2040), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 8, + ACTIONS(3314), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -163062,119 +164957,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [64163] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64682] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, - anon_sym_COLON, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(2041), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 9, + ACTIONS(1253), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64191] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64706] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_RBRACE, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4686), 1, - anon_sym_COMMA, - ACTIONS(4688), 1, - sym_integer_literal, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2042), 2, - sym_line_comment, - sym_block_comment, - STATE(2851), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64231] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4692), 1, - anon_sym_COLON, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, - STATE(2043), 2, + ACTIONS(3300), 1, + anon_sym_DOT_DOT, + ACTIONS(3296), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64259] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3302), 8, anon_sym_LPAREN, - ACTIONS(4445), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4447), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4696), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2044), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64297] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [64734] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3320), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 2, + ACTIONS(3316), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2045), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 8, + ACTIONS(3322), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -163183,19 +165021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [64325] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64762] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, + ACTIONS(4691), 1, anon_sym_COLON_COLON, - ACTIONS(4692), 1, + ACTIONS(4745), 1, anon_sym_COLON, - STATE(2046), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(4743), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163205,39 +165043,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64353] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64790] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + ACTIONS(4601), 1, + anon_sym_COLON_COLON, + ACTIONS(4745), 1, + anon_sym_COLON, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 11, + ACTIONS(4743), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64377] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64818] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, + ACTIONS(4703), 1, anon_sym_COLON_COLON, - ACTIONS(4692), 1, + ACTIONS(4745), 1, anon_sym_COLON, - STATE(2048), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(4743), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163247,195 +165087,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64405] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64846] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4747), 1, sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4698), 1, + ACTIONS(4749), 1, anon_sym_RBRACE, - ACTIONS(4700), 1, + ACTIONS(4751), 1, + anon_sym_DOT_DOT, + ACTIONS(4753), 1, anon_sym_COMMA, - STATE(1476), 1, + ACTIONS(4755), 1, + sym_integer_literal, + STATE(1479), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2423), 1, aux_sym_enum_variant_list_repeat1, - STATE(2049), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - STATE(2770), 3, + STATE(2880), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [64445] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64886] = 13, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4704), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2050), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4702), 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, - [64475] = 13, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4706), 1, + ACTIONS(4649), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4653), 1, + anon_sym_const, + ACTIONS(4655), 1, sym_metavariable, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2052), 1, + STATE(2048), 1, aux_sym_enum_variant_list_repeat1, - STATE(2436), 1, + STATE(2701), 1, sym_lifetime, - STATE(2512), 1, + STATE(2969), 1, sym_constrained_type_parameter, - STATE(2051), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - STATE(2778), 2, + STATE(3248), 2, sym_const_parameter, sym_optional_type_parameter, - [64517] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64928] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4710), 1, - sym_identifier, - ACTIONS(4712), 1, - sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2447), 1, - sym_lifetime, - STATE(2534), 1, - sym_constrained_type_parameter, - STATE(2052), 2, - sym_line_comment, - sym_block_comment, - STATE(2775), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64559] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4757), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 11, + ACTIONS(3266), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64583] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64966] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4496), 1, anon_sym_COLON, - ACTIONS(4694), 1, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4504), 1, anon_sym_COLON_COLON, - STATE(2054), 2, + STATE(1943), 1, + sym_type_arguments, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, - anon_sym_SEMI, + ACTIONS(4494), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64611] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65004] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4714), 1, - sym_identifier, - ACTIONS(4716), 1, - sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2390), 1, - sym_lifetime, - STATE(2531), 1, - sym_constrained_type_parameter, - STATE(2055), 2, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4759), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2072), 2, sym_line_comment, sym_block_comment, - STATE(3011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64653] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3266), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65042] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 11, + ACTIONS(1261), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163447,205 +165245,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64677] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65066] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2982), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(4653), 1, anon_sym_const, - ACTIONS(4718), 1, + ACTIONS(4699), 1, sym_identifier, - ACTIONS(4720), 1, + ACTIONS(4701), 1, sym_metavariable, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2055), 1, + STATE(2047), 1, aux_sym_enum_variant_list_repeat1, - STATE(2401), 1, + STATE(2399), 1, sym_lifetime, - STATE(2693), 1, + STATE(2719), 1, sym_constrained_type_parameter, - STATE(2057), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - STATE(2959), 2, + STATE(2999), 2, sym_const_parameter, sym_optional_type_parameter, - [64719] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65108] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [64757] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + ACTIONS(4601), 1, + anon_sym_COLON_COLON, + ACTIONS(4689), 1, + anon_sym_COLON, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1206), 11, + ACTIONS(4687), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64781] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2060), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64823] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4722), 1, - sym_identifier, - STATE(380), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64857] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4718), 1, - sym_identifier, - ACTIONS(4720), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2055), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2326), 1, - sym_lifetime, - STATE(2693), 1, - sym_constrained_type_parameter, - STATE(2062), 2, - sym_line_comment, - sym_block_comment, - STATE(2959), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64899] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65136] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_move, - STATE(389), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64933] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, + ACTIONS(1421), 1, aux_sym_string_literal_token1, - ACTIONS(4728), 1, + ACTIONS(4761), 1, sym_crate, - STATE(2179), 1, + STATE(2229), 1, sym_string_literal, - STATE(2064), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4713), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163654,92 +165319,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64963] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65166] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4730), 1, + ACTIONS(4763), 1, anon_sym_for, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(2065), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3266), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65001] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_DOT_DOT, - ACTIONS(3307), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65029] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65204] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_DOT_DOT, - ACTIONS(3275), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3281), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65057] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, + ACTIONS(1421), 1, aux_sym_string_literal_token1, - ACTIONS(4732), 1, + ACTIONS(4765), 1, sym_crate, - STATE(2179), 1, + STATE(2229), 1, sym_string_literal, - STATE(2068), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4713), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163748,216 +165369,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65087] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65234] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4736), 1, - anon_sym_COLON, - STATE(2069), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4734), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65115] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4738), 1, + ACTIONS(4767), 1, anon_sym_for, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(2070), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3266), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65153] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65272] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4740), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4702), 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, - [65183] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4742), 1, + ACTIONS(4769), 1, anon_sym_for, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(2072), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3266), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65221] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65310] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4744), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2073), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65259] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4746), 1, + ACTIONS(4771), 1, anon_sym_for, - STATE(1931), 1, + STATE(1940), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1967), 1, sym_parameters, - STATE(2074), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3266), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65297] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65348] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4748), 1, + ACTIONS(4747), 1, sym_identifier, - ACTIONS(4750), 1, - sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + ACTIONS(4751), 1, + anon_sym_DOT_DOT, + ACTIONS(4755), 1, + sym_integer_literal, + ACTIONS(4773), 1, + anon_sym_RBRACE, + ACTIONS(4775), 1, + anon_sym_COMMA, + STATE(1479), 1, sym_attribute_item, - STATE(2564), 1, - sym_lifetime, - STATE(2945), 1, - sym_constrained_type_parameter, - STATE(2075), 2, + STATE(2423), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2082), 2, sym_line_comment, sym_block_comment, - STATE(3089), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65339] = 4, - ACTIONS(101), 1, + STATE(2811), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65388] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3336), 1, + anon_sym_DOT_DOT, + ACTIONS(3332), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3338), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [65416] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4569), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4494), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65362] = 4, - ACTIONS(101), 1, + [65451] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4777), 1, + sym_identifier, + ACTIONS(4779), 1, + anon_sym_RBRACE, + ACTIONS(4781), 1, + anon_sym_COMMA, + ACTIONS(4783), 1, + sym_crate, + STATE(1479), 1, + sym_attribute_item, + STATE(2210), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2933), 1, + sym_field_declaration, + STATE(3566), 1, + sym_visibility_modifier, + STATE(2085), 2, + sym_line_comment, + sym_block_comment, + [65492] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4754), 10, + ACTIONS(4785), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163968,15 +165572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65385] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65515] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 10, + ACTIONS(4787), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163987,15 +165591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65408] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65538] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 10, + ACTIONS(4789), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164006,15 +165610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65431] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65561] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 10, + ACTIONS(4791), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164025,15 +165629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65584] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 10, + ACTIONS(4793), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164044,15 +165648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65477] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65607] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4760), 10, + ACTIONS(4795), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164063,15 +165667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65500] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65630] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 10, + ACTIONS(4797), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164082,15 +165686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65523] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65653] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 10, + ACTIONS(4799), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164101,15 +165705,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65546] = 4, - ACTIONS(101), 1, + [65676] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3972), 1, + anon_sym_LT2, + ACTIONS(4110), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_BANG, + STATE(1606), 1, + sym_type_arguments, + STATE(2094), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65707] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 10, + ACTIONS(4803), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164120,15 +165747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65569] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65730] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 10, + ACTIONS(4805), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164139,41 +165766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65592] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65753] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4770), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2087), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65629] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 10, + ACTIONS(4807), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164184,71 +165785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65652] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4776), 1, - anon_sym_RBRACE, - ACTIONS(4778), 1, - anon_sym_COMMA, - ACTIONS(4780), 1, - sym_crate, - STATE(1476), 1, - sym_attribute_item, - STATE(2181), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2762), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2089), 2, - sym_line_comment, - sym_block_comment, - [65693] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65776] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4784), 1, - anon_sym_RBRACE, - ACTIONS(4786), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2187), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2791), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2090), 2, - sym_line_comment, - sym_block_comment, - [65734] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 10, + ACTIONS(4809), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164259,15 +165804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65757] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65799] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 10, + ACTIONS(4811), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164278,15 +165823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65780] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65822] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 10, + ACTIONS(4813), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164297,34 +165842,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65803] = 4, - ACTIONS(101), 1, + [65845] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(2113), 1, + sym_block, + STATE(3598), 1, + sym_label, + STATE(2101), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65876] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4815), 1, + anon_sym_BANG, + ACTIONS(4817), 1, + anon_sym_DOT_DOT, + ACTIONS(4821), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, + ACTIONS(4819), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4494), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65826] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [65911] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 10, + ACTIONS(4823), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164335,15 +165909,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65849] = 4, - ACTIONS(101), 1, + [65934] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4747), 1, + sym_identifier, + ACTIONS(4751), 1, + anon_sym_DOT_DOT, + ACTIONS(4755), 1, + sym_integer_literal, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(1479), 1, + sym_attribute_item, + STATE(2423), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2104), 2, + sym_line_comment, + sym_block_comment, + STATE(3143), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65971] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 10, + ACTIONS(4827), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164354,15 +165954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65872] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65994] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2097), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 10, + ACTIONS(4829), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164373,15 +165973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65895] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66017] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 10, + ACTIONS(4831), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164392,15 +165992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65918] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66040] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 10, + ACTIONS(4833), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164411,15 +166011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65941] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66063] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 10, + ACTIONS(4835), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164430,15 +166030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65964] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66086] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 10, + ACTIONS(4837), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164449,15 +166049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65987] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66109] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2102), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 10, + ACTIONS(4839), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164468,15 +166068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66010] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66132] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 10, + ACTIONS(4687), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164487,15 +166087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66033] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66155] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 10, + ACTIONS(1321), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164506,41 +166106,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66056] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66178] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4747), 1, sym_identifier, - ACTIONS(4684), 1, + ACTIONS(4751), 1, anon_sym_DOT_DOT, - ACTIONS(4688), 1, + ACTIONS(4755), 1, sym_integer_literal, - ACTIONS(4812), 1, + ACTIONS(4841), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2423), 1, aux_sym_enum_variant_list_repeat1, - STATE(2105), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, + STATE(3143), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66093] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66215] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 10, + ACTIONS(4843), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164551,85 +166151,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66116] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66238] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4845), 1, + anon_sym_LBRACE, + STATE(1939), 1, + sym_type_arguments, + STATE(1956), 1, + sym_parameters, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 10, + ACTIONS(3292), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66139] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4818), 1, - anon_sym_RBRACE, - ACTIONS(4820), 1, + anon_sym_PLUS, anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2188), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3012), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2108), 2, - sym_line_comment, - sym_block_comment, - [66180] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66271] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(2100), 1, - sym_block, - STATE(3582), 1, - sym_label, - STATE(2109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66211] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 10, + ACTIONS(4847), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164640,41 +166194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66234] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66294] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4824), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2111), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66271] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 10, + ACTIONS(4849), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164685,64 +166213,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66294] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66317] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4828), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2113), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66329] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2114), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 5, + ACTIONS(4851), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [66362] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [66340] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 10, + ACTIONS(4853), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164753,139 +166251,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66385] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66363] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4834), 1, - anon_sym_RBRACE, - ACTIONS(4836), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2226), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2814), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2116), 2, - sym_line_comment, - sym_block_comment, - [66426] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4838), 1, + ACTIONS(4498), 1, anon_sym_BANG, - ACTIONS(4840), 1, - anon_sym_DOT_DOT, - ACTIONS(4844), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4842), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2117), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [66461] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4095), 1, + ACTIONS(4581), 1, anon_sym_COLON_COLON, - ACTIONS(4846), 1, - anon_sym_BANG, - STATE(1581), 1, + STATE(1943), 1, sym_type_arguments, - STATE(2118), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66492] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66394] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - ACTIONS(4848), 1, - anon_sym_BANG, - STATE(1048), 1, - sym_type_arguments, - STATE(2119), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66523] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4747), 1, + sym_identifier, + ACTIONS(4751), 1, anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2120), 2, + ACTIONS(4755), 1, + sym_integer_literal, + ACTIONS(4855), 1, + anon_sym_RBRACE, + STATE(1479), 1, + sym_attribute_item, + STATE(2423), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [66558] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3143), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66431] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2121), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 10, + ACTIONS(4743), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164896,15 +166319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66581] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66454] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2122), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 10, + ACTIONS(4478), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164915,64 +166338,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66604] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66477] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4857), 1, sym_identifier, - ACTIONS(4684), 1, + ACTIONS(4859), 1, + anon_sym_RBRACE, + ACTIONS(4861), 1, + anon_sym_COMMA, + STATE(1479), 1, + sym_attribute_item, + STATE(2215), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2872), 1, + sym_enum_variant, + STATE(3446), 1, + sym_visibility_modifier, + STATE(2125), 2, + sym_line_comment, + sym_block_comment, + [66518] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4484), 1, + anon_sym_COLON, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4854), 1, + ACTIONS(4863), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2126), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4478), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [66553] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4857), 1, + sym_identifier, + ACTIONS(4865), 1, anon_sym_RBRACE, - STATE(1476), 1, + ACTIONS(4867), 1, + anon_sym_COMMA, + STATE(1479), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2217), 1, aux_sym_enum_variant_list_repeat1, - STATE(2123), 2, + STATE(2954), 1, + sym_enum_variant, + STATE(3446), 1, + sym_visibility_modifier, + STATE(2127), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66641] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66594] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3276), 1, anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4554), 1, + ACTIONS(3367), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + ACTIONS(4869), 1, + anon_sym_BANG, + STATE(1053), 1, sym_type_arguments, - STATE(2124), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66672] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66625] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2125), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 10, + ACTIONS(4871), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164983,15 +166461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66695] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66648] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2126), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 10, + ACTIONS(4873), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165002,15 +166480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66718] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66671] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2127), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 10, + ACTIONS(4875), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165021,240 +166499,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66741] = 5, - ACTIONS(101), 1, + [66694] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4777), 1, + sym_identifier, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4877), 1, + anon_sym_RBRACE, + ACTIONS(4879), 1, + anon_sym_COMMA, + STATE(1479), 1, + sym_attribute_item, + STATE(2220), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2901), 1, + sym_field_declaration, + STATE(3566), 1, + sym_visibility_modifier, + STATE(2132), 2, + sym_line_comment, + sym_block_comment, + [66735] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(2128), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4881), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66765] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66758] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4747), 1, sym_identifier, - ACTIONS(4684), 1, + ACTIONS(4751), 1, anon_sym_DOT_DOT, - ACTIONS(4688), 1, + ACTIONS(4755), 1, sym_integer_literal, - STATE(1476), 1, + ACTIONS(4883), 1, + anon_sym_RBRACE, + STATE(1479), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2423), 1, aux_sym_enum_variant_list_repeat1, - STATE(2129), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, + STATE(3143), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66799] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66795] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4862), 1, - anon_sym_COLON_COLON, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [66831] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4864), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2131), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66863] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4866), 1, + ACTIONS(4885), 10, anon_sym_SEMI, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(697), 1, - sym_field_declaration_list, - STATE(2239), 1, - sym_type_parameters, - STATE(2875), 1, - sym_ordered_field_declaration_list, - STATE(3060), 1, - sym_where_clause, - STATE(2132), 2, - sym_line_comment, - sym_block_comment, - [66901] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66818] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4876), 1, - anon_sym_SEMI, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(648), 1, - sym_declaration_list, - STATE(2133), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66929] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - STATE(2134), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4569), 1, anon_sym_COLON_COLON, - anon_sym_if, - [66953] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3299), 1, + ACTIONS(4887), 1, + anon_sym_RBRACK, + ACTIONS(3292), 2, + anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4519), 1, + ACTIONS(4494), 2, anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4880), 2, - anon_sym_RPAREN, anon_sym_COMMA, - STATE(2135), 2, - sym_line_comment, - sym_block_comment, - [66987] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [67019] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66850] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_type_arguments, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67047] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3312), 1, anon_sym_DOT_DOT, - STATE(2138), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 8, + ACTIONS(3314), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -165263,198 +166633,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67071] = 12, - ACTIONS(67), 1, + [66874] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - ACTIONS(4885), 1, + ACTIONS(4857), 1, + sym_identifier, + ACTIONS(4890), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2211), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3203), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3446), 1, sym_visibility_modifier, - STATE(2139), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - [67109] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66912] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4887), 1, - anon_sym_for, - STATE(1933), 1, + ACTIONS(4494), 1, + anon_sym_PIPE, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4599), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2140), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67141] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4889), 1, - anon_sym_SEMI, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1283), 1, - sym_field_declaration_list, - STATE(2255), 1, - sym_type_parameters, - STATE(2826), 1, - sym_ordered_field_declaration_list, - STATE(3136), 1, - sym_where_clause, - STATE(2141), 2, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2139), 2, sym_line_comment, sym_block_comment, - [67179] = 12, - ACTIONS(67), 1, + [66948] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4777), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - ACTIONS(4893), 1, + ACTIONS(4892), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2189), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3283), 1, + sym_field_declaration, + STATE(3566), 1, sym_visibility_modifier, - STATE(2142), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - [67217] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66986] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4895), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2143), 2, + ACTIONS(4894), 1, + anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_LPAREN, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, + anon_sym_where, + STATE(645), 1, + sym_field_declaration_list, + STATE(2282), 1, + sym_type_parameters, + STATE(2927), 1, + sym_ordered_field_declaration_list, + STATE(3157), 1, + sym_where_clause, + STATE(2141), 2, sym_line_comment, sym_block_comment, - [67255] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67024] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4897), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2144), 2, + ACTIONS(4906), 1, + anon_sym_PLUS, + STATE(2142), 3, sym_line_comment, sym_block_comment, - [67293] = 12, - ACTIONS(67), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(4904), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [67048] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4777), 1, sym_identifier, - ACTIONS(4899), 1, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4909), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2189), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3283), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3566), 1, sym_visibility_modifier, - STATE(2145), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - [67331] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67086] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4903), 1, + ACTIONS(4913), 1, anon_sym_PLUS, - STATE(2163), 1, + STATE(2142), 1, aux_sym_trait_bounds_repeat1, - STATE(2146), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, + ACTIONS(4911), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -165462,156 +166801,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67357] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67112] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_for, - STATE(1933), 1, + STATE(1939), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1956), 1, sym_parameters, - STATE(2147), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67389] = 12, - ACTIONS(67), 1, + [67144] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4857), 1, sym_identifier, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2211), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3203), 1, + sym_enum_variant, + STATE(3446), 1, sym_visibility_modifier, - STATE(2148), 2, - sym_line_comment, - sym_block_comment, - [67427] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - STATE(2149), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67451] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67182] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2150), 2, - sym_line_comment, - sym_block_comment, - [67487] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4909), 1, + ACTIONS(4919), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1943), 1, sym_type_arguments, - STATE(2151), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67515] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67210] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, - anon_sym_SEMI, + ACTIONS(4913), 1, anon_sym_PLUS, - ACTIONS(4519), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2152), 2, + STATE(2144), 1, + aux_sym_trait_bounds_repeat1, + STATE(2148), 2, sym_line_comment, sym_block_comment, - [67547] = 6, - ACTIONS(101), 1, + ACTIONS(4921), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [67236] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4777), 1, + sym_identifier, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4923), 1, + anon_sym_RBRACE, + STATE(1479), 1, + sym_attribute_item, + STATE(2189), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3283), 1, + sym_field_declaration, + STATE(3566), 1, + sym_visibility_modifier, + STATE(2149), 2, + sym_line_comment, + sym_block_comment, + [67274] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, + ACTIONS(4925), 1, anon_sym_PLUS, - STATE(2163), 1, + STATE(2144), 1, aux_sym_trait_bounds_repeat1, - STATE(2153), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, + ACTIONS(4921), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -165619,62 +166937,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67573] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67300] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4913), 1, - anon_sym_SEMI, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1301), 1, - sym_declaration_list, - STATE(2154), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67601] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4917), 1, + ACTIONS(4927), 1, anon_sym_LPAREN, - ACTIONS(4922), 1, + ACTIONS(4932), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(3418), 1, + STATE(3361), 1, sym_macro_rule, - ACTIONS(4920), 3, + STATE(3574), 1, + sym_token_tree_pattern, + ACTIONS(4930), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2155), 3, + STATE(2151), 3, sym_line_comment, sym_block_comment, aux_sym_macro_definition_repeat1, - [67633] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67332] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(4938), 1, anon_sym_PLUS, - STATE(2156), 3, + STATE(2144), 1, + aux_sym_trait_bounds_repeat1, + STATE(2152), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4928), 7, + ACTIONS(4921), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -165682,1174 +166980,1249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67657] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67358] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, + ACTIONS(4635), 1, anon_sym_LPAREN, - ACTIONS(4463), 1, + ACTIONS(4639), 1, + anon_sym_BANG, + ACTIONS(4643), 1, anon_sym_DOT_DOT, - ACTIONS(4933), 1, + ACTIONS(4940), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4645), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2157), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RBRACK, + ACTIONS(4478), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [67689] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [67390] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4935), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2158), 2, + ACTIONS(4494), 1, + anon_sym_PIPE, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4599), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2154), 2, sym_line_comment, sym_block_comment, - [67727] = 12, - ACTIONS(101), 1, + ACTIONS(3292), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [67422] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3336), 1, + anon_sym_DOT_DOT, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3338), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67446] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4896), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, + ACTIONS(4900), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4937), 1, + ACTIONS(4942), 1, anon_sym_SEMI, - STATE(479), 1, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1166), 1, sym_field_declaration_list, - STATE(2260), 1, + STATE(2242), 1, sym_type_parameters, - STATE(3009), 1, + STATE(2917), 1, sym_ordered_field_declaration_list, - STATE(3128), 1, + STATE(3135), 1, sym_where_clause, - STATE(2159), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - [67765] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67484] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4939), 1, + ACTIONS(4946), 1, anon_sym_SEMI, - STATE(655), 1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(745), 1, sym_declaration_list, - STATE(2160), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67793] = 12, - ACTIONS(101), 1, + [67512] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4950), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, + STATE(1956), 1, + sym_parameters, + STATE(2158), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67544] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4896), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(4900), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, + ACTIONS(4952), 1, anon_sym_SEMI, - STATE(1187), 1, + STATE(742), 1, sym_field_declaration_list, - STATE(2251), 1, + STATE(2287), 1, sym_type_parameters, - STATE(2813), 1, + STATE(2864), 1, sym_ordered_field_declaration_list, - STATE(3290), 1, + STATE(3206), 1, sym_where_clause, - STATE(2161), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - [67831] = 7, - ACTIONS(101), 1, + [67582] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3320), 1, + anon_sym_DOT_DOT, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3322), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67606] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(3972), 1, anon_sym_LT2, - ACTIONS(4943), 1, + ACTIONS(4954), 1, anon_sym_COLON_COLON, - STATE(1581), 1, + STATE(1606), 1, sym_type_arguments, - STATE(2162), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67859] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67634] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PLUS, - STATE(2156), 1, - aux_sym_trait_bounds_repeat1, - STATE(2163), 2, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4747), 1, + sym_identifier, + ACTIONS(4751), 1, + anon_sym_DOT_DOT, + ACTIONS(4755), 1, + sym_integer_literal, + STATE(1479), 1, + sym_attribute_item, + STATE(2423), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 7, + STATE(3143), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67668] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4956), 1, anon_sym_SEMI, + ACTIONS(4958), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67885] = 12, - ACTIONS(67), 1, + STATE(1125), 1, + sym_declaration_list, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67696] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4777), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4960), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2189), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3283), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3566), 1, sym_visibility_modifier, STATE(2164), 2, sym_line_comment, sym_block_comment, - [67923] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67734] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4951), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_SEMI, + STATE(671), 1, + sym_declaration_list, STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67955] = 12, - ACTIONS(67), 1, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67762] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - ACTIONS(4953), 1, + ACTIONS(4857), 1, + sym_identifier, + ACTIONS(4964), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2211), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3203), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3446), 1, sym_visibility_modifier, STATE(2166), 2, sym_line_comment, sym_block_comment, - [67993] = 12, - ACTIONS(67), 1, + [67800] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4857), 1, sym_identifier, - ACTIONS(4955), 1, + ACTIONS(4966), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2211), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3203), 1, + sym_enum_variant, + STATE(3446), 1, sym_visibility_modifier, STATE(2167), 2, sym_line_comment, sym_block_comment, - [68031] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67838] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4957), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4777), 1, + sym_identifier, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4968), 1, + anon_sym_RBRACE, + STATE(1479), 1, + sym_attribute_item, + STATE(2189), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3283), 1, + sym_field_declaration, + STATE(3566), 1, + sym_visibility_modifier, STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68063] = 12, - ACTIONS(67), 1, + [67876] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4857), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4970), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2211), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3203), 1, + sym_enum_variant, + STATE(3446), 1, sym_visibility_modifier, STATE(2169), 2, sym_line_comment, sym_block_comment, - [68101] = 9, - ACTIONS(101), 1, + [67914] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(4972), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2170), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4478), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [67946] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4961), 1, + ACTIONS(4974), 1, anon_sym_for, - STATE(1933), 1, + STATE(1939), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1956), 1, sym_parameters, - STATE(2170), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68133] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, + [67978] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4896), 1, + anon_sym_LPAREN, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4944), 1, + anon_sym_LBRACE, + ACTIONS(4976), 1, + anon_sym_SEMI, + STATE(1105), 1, + sym_field_declaration_list, + STATE(2255), 1, + sym_type_parameters, + STATE(2799), 1, + sym_ordered_field_declaration_list, + STATE(3258), 1, + sym_where_clause, + STATE(2172), 2, + sym_line_comment, + sym_block_comment, + [68016] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - ACTIONS(4963), 1, + ACTIONS(4857), 1, + sym_identifier, + ACTIONS(4978), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2211), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3203), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3446), 1, sym_visibility_modifier, - STATE(2171), 2, - sym_line_comment, - sym_block_comment, - [68171] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4965), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2172), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68203] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PLUS, - STATE(2163), 1, - aux_sym_trait_bounds_repeat1, STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68229] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68054] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4967), 1, + ACTIONS(4980), 1, anon_sym_for, - STATE(1933), 1, + STATE(1939), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1956), 1, sym_parameters, STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68261] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68086] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4969), 1, + ACTIONS(4982), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1114), 1, sym_declaration_list, STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68289] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68114] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(688), 1, - sym_declaration_list, - STATE(2327), 1, - sym_type_parameters, - STATE(2544), 1, - sym_trait_bounds, - STATE(3257), 1, - sym_where_clause, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4984), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, + STATE(1956), 1, + sym_parameters, STATE(2176), 2, sym_line_comment, sym_block_comment, - [68324] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68146] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4986), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, + STATE(1956), 1, + sym_parameters, STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_where, - [68345] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68178] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4988), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, + STATE(1956), 1, + sym_parameters, STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_where, - [68366] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68210] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4777), 1, + sym_identifier, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4990), 1, + anon_sym_RBRACE, + STATE(1479), 1, + sym_attribute_item, + STATE(2189), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3283), 1, + sym_field_declaration, + STATE(3566), 1, + sym_visibility_modifier, STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 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, - [68387] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68248] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4977), 1, - anon_sym_SEMI, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4981), 1, - anon_sym_DASH_GT, - STATE(709), 1, - sym_block, - STATE(2431), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(4494), 1, + anon_sym_PIPE, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4504), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4887), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2180), 2, sym_line_comment, sym_block_comment, - [68422] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68282] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2885), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, + ACTIONS(3276), 1, + anon_sym_LT2, + ACTIONS(4992), 1, + anon_sym_COLON_COLON, + STATE(1053), 1, + sym_type_arguments, STATE(2181), 2, sym_line_comment, sym_block_comment, - [68457] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68310] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - ACTIONS(4983), 1, - anon_sym_SEMI, - ACTIONS(4985), 1, - anon_sym_EQ, - STATE(2383), 1, - sym_type_parameters, - STATE(2976), 1, - sym_trait_bounds, - STATE(3375), 1, - sym_where_clause, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4994), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, + STATE(1956), 1, + sym_parameters, STATE(2182), 2, sym_line_comment, sym_block_comment, - [68492] = 11, - ACTIONS(101), 1, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68342] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 1, + anon_sym_DOT_DOT, + STATE(2183), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3302), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [68366] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, + ACTIONS(4996), 1, anon_sym_SEMI, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(635), 1, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5000), 1, + anon_sym_DASH_GT, + STATE(1224), 1, sym_block, - STATE(2419), 1, + STATE(2450), 1, sym_where_clause, - STATE(3586), 1, + STATE(3605), 1, sym_label, - STATE(2183), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - [68527] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68401] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4991), 1, + ACTIONS(5002), 1, anon_sym_SEMI, - STATE(486), 1, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5006), 1, + anon_sym_DASH_GT, + STATE(704), 1, sym_block, - STATE(2420), 1, + STATE(2447), 1, sym_where_clause, - STATE(3586), 1, + STATE(3602), 1, sym_label, - STATE(2184), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - [68562] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68436] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4993), 1, + ACTIONS(5008), 1, anon_sym_SEMI, - STATE(624), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + STATE(522), 1, sym_block, - STATE(2411), 1, + STATE(2483), 1, sym_where_clause, - STATE(3586), 1, + STATE(3602), 1, sym_label, - STATE(2185), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - [68597] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68471] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4995), 1, - anon_sym_SEMI, - ACTIONS(4997), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - STATE(1156), 1, + ACTIONS(5012), 1, + anon_sym_SEMI, + ACTIONS(5014), 1, + anon_sym_DASH_GT, + STATE(663), 1, sym_block, - STATE(2410), 1, + STATE(2444), 1, sym_where_clause, - STATE(3589), 1, + STATE(3602), 1, sym_label, - STATE(2186), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - [68632] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68506] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2917), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2187), 2, + ACTIONS(4697), 1, + anon_sym_COLON_COLON, + ACTIONS(4815), 1, + anon_sym_BANG, + STATE(2188), 2, sym_line_comment, sym_block_comment, - [68667] = 11, - ACTIONS(67), 1, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68531] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4777), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - STATE(1065), 1, + STATE(1052), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2783), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3136), 1, + sym_field_declaration, + STATE(3566), 1, sym_visibility_modifier, - STATE(2188), 2, - sym_line_comment, - sym_block_comment, - [68702] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4999), 1, - anon_sym_SEMI, - STATE(542), 1, - sym_block, - STATE(2432), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, STATE(2189), 2, sym_line_comment, sym_block_comment, - [68737] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68566] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_SEMI, - STATE(1166), 1, - sym_block, - STATE(2412), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5018), 1, + anon_sym_LT, + STATE(1159), 1, + sym_declaration_list, + STATE(2389), 1, + sym_type_parameters, + STATE(2528), 1, + sym_trait_bounds, + STATE(3125), 1, sym_where_clause, - STATE(3589), 1, - sym_label, STATE(2190), 2, sym_line_comment, sym_block_comment, - [68772] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68601] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5003), 1, - anon_sym_SEMI, - ACTIONS(5005), 1, - anon_sym_DASH_GT, - STATE(743), 1, - sym_block, - STATE(2490), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, + ACTIONS(4546), 1, + anon_sym_trait, + ACTIONS(5020), 1, + anon_sym_impl, STATE(2191), 2, sym_line_comment, sym_block_comment, - [68807] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68626] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5007), 1, - anon_sym_SEMI, - STATE(1397), 1, - sym_block, - STATE(2445), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, STATE(2192), 2, sym_line_comment, sym_block_comment, - [68842] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5009), 1, + ACTIONS(4904), 8, anon_sym_SEMI, - STATE(1176), 1, - sym_block, - STATE(2413), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2193), 2, - sym_line_comment, - sym_block_comment, - [68877] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5011), 1, - anon_sym_SEMI, - ACTIONS(5013), 1, - anon_sym_DASH_GT, - STATE(517), 1, - sym_block, - STATE(2492), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2194), 2, - sym_line_comment, - sym_block_comment, - [68912] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68647] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5015), 1, - anon_sym_SEMI, - STATE(576), 1, - sym_block, - STATE(2457), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2195), 2, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4857), 1, + sym_identifier, + STATE(1479), 1, + sym_attribute_item, + STATE(2211), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3203), 1, + sym_enum_variant, + STATE(3446), 1, + sym_visibility_modifier, + STATE(2193), 2, sym_line_comment, sym_block_comment, - [68947] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68682] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5017), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5022), 1, anon_sym_SEMI, - ACTIONS(5019), 1, - anon_sym_DASH_GT, - STATE(662), 1, + STATE(1381), 1, sym_block, - STATE(2398), 1, + STATE(2463), 1, sym_where_clause, - STATE(3586), 1, + STATE(3605), 1, sym_label, - STATE(2196), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - [68982] = 11, - ACTIONS(101), 1, + [68717] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2195), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4904), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68738] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5024), 1, anon_sym_SEMI, - ACTIONS(5023), 1, - anon_sym_DASH_GT, - STATE(1236), 1, + STATE(1391), 1, sym_block, - STATE(2437), 1, + STATE(2464), 1, sym_where_clause, - STATE(3589), 1, + STATE(3605), 1, sym_label, - STATE(2197), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - [69017] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68773] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + STATE(2197), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4904), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1188), 1, - sym_declaration_list, - STATE(2293), 1, - sym_type_parameters, - STATE(2513), 1, - sym_trait_bounds, - STATE(3293), 1, - sym_where_clause, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68794] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5028), 1, + anon_sym_RBRACE, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, STATE(2198), 2, sym_line_comment, sym_block_comment, - [69052] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2966), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68827] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1271), 1, - sym_declaration_list, - STATE(2310), 1, - sym_type_parameters, - STATE(2542), 1, - sym_trait_bounds, - STATE(3123), 1, + ACTIONS(5036), 1, + anon_sym_SEMI, + ACTIONS(5038), 1, + anon_sym_DASH_GT, + STATE(1188), 1, + sym_block, + STATE(2446), 1, sym_where_clause, + STATE(3605), 1, + sym_label, STATE(2199), 2, sym_line_comment, sym_block_comment, - [69087] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68862] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5018), 1, anon_sym_LT, - STATE(625), 1, + STATE(750), 1, sym_declaration_list, - STATE(2313), 1, + STATE(2325), 1, sym_type_parameters, - STATE(2562), 1, + STATE(2525), 1, sym_trait_bounds, - STATE(3208), 1, + STATE(3249), 1, sym_where_clause, STATE(2200), 2, sym_line_comment, sym_block_comment, - [69122] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68897] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - STATE(2201), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69147] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5025), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5040), 1, anon_sym_SEMI, - ACTIONS(5027), 1, - anon_sym_DASH_GT, - STATE(1429), 1, + STATE(1401), 1, sym_block, - STATE(2397), 1, + STATE(2465), 1, sym_where_clause, - STATE(3589), 1, + STATE(3605), 1, sym_label, - STATE(2202), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - [69182] = 6, - ACTIONS(101), 1, + [68932] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, + ACTIONS(5042), 1, + anon_sym_RBRACE, + ACTIONS(5044), 1, + anon_sym_COMMA, + STATE(2202), 2, + sym_line_comment, + sym_block_comment, + STATE(2850), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68965] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 1, - anon_sym_trait, - ACTIONS(5029), 1, - anon_sym_impl, + ACTIONS(1421), 1, + aux_sym_string_literal_token1, + STATE(2229), 1, + sym_string_literal, STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(4713), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69207] = 11, - ACTIONS(101), 1, + [68990] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4478), 1, + anon_sym_PIPE, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4484), 1, + anon_sym_COLON, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5046), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2204), 2, + sym_line_comment, + sym_block_comment, + [69023] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5048), 1, anon_sym_SEMI, - ACTIONS(5033), 1, + ACTIONS(5050), 1, anon_sym_DASH_GT, - STATE(1445), 1, + STATE(1296), 1, sym_block, - STATE(2399), 1, + STATE(2459), 1, sym_where_clause, - STATE(3589), 1, + STATE(3605), 1, sym_label, - STATE(2204), 2, - sym_line_comment, - sym_block_comment, - [69242] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(3189), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, STATE(2205), 2, sym_line_comment, sym_block_comment, - [69277] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69058] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_fn, - ACTIONS(5037), 1, - anon_sym_extern, - STATE(2220), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5018), 1, + anon_sym_LT, + STATE(1233), 1, + sym_declaration_list, + STATE(2380), 1, + sym_type_parameters, + STATE(2554), 1, + sym_trait_bounds, + STATE(3236), 1, + sym_where_clause, STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69306] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69093] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(4904), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -166858,15 +168231,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69327] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69114] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5052), 1, + anon_sym_SEMI, + STATE(1307), 1, + sym_block, + STATE(2460), 1, + sym_where_clause, + STATE(3605), 1, + sym_label, STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + [69149] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4904), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -166875,25567 +168272,25901 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69348] = 11, - ACTIONS(67), 1, + [69170] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4777), 1, sym_identifier, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, + ACTIONS(4783), 1, + sym_crate, + STATE(1052), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(1479), 1, + sym_attribute_item, + STATE(3029), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3566), 1, sym_visibility_modifier, - STATE(2209), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - [69383] = 11, - ACTIONS(67), 1, + [69205] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4857), 1, + sym_identifier, + STATE(1052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1479), 1, + sym_attribute_item, + STATE(3051), 1, + sym_enum_variant, + STATE(3446), 1, + sym_visibility_modifier, + STATE(2211), 2, + sym_line_comment, + sym_block_comment, + [69240] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4777), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2189), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3283), 1, + sym_field_declaration, + STATE(3566), 1, sym_visibility_modifier, - STATE(2210), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - [69418] = 10, - ACTIONS(101), 1, + [69275] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_fn, + ACTIONS(5059), 1, + anon_sym_extern, + STATE(2318), 1, + sym_extern_modifier, + STATE(2213), 3, + sym_line_comment, + sym_block_comment, + aux_sym_function_modifiers_repeat1, + ACTIONS(5054), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [69302] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1507), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5026), 1, sym_identifier, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(5043), 1, - anon_sym_COMMA, - ACTIONS(5045), 1, + ACTIONS(5032), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5034), 1, sym_mutable_specifier, - STATE(2211), 2, + ACTIONS(5062), 1, + anon_sym_RBRACE, + ACTIONS(5064), 1, + anon_sym_COMMA, + STATE(2214), 2, sym_line_comment, sym_block_comment, - STATE(2937), 2, + STATE(2852), 2, sym_field_pattern, sym_remaining_field_pattern, - [69451] = 11, - ACTIONS(67), 1, + [69335] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2980), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4783), 1, sym_crate, - STATE(1065), 1, + ACTIONS(4857), 1, + sym_identifier, + STATE(1052), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1479), 1, sym_attribute_item, - STATE(3084), 1, + STATE(2959), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3446), 1, sym_visibility_modifier, - STATE(2212), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - [69486] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69370] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - STATE(2179), 1, - sym_string_literal, - STATE(2213), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4702), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69511] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5018), 1, anon_sym_LT, - STATE(752), 1, - sym_declaration_list, - STATE(2388), 1, + ACTIONS(5066), 1, + anon_sym_SEMI, + ACTIONS(5068), 1, + anon_sym_EQ, + STATE(2381), 1, sym_type_parameters, - STATE(2660), 1, + STATE(2994), 1, sym_trait_bounds, - STATE(3038), 1, + STATE(3548), 1, sym_where_clause, - STATE(2214), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - [69546] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69405] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5049), 1, - anon_sym_SEMI, - ACTIONS(5051), 1, - anon_sym_DASH_GT, - STATE(1316), 1, - sym_block, - STATE(2389), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2215), 2, - sym_line_comment, - sym_block_comment, - [69581] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5053), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2216), 2, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4783), 1, + sym_crate, + ACTIONS(4857), 1, + sym_identifier, + STATE(1052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1479), 1, + sym_attribute_item, + STATE(2950), 1, + sym_enum_variant, + STATE(3446), 1, + sym_visibility_modifier, + STATE(2217), 2, sym_line_comment, sym_block_comment, - [69614] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69440] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_SEMI, - ACTIONS(5057), 1, - anon_sym_DASH_GT, - STATE(531), 1, - sym_block, - STATE(2459), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5018), 1, + anon_sym_LT, + STATE(638), 1, + sym_declaration_list, + STATE(2321), 1, + sym_type_parameters, + STATE(2508), 1, + sym_trait_bounds, + STATE(3053), 1, sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2217), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - [69649] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69475] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5059), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5070), 1, anon_sym_SEMI, - STATE(1455), 1, + STATE(487), 1, sym_block, - STATE(2404), 1, + STATE(2468), 1, sym_where_clause, - STATE(3589), 1, + STATE(3602), 1, sym_label, - STATE(2218), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - [69684] = 11, - ACTIONS(101), 1, + [69510] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(4777), 1, + sym_identifier, + ACTIONS(4783), 1, + sym_crate, + STATE(1052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1479), 1, + sym_attribute_item, + STATE(2992), 1, + sym_field_declaration, + STATE(3566), 1, + sym_visibility_modifier, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + [69545] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5072), 1, anon_sym_SEMI, - ACTIONS(5063), 1, - anon_sym_DASH_GT, - STATE(585), 1, + STATE(561), 1, sym_block, - STATE(2465), 1, + STATE(2492), 1, sym_where_clause, - STATE(3586), 1, + STATE(3602), 1, sym_label, - STATE(2219), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - [69719] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69580] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(5074), 1, anon_sym_fn, - ACTIONS(5070), 1, + ACTIONS(5076), 1, anon_sym_extern, - STATE(2320), 1, + STATE(2213), 1, + aux_sym_function_modifiers_repeat1, + STATE(2318), 1, sym_extern_modifier, - STATE(2220), 3, + STATE(2222), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5065), 4, + ACTIONS(4506), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [69746] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(5075), 1, - anon_sym_COMMA, - STATE(2221), 2, - sym_line_comment, - sym_block_comment, - STATE(3022), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69779] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69609] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5077), 1, - anon_sym_RBRACE, - ACTIONS(5079), 1, - anon_sym_COMMA, - STATE(2222), 2, - sym_line_comment, - sym_block_comment, - STATE(2738), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69812] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5078), 1, + anon_sym_SEMI, + ACTIONS(5080), 1, + anon_sym_DASH_GT, + STATE(531), 1, + sym_block, + STATE(2485), 1, + sym_where_clause, + STATE(3602), 1, + sym_label, STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69833] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69644] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(5082), 1, anon_sym_SEMI, - STATE(1115), 1, + ACTIONS(5084), 1, + anon_sym_DASH_GT, + STATE(674), 1, sym_block, - STATE(2408), 1, + STATE(2491), 1, sym_where_clause, - STATE(3589), 1, + STATE(3602), 1, sym_label, STATE(2224), 2, sym_line_comment, sym_block_comment, - [69868] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69679] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5083), 1, + ACTIONS(5086), 1, anon_sym_SEMI, - STATE(614), 1, + STATE(571), 1, sym_block, - STATE(2474), 1, + STATE(2494), 1, sym_where_clause, - STATE(3586), 1, + STATE(3602), 1, sym_label, STATE(2225), 2, sym_line_comment, sym_block_comment, - [69903] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69714] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2994), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_SEMI, + ACTIONS(5090), 1, + anon_sym_DASH_GT, + STATE(724), 1, + sym_block, + STATE(2400), 1, + sym_where_clause, + STATE(3602), 1, + sym_label, STATE(2226), 2, sym_line_comment, sym_block_comment, - [69938] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69749] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5085), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - ACTIONS(5087), 1, + ACTIONS(5094), 1, anon_sym_DASH_GT, - STATE(1124), 1, + STATE(1136), 1, sym_block, - STATE(2409), 1, + STATE(2440), 1, sym_where_clause, - STATE(3589), 1, + STATE(3605), 1, sym_label, STATE(2227), 2, sym_line_comment, sym_block_comment, - [69973] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69784] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5089), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5096), 1, anon_sym_SEMI, - ACTIONS(5091), 1, - anon_sym_DASH_GT, - STATE(1359), 1, + STATE(1251), 1, sym_block, - STATE(2486), 1, + STATE(2505), 1, sym_where_clause, - STATE(3589), 1, + STATE(3605), 1, sym_label, STATE(2228), 2, sym_line_comment, sym_block_comment, - [70008] = 11, - ACTIONS(101), 1, + [69819] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5098), 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, + [69840] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5018), 1, anon_sym_LT, - STATE(1372), 1, + STATE(733), 1, sym_declaration_list, - STATE(2325), 1, + STATE(2342), 1, sym_type_parameters, - STATE(2561), 1, + STATE(2582), 1, sym_trait_bounds, - STATE(3234), 1, + STATE(3207), 1, sym_where_clause, - STATE(2229), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - [70043] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69875] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5093), 1, - anon_sym_RBRACE, - ACTIONS(5095), 1, - anon_sym_COMMA, - STATE(2230), 2, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5100), 1, + anon_sym_SEMI, + STATE(481), 1, + sym_block, + STATE(2417), 1, + sym_where_clause, + STATE(3602), 1, + sym_label, + STATE(2231), 2, sym_line_comment, sym_block_comment, - STATE(2870), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70076] = 11, - ACTIONS(101), 1, + [69910] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5018), 1, + anon_sym_LT, + STATE(1106), 1, + sym_declaration_list, + STATE(2323), 1, + sym_type_parameters, + STATE(2729), 1, + sym_trait_bounds, + STATE(3260), 1, + sym_where_clause, + STATE(2232), 2, + sym_line_comment, + sym_block_comment, + [69945] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(5097), 1, + ACTIONS(5102), 1, anon_sym_SEMI, - ACTIONS(5099), 1, + ACTIONS(5104), 1, anon_sym_EQ, - STATE(2294), 1, + STATE(2334), 1, sym_type_parameters, - STATE(2833), 1, + STATE(2804), 1, sym_trait_bounds, - STATE(3576), 1, + STATE(3458), 1, sym_where_clause, - STATE(2231), 2, - sym_line_comment, - sym_block_comment, - [70111] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5101), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2232), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [70137] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4840), 1, - anon_sym_DOT_DOT, - ACTIONS(4844), 1, - anon_sym_COLON_COLON, - ACTIONS(4842), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [70163] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69980] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(2234), 2, - sym_line_comment, - sym_block_comment, - [70193] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1507), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5026), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5032), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5034), 1, sym_mutable_specifier, - ACTIONS(5107), 1, + ACTIONS(5106), 1, anon_sym_RBRACE, - STATE(2235), 2, + ACTIONS(5108), 1, + anon_sym_COMMA, + STATE(2234), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(2938), 2, sym_field_pattern, sym_remaining_field_pattern, - [70223] = 9, - ACTIONS(101), 1, + [70013] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5110), 1, + anon_sym_SEMI, + ACTIONS(5112), 1, + anon_sym_DASH_GT, + STATE(603), 1, + sym_block, + STATE(2404), 1, + sym_where_clause, + STATE(3602), 1, + sym_label, + STATE(2235), 2, + sym_line_comment, + sym_block_comment, + [70048] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5114), 1, + anon_sym_SEMI, + STATE(581), 1, + sym_block, + STATE(2497), 1, + sym_where_clause, + STATE(3602), 1, + sym_label, STATE(2236), 2, sym_line_comment, sym_block_comment, - [70253] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70083] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5109), 1, - anon_sym_RBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5116), 1, + anon_sym_SEMI, + STATE(1341), 1, + sym_block, + STATE(2461), 1, + sym_where_clause, + STATE(3605), 1, + sym_label, STATE(2237), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70283] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70118] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4891), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5111), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5118), 1, + anon_sym_SEMI, + ACTIONS(5120), 1, + anon_sym_DASH_GT, + STATE(1350), 1, + sym_block, + STATE(2462), 1, + sym_where_clause, + STATE(3605), 1, + sym_label, STATE(2238), 2, sym_line_comment, sym_block_comment, - STATE(2769), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70311] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70153] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(5115), 1, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5122), 1, anon_sym_SEMI, - STATE(749), 1, - sym_field_declaration_list, - STATE(3002), 1, - sym_ordered_field_declaration_list, - STATE(3251), 1, + ACTIONS(5124), 1, + anon_sym_DASH_GT, + STATE(1282), 1, + sym_block, + STATE(2458), 1, sym_where_clause, + STATE(3605), 1, + sym_label, STATE(2239), 2, sym_line_comment, sym_block_comment, - [70343] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70188] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5117), 1, - sym_identifier, + ACTIONS(4896), 1, + anon_sym_LPAREN, + ACTIONS(4944), 1, + anon_sym_LBRACE, + ACTIONS(5128), 1, + anon_sym_EQ, + ACTIONS(5126), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70365] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2829), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [70216] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(2254), 1, + ACTIONS(5136), 1, + anon_sym_RBRACE, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3074), 1, + STATE(3309), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2241), 2, sym_line_comment, sym_block_comment, - [70397] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70248] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4896), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RBRACK, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4944), 1, anon_sym_LBRACE, - STATE(2256), 1, - aux_sym_macro_definition_repeat1, - STATE(3141), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(5138), 1, + anon_sym_SEMI, + STATE(1230), 1, + sym_field_declaration_list, + STATE(3005), 1, + sym_ordered_field_declaration_list, + STATE(3233), 1, + sym_where_clause, STATE(2242), 2, sym_line_comment, sym_block_comment, - [70429] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70280] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5127), 1, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, + ACTIONS(5140), 1, anon_sym_RBRACE, - STATE(2258), 1, - aux_sym_macro_definition_repeat1, - STATE(3150), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, STATE(2243), 2, sym_line_comment, sym_block_comment, - [70461] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3234), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70310] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5142), 1, anon_sym_RPAREN, - STATE(2259), 1, + STATE(2256), 1, aux_sym_macro_definition_repeat1, - STATE(3162), 1, + STATE(3239), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2244), 2, sym_line_comment, sym_block_comment, - [70493] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70342] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5142), 1, anon_sym_RBRACK, - STATE(2289), 1, + STATE(2257), 1, aux_sym_macro_definition_repeat1, - STATE(3169), 1, + STATE(3240), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2245), 2, sym_line_comment, sym_block_comment, - [70525] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70374] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5131), 1, - anon_sym_RBRACE, - STATE(2263), 1, + ACTIONS(5144), 1, + anon_sym_RPAREN, + STATE(2258), 1, aux_sym_macro_definition_repeat1, - STATE(3192), 1, + STATE(3242), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2246), 2, sym_line_comment, sym_block_comment, - [70557] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70406] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5133), 1, - anon_sym_RBRACE, - STATE(2252), 1, + ACTIONS(5144), 1, + anon_sym_RBRACK, + STATE(2259), 1, aux_sym_macro_definition_repeat1, - STATE(3047), 1, + STATE(3244), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2247), 2, sym_line_comment, sym_block_comment, - [70589] = 10, - ACTIONS(101), 1, + [70438] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5146), 1, + sym_identifier, + STATE(2248), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4733), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70460] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, - anon_sym_RBRACE, - STATE(2253), 1, + ACTIONS(5148), 1, + anon_sym_RPAREN, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3053), 1, + STATE(3049), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2248), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [70621] = 9, - ACTIONS(101), 1, + [70492] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, + anon_sym_LPAREN, + ACTIONS(5132), 1, + anon_sym_LBRACK, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(5150), 1, + anon_sym_RPAREN, + STATE(2249), 1, + aux_sym_macro_definition_repeat1, + STATE(3054), 1, + sym_macro_rule, + STATE(3574), 1, + sym_token_tree_pattern, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + [70524] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(4190), 1, + anon_sym_LBRACE, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5154), 1, + anon_sym_STAR, + STATE(2869), 1, + sym_use_list, + STATE(3225), 1, + sym_type_arguments, + ACTIONS(5152), 2, sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5137), 1, - anon_sym_RBRACE, - STATE(2249), 2, + sym_super, + STATE(2251), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70651] = 9, - ACTIONS(101), 1, + [70554] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5156), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2252), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3292), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70580] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1507), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5026), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5032), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5034), 1, sym_mutable_specifier, - ACTIONS(5139), 1, + ACTIONS(5158), 1, anon_sym_RBRACE, - STATE(2250), 2, + STATE(2253), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3234), 2, sym_field_pattern, sym_remaining_field_pattern, - [70681] = 10, - ACTIONS(101), 1, + [70610] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, + anon_sym_LPAREN, + ACTIONS(5132), 1, + anon_sym_LBRACK, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_RBRACK, + STATE(2151), 1, + aux_sym_macro_definition_repeat1, + STATE(3292), 1, + sym_macro_rule, + STATE(3574), 1, + sym_token_tree_pattern, + STATE(2254), 2, + sym_line_comment, + sym_block_comment, + [70642] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4896), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(4944), 1, anon_sym_LBRACE, - ACTIONS(5141), 1, + ACTIONS(5160), 1, anon_sym_SEMI, - STATE(1255), 1, + STATE(1148), 1, sym_field_declaration_list, - STATE(2793), 1, + STATE(2902), 1, sym_ordered_field_declaration_list, - STATE(3115), 1, + STATE(3113), 1, sym_where_clause, - STATE(2251), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - [70713] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70674] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_RBRACE, - STATE(2155), 1, + ACTIONS(5162), 1, + anon_sym_RPAREN, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3151), 1, + STATE(3253), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2252), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - [70745] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70706] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - anon_sym_RBRACE, - STATE(2155), 1, + ACTIONS(5162), 1, + anon_sym_RBRACK, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3155), 1, + STATE(3254), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2253), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - [70777] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70738] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5147), 1, + ACTIONS(5164), 1, anon_sym_RPAREN, - STATE(2155), 1, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3224), 1, + STATE(3255), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2254), 2, + STATE(2258), 2, sym_line_comment, sym_block_comment, - [70809] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70770] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(5132), 1, + anon_sym_LBRACK, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_SEMI, - STATE(1368), 1, - sym_field_declaration_list, - STATE(2933), 1, - sym_ordered_field_declaration_list, - STATE(3231), 1, - sym_where_clause, - STATE(2255), 2, + ACTIONS(5164), 1, + anon_sym_RBRACK, + STATE(2151), 1, + aux_sym_macro_definition_repeat1, + STATE(3256), 1, + sym_macro_rule, + STATE(3574), 1, + sym_token_tree_pattern, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [70841] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70802] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5147), 1, - anon_sym_RBRACK, - STATE(2155), 1, + ACTIONS(5166), 1, + anon_sym_RBRACE, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3245), 1, + STATE(3052), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2256), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - [70873] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70834] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(5153), 1, + ACTIONS(5170), 1, anon_sym_COLON, - ACTIONS(5155), 1, + ACTIONS(5172), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4490), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, + ACTIONS(5168), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2257), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, - [70901] = 10, - ACTIONS(101), 1, + [70862] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2262), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3292), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70888] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4896), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4944), 1, anon_sym_LBRACE, - ACTIONS(5157), 1, + ACTIONS(5176), 1, + anon_sym_EQ, + ACTIONS(5174), 2, anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3248), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2258), 2, + anon_sym_COMMA, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [70933] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2943), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [70916] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(2155), 1, + ACTIONS(5178), 1, + anon_sym_RBRACK, + STATE(2277), 1, aux_sym_macro_definition_repeat1, - STATE(3279), 1, + STATE(3069), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2259), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - [70965] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70948] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, + ACTIONS(5132), 1, + anon_sym_LBRACK, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5161), 1, - anon_sym_SEMI, - STATE(677), 1, - sym_field_declaration_list, - STATE(2862), 1, - sym_ordered_field_declaration_list, - STATE(3144), 1, - sym_where_clause, - STATE(2260), 2, + ACTIONS(5180), 1, + anon_sym_RBRACE, + STATE(2260), 1, + aux_sym_macro_definition_repeat1, + STATE(3090), 1, + sym_macro_rule, + STATE(3574), 1, + sym_token_tree_pattern, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [70997] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70980] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5163), 1, - anon_sym_RBRACE, - STATE(2261), 2, + ACTIONS(5156), 1, + anon_sym_COLON_COLON, + ACTIONS(5170), 1, + anon_sym_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5168), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2266), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71027] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71008] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5165), 1, - anon_sym_RBRACE, - STATE(2262), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71057] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4733), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71030] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3288), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2263), 2, - sym_line_comment, - sym_block_comment, - [71089] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1507), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5026), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5032), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5034), 1, sym_mutable_specifier, - ACTIONS(5169), 1, + ACTIONS(5184), 1, anon_sym_RBRACE, - STATE(2264), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3234), 2, sym_field_pattern, sym_remaining_field_pattern, - [71119] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71060] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1507), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5026), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5032), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5034), 1, sym_mutable_specifier, - ACTIONS(5171), 1, + ACTIONS(5186), 1, anon_sym_RBRACE, - STATE(2265), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3234), 2, sym_field_pattern, sym_remaining_field_pattern, - [71149] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71090] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5173), 1, - sym_identifier, - STATE(2266), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71171] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, + ACTIONS(4691), 1, anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5188), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5190), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5192), 1, anon_sym_RBRACK, - ACTIONS(5181), 1, - anon_sym_LBRACE, - ACTIONS(5183), 1, - anon_sym_EQ, - STATE(3490), 1, - sym_delim_token_tree, - STATE(2267), 2, - sym_line_comment, - sym_block_comment, - [71203] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(5194), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, + ACTIONS(5196), 1, anon_sym_EQ, - STATE(3415), 1, + STATE(3621), 1, sym_delim_token_tree, - STATE(2268), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - [71235] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71122] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2269), 2, - sym_line_comment, - sym_block_comment, - [71267] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(5191), 1, - anon_sym_EQ, - ACTIONS(5189), 2, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, + ACTIONS(5198), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2270), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - STATE(2831), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [71295] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3234), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71152] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, + ACTIONS(4601), 1, anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5188), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5190), 1, anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_LBRACE, - ACTIONS(5185), 1, + ACTIONS(5192), 1, anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2271), 2, - sym_line_comment, - sym_block_comment, - [71327] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5193), 1, - anon_sym_trait, - STATE(2272), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71349] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5194), 1, + anon_sym_LBRACE, + ACTIONS(5196), 1, + anon_sym_EQ, + STATE(3621), 1, + sym_delim_token_tree, + STATE(2272), 2, + sym_line_comment, + sym_block_comment, + [71184] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4703), 1, + anon_sym_COLON_COLON, + ACTIONS(5188), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5190), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5192), 1, + anon_sym_RBRACK, + ACTIONS(5194), 1, anon_sym_LBRACE, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(2277), 1, - aux_sym_macro_definition_repeat1, - STATE(3222), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(5196), 1, + anon_sym_EQ, + STATE(3621), 1, + sym_delim_token_tree, STATE(2273), 2, sym_line_comment, sym_block_comment, - [71381] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71216] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5195), 1, - anon_sym_RBRACK, - STATE(2278), 1, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(2275), 1, aux_sym_macro_definition_repeat1, - STATE(3223), 1, + STATE(3063), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2274), 2, sym_line_comment, sym_block_comment, - [71413] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71248] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_RPAREN, - STATE(2279), 1, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3225), 1, + STATE(3298), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2275), 2, sym_line_comment, sym_block_comment, - [71445] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71280] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_RBRACK, - STATE(2280), 1, + ACTIONS(5204), 1, + anon_sym_RPAREN, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3226), 1, + STATE(3322), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2276), 2, sym_line_comment, sym_block_comment, - [71477] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71312] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RPAREN, - STATE(2155), 1, + ACTIONS(5204), 1, + anon_sym_RBRACK, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3241), 1, + STATE(3324), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2277), 2, sym_line_comment, sym_block_comment, - [71509] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71344] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4190), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3242), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5154), 1, + anon_sym_STAR, + STATE(2869), 1, + sym_use_list, + STATE(3246), 1, + sym_type_arguments, + ACTIONS(5152), 2, + sym_identifier, + sym_super, STATE(2278), 2, sym_line_comment, sym_block_comment, - [71541] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71374] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(2155), 1, + ACTIONS(5206), 1, + anon_sym_RBRACE, + STATE(2151), 1, aux_sym_macro_definition_repeat1, - STATE(3243), 1, + STATE(3151), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, STATE(2279), 2, sym_line_comment, sym_block_comment, - [71573] = 10, - ACTIONS(101), 1, + [71406] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5208), 1, + anon_sym_trait, + STATE(2280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71428] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, + ACTIONS(5150), 1, anon_sym_RBRACK, - STATE(2155), 1, + STATE(2254), 1, aux_sym_macro_definition_repeat1, - STATE(3244), 1, + STATE(3056), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2280), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - [71605] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71460] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5205), 1, - anon_sym_COLON, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2281), 2, + ACTIONS(4896), 1, + anon_sym_LPAREN, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5210), 1, + anon_sym_SEMI, + STATE(730), 1, + sym_field_declaration_list, + STATE(2839), 1, + sym_ordered_field_declaration_list, + STATE(3128), 1, + sym_where_clause, + STATE(2282), 2, sym_line_comment, sym_block_comment, - [71633] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71492] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(5207), 1, + ACTIONS(5212), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4490), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2282), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, + ACTIONS(3292), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [71659] = 5, - ACTIONS(101), 1, + [71518] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(2284), 2, + sym_line_comment, + sym_block_comment, + STATE(3234), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71548] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, + ACTIONS(5216), 1, sym_identifier, - STATE(2283), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, + ACTIONS(4733), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71681] = 8, - ACTIONS(101), 1, + [71570] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, + ACTIONS(5218), 1, + anon_sym_RBRACE, + STATE(2286), 2, + sym_line_comment, + sym_block_comment, + STATE(3234), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71600] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4896), 1, + anon_sym_LPAREN, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5220), 1, + anon_sym_SEMI, + STATE(620), 1, + sym_field_declaration_list, + STATE(2961), 1, + sym_ordered_field_declaration_list, + STATE(3089), 1, + sym_where_clause, + STATE(2287), 2, + sym_line_comment, + sym_block_comment, + [71632] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4488), 1, anon_sym_DOT_DOT, - ACTIONS(5205), 1, + ACTIONS(5224), 1, anon_sym_COLON, - ACTIONS(5211), 1, + ACTIONS(5226), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4490), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, + ACTIONS(5222), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2284), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - [71709] = 7, - ACTIONS(101), 1, + [71660] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, + anon_sym_LPAREN, + ACTIONS(5132), 1, + anon_sym_LBRACK, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(5228), 1, + anon_sym_RBRACE, + STATE(2151), 1, + aux_sym_macro_definition_repeat1, + STATE(3152), 1, + sym_macro_rule, + STATE(3574), 1, + sym_token_tree_pattern, + STATE(2289), 2, + sym_line_comment, + sym_block_comment, + [71692] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4817), 1, anon_sym_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4821), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4819), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2285), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [71735] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5213), 1, - aux_sym_line_comment_token1, - ACTIONS(5215), 1, - aux_sym_line_comment_token3, - ACTIONS(5217), 1, - anon_sym_BANG2, - ACTIONS(5219), 1, - anon_sym_SLASH2, - STATE(3319), 1, - sym__inner_line_doc_comment_marker, - STATE(3333), 1, - sym__line_doc_comment_marker, - STATE(3341), 1, - sym__outer_line_doc_comment_marker, - STATE(2286), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [71767] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4494), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [71718] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5221), 1, + ACTIONS(5230), 1, anon_sym_trait, - STATE(2287), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3359), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71789] = 5, - ACTIONS(101), 1, + [71740] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, + anon_sym_LPAREN, + ACTIONS(5132), 1, + anon_sym_LBRACK, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(5178), 1, + anon_sym_RPAREN, + STATE(2276), 1, + aux_sym_macro_definition_repeat1, + STATE(3066), 1, + sym_macro_rule, + STATE(3574), 1, + sym_token_tree_pattern, + STATE(2292), 2, + sym_line_comment, + sym_block_comment, + [71772] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5223), 1, + ACTIONS(5232), 1, sym_identifier, - STATE(2288), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, + ACTIONS(4733), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71811] = 10, - ACTIONS(101), 1, + [71794] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5234), 1, + aux_sym_line_comment_token1, + ACTIONS(5236), 1, + aux_sym_line_comment_token3, + ACTIONS(5238), 1, + anon_sym_BANG2, + ACTIONS(5240), 1, + anon_sym_SLASH2, + STATE(3412), 1, + sym__outer_line_doc_comment_marker, + STATE(3532), 1, + sym__line_doc_comment_marker, + STATE(3603), 1, + sym__inner_line_doc_comment_marker, + STATE(2294), 2, + sym_line_comment, + sym_block_comment, + [71826] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, + ACTIONS(5242), 1, + anon_sym_RBRACE, + STATE(2295), 2, + sym_line_comment, + sym_block_comment, + STATE(3234), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71856] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5130), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5132), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RBRACK, - STATE(2155), 1, + ACTIONS(5244), 1, + anon_sym_RBRACE, + STATE(2289), 1, aux_sym_macro_definition_repeat1, - STATE(3284), 1, + STATE(3323), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3574), 1, sym_token_tree_pattern, - STATE(2289), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - [71843] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71888] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4697), 1, + anon_sym_COLON_COLON, + ACTIONS(5188), 1, + anon_sym_LPAREN, + ACTIONS(5190), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5225), 1, - anon_sym_SEMI, - STATE(1401), 1, - sym_declaration_list, - STATE(2969), 1, - sym_where_clause, - STATE(2290), 2, + ACTIONS(5246), 1, + anon_sym_RBRACK, + ACTIONS(5248), 1, + anon_sym_EQ, + STATE(3586), 1, + sym_delim_token_tree, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [71872] = 9, - ACTIONS(101), 1, + [71920] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(4986), 1, + anon_sym_for, + STATE(2298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71943] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5227), 1, - anon_sym_SEMI, - STATE(1242), 1, - sym_declaration_list, - STATE(2781), 1, + STATE(641), 1, + sym_enum_variant_list, + STATE(2535), 1, + sym_type_parameters, + STATE(3144), 1, sym_where_clause, - STATE(2291), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [71901] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71972] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2292), 2, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(4974), 1, + anon_sym_for, + STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_RPAREN, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [71922] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [71995] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1259), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5252), 1, + anon_sym_SEMI, + STATE(553), 1, sym_declaration_list, - STATE(2540), 1, - sym_trait_bounds, - STATE(3117), 1, + STATE(2955), 1, sym_where_clause, - STATE(2293), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, - [71951] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72024] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5229), 1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5254), 1, anon_sym_SEMI, - ACTIONS(5231), 1, - anon_sym_EQ, - STATE(2801), 1, - sym_trait_bounds, - STATE(3359), 1, + STATE(555), 1, + sym_declaration_list, + STATE(2958), 1, sym_where_clause, - STATE(2294), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [71980] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72053] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5233), 1, + ACTIONS(5256), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1373), 1, sym_declaration_list, - STATE(2811), 1, + STATE(2776), 1, sym_where_clause, - STATE(2295), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - [72009] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72082] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(5235), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(1279), 1, - sym_enum_variant_list, - STATE(2543), 1, - sym_type_parameters, - STATE(3129), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5258), 1, + anon_sym_SEMI, + STATE(1375), 1, + sym_declaration_list, + STATE(2777), 1, sym_where_clause, - STATE(2296), 2, + STATE(2304), 2, sym_line_comment, sym_block_comment, - [72038] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72111] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(1284), 1, - sym_field_declaration_list, - STATE(2545), 1, - sym_type_parameters, - STATE(3137), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5260), 1, + anon_sym_SEMI, + STATE(605), 1, + sym_declaration_list, + STATE(3048), 1, sym_where_clause, - STATE(2297), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [72067] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72140] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, + ACTIONS(4609), 1, anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5237), 1, + ACTIONS(4611), 1, anon_sym_GT, - ACTIONS(5239), 1, + ACTIONS(4613), 1, anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2869), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(2765), 1, aux_sym_type_parameters_repeat1, - STATE(2298), 2, + STATE(3026), 1, + sym_trait_bounds, + STATE(2306), 2, sym_line_comment, sym_block_comment, - [72096] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72169] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4598), 1, + ACTIONS(4643), 1, anon_sym_DOT_DOT, - STATE(2299), 2, + ACTIONS(4645), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2307), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 5, + ACTIONS(4478), 3, anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_if, - [72117] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2300), 2, - sym_line_comment, - sym_block_comment, - [72146] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72192] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2301), 2, - sym_line_comment, - sym_block_comment, - [72175] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5247), 1, + ACTIONS(5262), 1, anon_sym_RBRACK, - ACTIONS(4760), 2, + ACTIONS(4843), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2302), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, + ACTIONS(3454), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [72198] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5250), 1, - anon_sym_GT, - ACTIONS(5252), 1, - anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2772), 1, - aux_sym_type_parameters_repeat1, - STATE(2303), 2, - sym_line_comment, - sym_block_comment, - [72227] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2304), 2, - sym_line_comment, - sym_block_comment, - [72252] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72215] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5254), 1, - anon_sym_if, - STATE(3539), 1, - sym_label, - STATE(1321), 2, - sym_if_expression, - sym_block, - STATE(2305), 2, - sym_line_comment, - sym_block_comment, - [72279] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, + ACTIONS(4609), 1, anon_sym_EQ, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - ACTIONS(5256), 1, + ACTIONS(5265), 1, anon_sym_GT, - ACTIONS(5258), 1, + ACTIONS(5267), 1, anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2890), 1, + STATE(2983), 1, aux_sym_type_parameters_repeat1, - STATE(2306), 2, - sym_line_comment, - sym_block_comment, - [72308] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5260), 1, - anon_sym_SEMI, - STATE(1328), 1, - sym_declaration_list, - STATE(2892), 1, - sym_where_clause, - STATE(2307), 2, - sym_line_comment, - sym_block_comment, - [72337] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5262), 1, - anon_sym_SEMI, - STATE(1332), 1, - sym_declaration_list, - STATE(2901), 1, - sym_where_clause, - STATE(2308), 2, - sym_line_comment, - sym_block_comment, - [72366] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5264), 1, - anon_sym_SEMI, - STATE(1351), 1, - sym_declaration_list, - STATE(2921), 1, - sym_where_clause, - STATE(2309), 2, - sym_line_comment, - sym_block_comment, - [72395] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1357), 1, - sym_declaration_list, - STATE(2559), 1, - sym_trait_bounds, - STATE(3220), 1, - sym_where_clause, - STATE(2310), 2, + STATE(3026), 1, + sym_trait_bounds, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [72424] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72244] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_RBRACK, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2311), 2, + ACTIONS(3382), 1, + anon_sym_COLON, + ACTIONS(5269), 1, + anon_sym_EQ, + STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 3, - anon_sym_SEMI, + ACTIONS(3380), 4, anon_sym_PLUS, - anon_sym_DASH_GT, - [72447] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [72267] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5269), 1, - anon_sym_SEMI, - STATE(713), 1, - sym_declaration_list, - STATE(2876), 1, - sym_where_clause, - STATE(2312), 2, + ACTIONS(4629), 1, + anon_sym_DOT_DOT, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [72476] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4627), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72288] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(680), 1, - sym_declaration_list, - STATE(2683), 1, - sym_trait_bounds, - STATE(3218), 1, - sym_where_clause, - STATE(2313), 2, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5222), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [72505] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72313] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, ACTIONS(5271), 1, anon_sym_SEMI, - STATE(533), 1, + STATE(511), 1, sym_declaration_list, - STATE(3003), 1, + STATE(2878), 1, sym_where_clause, - STATE(2314), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [72534] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72342] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4622), 1, - anon_sym_DOT_DOT, - STATE(2315), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4620), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [72555] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, ACTIONS(5273), 1, anon_sym_SEMI, - STATE(550), 1, + STATE(717), 1, sym_declaration_list, - STATE(2838), 1, + STATE(2851), 1, sym_where_clause, - STATE(2316), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72584] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72371] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, ACTIONS(5275), 1, anon_sym_SEMI, - STATE(687), 1, + STATE(513), 1, sym_declaration_list, - STATE(2767), 1, + STATE(2883), 1, sym_where_clause, - STATE(2317), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - [72613] = 9, - ACTIONS(101), 1, + [72400] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(4950), 1, + anon_sym_for, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [72423] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, ACTIONS(5277), 1, anon_sym_SEMI, - STATE(552), 1, + STATE(1330), 1, sym_declaration_list, - STATE(2840), 1, + STATE(2747), 1, sym_where_clause, - STATE(2318), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [72642] = 6, - ACTIONS(101), 1, + [72452] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2318), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72471] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4565), 1, anon_sym_COLON_COLON, - ACTIONS(4887), 1, + ACTIONS(4915), 1, anon_sym_for, STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [72665] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72494] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4843), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72684] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3454), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [72515] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5279), 1, - anon_sym_SEMI, - STATE(1399), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(722), 1, sym_declaration_list, - STATE(2967), 1, + STATE(2698), 1, + sym_trait_bounds, + STATE(3059), 1, sym_where_clause, STATE(2321), 2, sym_line_comment, sym_block_comment, - [72713] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72544] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(503), 1, - sym_enum_variant_list, - STATE(2647), 1, - sym_type_parameters, - STATE(3154), 1, - sym_where_clause, + ACTIONS(969), 1, + anon_sym_DOT_DOT, STATE(2322), 2, sym_line_comment, sym_block_comment, - [72742] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(971), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72565] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5283), 1, - anon_sym_SEMI, - STATE(1405), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(1151), 1, sym_declaration_list, - STATE(2980), 1, + STATE(2526), 1, + sym_trait_bounds, + STATE(3116), 1, sym_where_clause, STATE(2323), 2, sym_line_comment, sym_block_comment, - [72771] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72594] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5285), 1, + ACTIONS(5279), 1, anon_sym_SEMI, - STATE(1407), 1, + STATE(515), 1, sym_declaration_list, - STATE(2982), 1, + STATE(2892), 1, sym_where_clause, STATE(2324), 2, sym_line_comment, sym_block_comment, - [72800] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72623] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - STATE(1442), 1, + STATE(629), 1, sym_declaration_list, - STATE(2571), 1, + STATE(2654), 1, sym_trait_bounds, - STATE(3275), 1, + STATE(3122), 1, sym_where_clause, STATE(2325), 2, sym_line_comment, sym_block_comment, - [72829] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72652] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5287), 1, - anon_sym_GT, - ACTIONS(5289), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(1507), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_ref, + ACTIONS(5034), 1, + sym_mutable_specifier, STATE(2326), 2, sym_line_comment, sym_block_comment, - [72858] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3234), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72679] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(741), 1, - sym_declaration_list, - STATE(2577), 1, - sym_trait_bounds, - STATE(3276), 1, - sym_where_clause, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5281), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2327), 2, sym_line_comment, sym_block_comment, - [72887] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72704] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5291), 1, + ACTIONS(5283), 1, anon_sym_SEMI, - STATE(736), 1, + STATE(682), 1, sym_declaration_list, - STATE(2825), 1, + STATE(2988), 1, sym_where_clause, STATE(2328), 2, sym_line_comment, sym_block_comment, - [72916] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72733] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(5281), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(693), 1, - sym_enum_variant_list, - STATE(2536), 1, - sym_type_parameters, - STATE(3255), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5285), 1, + anon_sym_SEMI, + STATE(595), 1, + sym_declaration_list, + STATE(2996), 1, sym_where_clause, STATE(2329), 2, sym_line_comment, sym_block_comment, - [72945] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72762] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5293), 1, + ACTIONS(5287), 1, anon_sym_SEMI, - STATE(1467), 1, + STATE(637), 1, sym_declaration_list, - STATE(3023), 1, + STATE(2828), 1, sym_where_clause, STATE(2330), 2, sym_line_comment, sym_block_comment, - [72974] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72791] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5289), 1, anon_sym_PLUS, - ACTIONS(5295), 1, - anon_sym_SEMI, - STATE(1469), 1, - sym_declaration_list, - STATE(3024), 1, - sym_where_clause, + ACTIONS(5291), 1, + anon_sym_GT, + ACTIONS(5293), 1, + anon_sym_COMMA, + STATE(2834), 1, + sym_trait_bounds, + STATE(2835), 1, + aux_sym_type_arguments_repeat1, STATE(2331), 2, sym_line_comment, sym_block_comment, - [73003] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72820] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5289), 1, anon_sym_PLUS, + ACTIONS(5295), 1, + anon_sym_GT, ACTIONS(5297), 1, - anon_sym_SEMI, - STATE(1104), 1, - sym_declaration_list, - STATE(2732), 1, - sym_where_clause, + anon_sym_COMMA, + STATE(2934), 1, + sym_trait_bounds, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(2332), 2, sym_line_comment, sym_block_comment, - [73032] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72849] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3148), 1, anon_sym_PLUS, - ACTIONS(5299), 1, - anon_sym_SEMI, - STATE(1106), 1, - sym_declaration_list, - STATE(2733), 1, - sym_where_clause, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_GT, + ACTIONS(5293), 1, + anon_sym_COMMA, + STATE(2834), 1, + sym_trait_bounds, + STATE(2835), 1, + aux_sym_type_arguments_repeat1, STATE(2333), 2, sym_line_comment, sym_block_comment, - [73061] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72878] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5301), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5299), 1, anon_sym_SEMI, - STATE(1108), 1, - sym_declaration_list, - STATE(2736), 1, + ACTIONS(5301), 1, + anon_sym_EQ, + STATE(2906), 1, + sym_trait_bounds, + STATE(3588), 1, sym_where_clause, STATE(2334), 2, sym_line_comment, sym_block_comment, - [73090] = 9, - ACTIONS(101), 1, + [72907] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5156), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5222), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2335), 2, + sym_line_comment, + sym_block_comment, + [72932] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5303), 1, - anon_sym_SEMI, - STATE(1110), 1, - sym_declaration_list, - STATE(2737), 1, + STATE(667), 1, + sym_enum_variant_list, + STATE(2697), 1, + sym_type_parameters, + STATE(3232), 1, sym_where_clause, - STATE(2335), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [73119] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72961] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 2, + ACTIONS(3148), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4760), 2, + ACTIONS(5016), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5247), 2, - anon_sym_RPAREN, + ACTIONS(5303), 1, + anon_sym_GT, + ACTIONS(5305), 1, anon_sym_COMMA, - STATE(2336), 2, + STATE(2830), 1, + sym_trait_bounds, + STATE(2831), 1, + aux_sym_type_arguments_repeat1, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [73142] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72990] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - STATE(2337), 2, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(5307), 1, + anon_sym_GT, + ACTIONS(5309), 1, + anon_sym_COMMA, + STATE(2801), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3292), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2338), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73169] = 9, - ACTIONS(101), 1, + [73017] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5311), 1, + anon_sym_GT, + ACTIONS(5313), 1, + anon_sym_COMMA, + STATE(2801), 1, + aux_sym_type_parameters_repeat1, + STATE(2807), 1, + sym_trait_bounds, + STATE(2913), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2339), 2, + sym_line_comment, + sym_block_comment, + [73046] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5305), 1, + ACTIONS(5315), 1, anon_sym_SEMI, - STATE(1148), 1, + STATE(1332), 1, sym_declaration_list, - STATE(2743), 1, + STATE(2769), 1, sym_where_clause, - STATE(2338), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [73198] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73075] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5307), 1, + ACTIONS(5317), 1, anon_sym_SEMI, - STATE(1150), 1, + STATE(517), 1, sym_declaration_list, - STATE(2744), 1, + STATE(2895), 1, sym_where_clause, - STATE(2339), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [73227] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73104] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2340), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4920), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [73246] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4905), 1, - anon_sym_for, - STATE(2341), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4902), 1, anon_sym_where, - [73269] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(702), 1, + sym_declaration_list, + STATE(2538), 1, + sym_trait_bounds, + STATE(3169), 1, + sym_where_clause, STATE(2342), 2, sym_line_comment, sym_block_comment, - [73294] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73133] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4586), 1, - anon_sym_GT, - ACTIONS(4588), 1, - anon_sym_COMMA, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - STATE(2907), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5319), 1, + anon_sym_if, + STATE(3607), 1, + sym_label, + STATE(1710), 2, + sym_if_expression, + sym_block, STATE(2343), 2, sym_line_comment, sym_block_comment, - [73323] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73160] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4816), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5321), 1, + anon_sym_SEMI, + STATE(1158), 1, + sym_declaration_list, + STATE(2909), 1, + sym_where_clause, STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [73344] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73189] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(973), 1, + anon_sym_DOT_DOT, STATE(2345), 2, sym_line_comment, sym_block_comment, - [73373] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(975), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73210] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4633), 1, + anon_sym_DOT_DOT, STATE(2346), 2, sym_line_comment, sym_block_comment, - [73402] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4631), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73231] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5315), 1, - anon_sym_SEMI, - STATE(717), 1, - sym_declaration_list, - STATE(2916), 1, - sym_where_clause, - STATE(2347), 2, - sym_line_comment, - sym_block_comment, - [73431] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5317), 1, - anon_sym_if, - STATE(3590), 1, - sym_label, - STATE(457), 2, - sym_if_expression, - sym_block, - STATE(2348), 2, + ACTIONS(4609), 1, + anon_sym_EQ, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5323), 1, + anon_sym_GT, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2885), 1, + aux_sym_type_parameters_repeat1, + STATE(3026), 1, + sym_trait_bounds, + STATE(2347), 2, sym_line_comment, sym_block_comment, - [73458] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73260] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - STATE(699), 1, - sym_field_declaration_list, - STATE(2566), 1, - sym_type_parameters, - STATE(3097), 1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5327), 1, + anon_sym_SEMI, + STATE(695), 1, + sym_declaration_list, + STATE(3025), 1, sym_where_clause, - STATE(2349), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [73487] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73289] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5319), 1, + ACTIONS(5329), 1, anon_sym_SEMI, - STATE(488), 1, + STATE(1315), 1, sym_declaration_list, - STATE(2886), 1, + STATE(2766), 1, sym_where_clause, - STATE(2350), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [73516] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73318] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5321), 1, + ACTIONS(5331), 1, anon_sym_SEMI, - STATE(490), 1, + STATE(1194), 1, sym_declaration_list, - STATE(2910), 1, + STATE(2972), 1, sym_where_clause, - STATE(2351), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [73545] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73347] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(3148), 1, anon_sym_PLUS, - ACTIONS(5323), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5307), 1, anon_sym_GT, - ACTIONS(5325), 1, + ACTIONS(5309), 1, anon_sym_COMMA, - STATE(2984), 1, + STATE(2801), 1, + aux_sym_type_parameters_repeat1, + STATE(2807), 1, sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, - STATE(2352), 2, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [73574] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73376] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, - anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, - STATE(2353), 2, + ACTIONS(5333), 1, + anon_sym_SEMI, + STATE(1253), 1, + sym_declaration_list, + STATE(3040), 1, + sym_where_clause, + STATE(2352), 2, sym_line_comment, sym_block_comment, - [73603] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73405] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5327), 1, - anon_sym_if, - STATE(3591), 1, - sym_label, - STATE(1773), 2, - sym_if_expression, - sym_block, - STATE(2354), 2, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5335), 1, + anon_sym_SEMI, + STATE(688), 1, + sym_declaration_list, + STATE(2997), 1, + sym_where_clause, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [73630] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73434] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5329), 1, + ACTIONS(5337), 1, anon_sym_SEMI, - STATE(494), 1, + STATE(588), 1, sym_declaration_list, - STATE(3010), 1, + STATE(2890), 1, sym_where_clause, - STATE(2355), 2, + STATE(2354), 2, sym_line_comment, sym_block_comment, - [73659] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73463] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 2, + ACTIONS(3432), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(4816), 2, + ACTIONS(4847), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5266), 2, + ACTIONS(5339), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2356), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [73682] = 9, - ACTIONS(101), 1, + [73486] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, + anon_sym_where, + STATE(618), 1, + sym_field_declaration_list, + STATE(2560), 1, + sym_type_parameters, + STATE(3101), 1, + sym_where_clause, + STATE(2356), 2, + sym_line_comment, + sym_block_comment, + [73515] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5331), 1, + ACTIONS(5342), 1, anon_sym_SEMI, - STATE(496), 1, + STATE(1317), 1, sym_declaration_list, - STATE(2745), 1, + STATE(2767), 1, sym_where_clause, STATE(2357), 2, sym_line_comment, sym_block_comment, - [73711] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73544] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5333), 1, + ACTIONS(5344), 1, anon_sym_SEMI, - STATE(606), 1, + STATE(1255), 1, sym_declaration_list, - STATE(2999), 1, + STATE(3042), 1, sym_where_clause, STATE(2358), 2, sym_line_comment, sym_block_comment, - [73740] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73573] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5335), 1, - anon_sym_SEMI, - STATE(608), 1, - sym_declaration_list, - STATE(3005), 1, - sym_where_clause, + ACTIONS(5339), 1, + anon_sym_RBRACK, + ACTIONS(4847), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2359), 2, sym_line_comment, sym_block_comment, - [73769] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3432), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [73596] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_DOT_DOT, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5346), 1, + anon_sym_LBRACE, + STATE(1466), 1, + sym_enum_variant_list, + STATE(2703), 1, + sym_type_parameters, + STATE(3241), 1, + sym_where_clause, STATE(2360), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73790] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73625] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, - anon_sym_DOT_DOT, + ACTIONS(1217), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5348), 1, + anon_sym_if, + STATE(3606), 1, + sym_label, + STATE(478), 2, + sym_if_expression, + sym_block, STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73811] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73652] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(767), 1, - anon_sym_DOT_DOT, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5350), 1, + anon_sym_SEMI, + STATE(1198), 1, + sym_declaration_list, + STATE(2979), 1, + sym_where_clause, STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73681] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(771), 1, - anon_sym_DOT_DOT, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5352), 1, + anon_sym_SEMI, + STATE(1099), 1, + sym_declaration_list, + STATE(2795), 1, + sym_where_clause, STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(773), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73853] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73710] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(643), 1, - sym_field_declaration_list, - STATE(2514), 1, - sym_type_parameters, - STATE(3114), 1, - sym_where_clause, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(4994), 1, + anon_sym_for, STATE(2364), 2, sym_line_comment, sym_block_comment, - [73882] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73733] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_EQ, STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [73905] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4930), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [73752] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5339), 1, + ACTIONS(5354), 1, anon_sym_SEMI, - STATE(565), 1, + STATE(1217), 1, sym_declaration_list, - STATE(2905), 1, + STATE(2995), 1, sym_where_clause, STATE(2366), 2, sym_line_comment, sym_block_comment, - [73934] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73781] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5341), 1, + ACTIONS(5356), 1, anon_sym_SEMI, - STATE(567), 1, + STATE(1334), 1, sym_declaration_list, - STATE(2911), 1, + STATE(2771), 1, sym_where_clause, STATE(2367), 2, sym_line_comment, sym_block_comment, - [73963] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73810] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1390), 1, - sym_enum_variant_list, - STATE(2511), 1, - sym_type_parameters, - STATE(3269), 1, - sym_where_clause, + ACTIONS(977), 1, + anon_sym_DOT_DOT, STATE(2368), 2, sym_line_comment, sym_block_comment, - [73992] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(979), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73831] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5343), 1, + ACTIONS(5358), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1139), 1, sym_declaration_list, - STATE(2787), 1, + STATE(2891), 1, sym_where_clause, STATE(2369), 2, sym_line_comment, sym_block_comment, - [74021] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73860] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5346), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5345), 1, - anon_sym_SEMI, - STATE(569), 1, - sym_declaration_list, - STATE(2918), 1, + STATE(1162), 1, + sym_enum_variant_list, + STATE(2530), 1, + sym_type_parameters, + STATE(3132), 1, sym_where_clause, STATE(2370), 2, sym_line_comment, sym_block_comment, - [74050] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73889] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3299), 2, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, + anon_sym_where, + STATE(646), 1, + sym_field_declaration_list, + STATE(2541), 1, + sym_type_parameters, + STATE(3177), 1, + sym_where_clause, STATE(2371), 2, sym_line_comment, sym_block_comment, - [74077] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73918] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, + ACTIONS(4565), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4980), 1, + anon_sym_for, STATE(2372), 2, sym_line_comment, sym_block_comment, - [74102] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(3292), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2373), 2, - sym_line_comment, - sym_block_comment, - [74131] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [73941] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2374), 2, - sym_line_comment, - sym_block_comment, - [74156] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1191), 1, - sym_field_declaration_list, - STATE(2515), 1, - sym_type_parameters, - STATE(3305), 1, - sym_where_clause, - STATE(2375), 2, + ACTIONS(5360), 1, + sym_identifier, + ACTIONS(5362), 1, + anon_sym_ref, + ACTIONS(5364), 1, + sym_mutable_specifier, + ACTIONS(5366), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [74185] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73970] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3148), 1, anon_sym_PLUS, - ACTIONS(5351), 1, - anon_sym_SEMI, - STATE(571), 1, - sym_declaration_list, - STATE(2925), 1, - sym_where_clause, - STATE(2376), 2, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5295), 1, + anon_sym_GT, + ACTIONS(5297), 1, + anon_sym_COMMA, + STATE(2934), 1, + sym_trait_bounds, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [74214] = 8, + [73999] = 8, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(5353), 1, + ACTIONS(5368), 1, anon_sym_if, - STATE(3510), 1, + STATE(3569), 1, sym_label, - STATE(377), 2, + STATE(378), 2, sym_if_expression, sym_block, - STATE(2377), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [74241] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74026] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5355), 1, + ACTIONS(5370), 1, anon_sym_SEMI, - STATE(665), 1, + STATE(1259), 1, sym_declaration_list, - STATE(2735), 1, + STATE(2911), 1, sym_where_clause, - STATE(2378), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [74270] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74055] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4565), 1, anon_sym_COLON_COLON, - ACTIONS(4967), 1, + ACTIONS(4984), 1, anon_sym_for, - STATE(2379), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74293] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74078] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4864), 1, - anon_sym_for, - STATE(2380), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, anon_sym_LBRACE, + ACTIONS(5010), 1, anon_sym_PLUS, - anon_sym_where, - [74316] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5372), 1, + anon_sym_SEMI, + STATE(1336), 1, + sym_declaration_list, + STATE(2772), 1, + sym_where_clause, + STATE(2378), 2, + sym_line_comment, + sym_block_comment, + [74107] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5357), 1, - sym_identifier, - ACTIONS(5359), 1, - anon_sym_ref, - ACTIONS(5361), 1, - sym_mutable_specifier, - ACTIONS(5363), 1, - anon_sym_move, - STATE(228), 1, - sym_closure_parameters, - STATE(2381), 2, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5374), 1, + anon_sym_SEMI, + STATE(1261), 1, + sym_declaration_list, + STATE(2748), 1, + sym_where_clause, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [74345] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74136] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4951), 1, - anon_sym_for, - STATE(2382), 2, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(1294), 1, + sym_declaration_list, + STATE(2571), 1, + sym_trait_bounds, + STATE(3282), 1, + sym_where_clause, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74368] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74165] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - ACTIONS(5365), 1, + ACTIONS(5376), 1, anon_sym_SEMI, - ACTIONS(5367), 1, + ACTIONS(5378), 1, anon_sym_EQ, - STATE(3031), 1, + STATE(2760), 1, sym_trait_bounds, - STATE(3505), 1, + STATE(3580), 1, sym_where_clause, - STATE(2383), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - [74397] = 6, - ACTIONS(101), 1, + [74194] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4843), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5262), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2382), 2, + sym_line_comment, + sym_block_comment, + [74217] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4565), 1, anon_sym_COLON_COLON, - ACTIONS(4957), 1, + ACTIONS(4988), 1, anon_sym_for, - STATE(2384), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3292), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74420] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74240] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_for, - STATE(2385), 2, + ACTIONS(4847), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3432), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - [74443] = 6, - ACTIONS(101), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [74261] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5380), 1, + anon_sym_if, + STATE(3556), 1, + sym_label, + STATE(1192), 2, + sym_if_expression, + sym_block, + STATE(2385), 2, + sym_line_comment, + sym_block_comment, + [74288] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_for, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym_field_declaration_list, + STATE(2731), 1, + sym_type_parameters, + STATE(3267), 1, + sym_where_clause, STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74466] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74317] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5382), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_declaration_list, + STATE(2877), 1, + sym_where_clause, STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74489] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74346] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5016), 1, anon_sym_COLON, - STATE(529), 1, - sym_declaration_list, - STATE(2530), 1, + ACTIONS(5289), 1, + anon_sym_PLUS, + ACTIONS(5303), 1, + anon_sym_GT, + ACTIONS(5305), 1, + anon_sym_COMMA, + STATE(2830), 1, sym_trait_bounds, - STATE(3087), 1, - sym_where_clause, + STATE(2831), 1, + aux_sym_type_arguments_repeat1, STATE(2388), 2, sym_line_comment, sym_block_comment, - [74518] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74375] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5369), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(1222), 1, + sym_declaration_list, + STATE(2551), 1, + sym_trait_bounds, + STATE(3223), 1, + sym_where_clause, STATE(2389), 2, sym_line_comment, sym_block_comment, - [74544] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74404] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5371), 1, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5156), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5281), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, STATE(2390), 2, sym_line_comment, sym_block_comment, - [74570] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74429] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(965), 1, + anon_sym_DOT_DOT, STATE(2391), 2, sym_line_comment, sym_block_comment, - [74594] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(967), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74450] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(5205), 1, + ACTIONS(4609), 1, + anon_sym_EQ, + ACTIONS(5016), 1, anon_sym_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5384), 1, + anon_sym_GT, + ACTIONS(5386), 1, + anon_sym_COMMA, + STATE(2970), 1, + aux_sym_type_parameters_repeat1, + STATE(3026), 1, + sym_trait_bounds, STATE(2392), 2, sym_line_comment, sym_block_comment, - [74618] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74479] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5375), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5388), 1, anon_sym_SEMI, - ACTIONS(5377), 1, - anon_sym_COLON, - ACTIONS(5379), 1, - anon_sym_EQ, - ACTIONS(5381), 1, - anon_sym_else, + STATE(592), 1, + sym_declaration_list, + STATE(2974), 1, + sym_where_clause, STATE(2393), 2, sym_line_comment, sym_block_comment, - [74644] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74508] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - STATE(1304), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(5390), 1, + anon_sym_SEMI, + STATE(495), 1, + sym_declaration_list, + STATE(2810), 1, + sym_where_clause, STATE(2394), 2, sym_line_comment, sym_block_comment, - [74670] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74537] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5385), 1, - sym_integer_literal, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5392), 1, + anon_sym_SEMI, + STATE(497), 1, + sym_declaration_list, + STATE(2815), 1, + sym_where_clause, STATE(2395), 2, sym_line_comment, sym_block_comment, - [74696] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74566] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1167), 1, + sym_field_declaration_list, + STATE(2532), 1, + sym_type_parameters, + STATE(3137), 1, + sym_where_clause, STATE(2396), 2, sym_line_comment, sym_block_comment, - [74720] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74595] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5387), 1, - anon_sym_SEMI, - STATE(1113), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5396), 1, + anon_sym_COLON_COLON, + ACTIONS(5398), 1, + anon_sym_as, STATE(2397), 2, sym_line_comment, sym_block_comment, - [74746] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5394), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [74617] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5389), 1, - anon_sym_SEMI, - STATE(711), 1, + ACTIONS(5400), 1, + anon_sym_move, + STATE(394), 1, sym_block, - STATE(3586), 1, + STATE(3569), 1, sym_label, STATE(2398), 2, sym_line_comment, sym_block_comment, - [74772] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74643] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5391), 1, - anon_sym_SEMI, - STATE(1126), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5307), 1, + anon_sym_GT, + ACTIONS(5309), 1, + anon_sym_COMMA, + STATE(2801), 1, + aux_sym_type_parameters_repeat1, + STATE(2807), 1, + sym_trait_bounds, STATE(2399), 2, sym_line_comment, sym_block_comment, - [74798] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74669] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(5402), 1, + anon_sym_SEMI, + STATE(670), 1, + sym_block, + STATE(3602), 1, + sym_label, STATE(2400), 2, sym_line_comment, sym_block_comment, - [74822] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74695] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4607), 1, anon_sym_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, + STATE(1940), 1, + sym_type_arguments, + STATE(2691), 1, sym_trait_bounds, STATE(2401), 2, sym_line_comment, sym_block_comment, - [74848] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74721] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1384), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(5406), 1, + anon_sym_COMMA, + STATE(2490), 1, + aux_sym_where_clause_repeat1, STATE(2402), 2, sym_line_comment, sym_block_comment, - [74874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5404), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [74743] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5408), 1, + anon_sym_STAR_SLASH, + ACTIONS(5410), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5412), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5414), 1, + sym__block_comment_content, + STATE(3204), 1, + sym__block_doc_comment_marker, STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(5393), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [74892] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74769] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5395), 1, + ACTIONS(5416), 1, anon_sym_SEMI, - STATE(1133), 1, + STATE(676), 1, sym_block, - STATE(3589), 1, + STATE(3602), 1, sym_label, STATE(2404), 2, sym_line_comment, sym_block_comment, - [74918] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74795] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1962), 1, - sym_parameters, STATE(2405), 2, sym_line_comment, sym_block_comment, - [74944] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3240), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74813] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5399), 1, + ACTIONS(4661), 1, + anon_sym_GT, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5418), 1, anon_sym_COMMA, - ACTIONS(5397), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2406), 3, + STATE(2807), 1, + sym_trait_bounds, + STATE(2984), 1, + aux_sym_type_parameters_repeat1, + STATE(2406), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [74964] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74839] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3621), 1, - anon_sym_PLUS, - ACTIONS(4756), 2, + ACTIONS(5016), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5402), 2, - anon_sym_RPAREN, + ACTIONS(5289), 1, + anon_sym_PLUS, + STATE(3259), 1, + sym_trait_bounds, + ACTIONS(5420), 2, + anon_sym_GT, anon_sym_COMMA, STATE(2407), 2, sym_line_comment, sym_block_comment, - [74986] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74863] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5405), 1, - anon_sym_SEMI, - STATE(1158), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(3148), 1, + anon_sym_PLUS, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(3259), 1, + sym_trait_bounds, + ACTIONS(5420), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2408), 2, sym_line_comment, sym_block_comment, - [75012] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74887] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(4190), 1, anon_sym_LBRACE, - ACTIONS(5407), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5424), 1, + anon_sym_STAR, + STATE(2858), 1, + sym_use_list, + ACTIONS(5422), 2, + sym_identifier, + sym_super, STATE(2409), 2, sym_line_comment, sym_block_comment, - [75038] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74911] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(4190), 1, anon_sym_LBRACE, - ACTIONS(5409), 1, - anon_sym_SEMI, - STATE(1174), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5154), 1, + anon_sym_STAR, + STATE(2869), 1, + sym_use_list, + ACTIONS(5152), 2, + sym_identifier, + sym_super, STATE(2410), 2, sym_line_comment, sym_block_comment, - [75064] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74935] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5411), 1, - anon_sym_SEMI, - STATE(637), 1, - sym_block, - STATE(3586), 1, - sym_label, + ACTIONS(5426), 1, + anon_sym_RPAREN, + ACTIONS(5428), 1, + anon_sym_COLON, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5432), 1, + anon_sym_COMMA, + STATE(2844), 1, + aux_sym_slice_pattern_repeat1, STATE(2411), 2, sym_line_comment, sym_block_comment, - [75090] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74961] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5413), 1, - anon_sym_SEMI, - STATE(1178), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5434), 1, + anon_sym_RPAREN, + ACTIONS(5437), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_parameters_repeat1, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2412), 2, sym_line_comment, sym_block_comment, - [75116] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74985] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5415), 1, - anon_sym_SEMI, - STATE(1182), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(3292), 1, + anon_sym_PLUS, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5440), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2413), 2, sym_line_comment, sym_block_comment, - [75142] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75007] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(5445), 1, + anon_sym_COMMA, + ACTIONS(5443), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1678), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2414), 2, + STATE(2414), 3, sym_line_comment, sym_block_comment, - [75168] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_where_clause_repeat1, + [75027] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(5417), 1, - anon_sym_move, - STATE(1742), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + STATE(1409), 1, sym_block, - STATE(3591), 1, + STATE(3556), 1, sym_label, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75194] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75053] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 5, + ACTIONS(5448), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [75212] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75071] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + anon_sym_SEMI, + STATE(489), 1, + sym_block, + STATE(3602), 1, + sym_label, STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 5, + [75097] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2418), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3836), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [75230] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75115] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2418), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 5, + ACTIONS(3848), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [75248] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75133] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5419), 1, - anon_sym_SEMI, - STATE(642), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2419), 2, + ACTIONS(4609), 1, + anon_sym_EQ, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(3026), 1, + sym_trait_bounds, + ACTIONS(5452), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2420), 2, sym_line_comment, sym_block_comment, - [75274] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75157] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5421), 1, - anon_sym_SEMI, - STATE(544), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5454), 1, + anon_sym_move, + STATE(1449), 1, sym_block, - STATE(3586), 1, + STATE(3556), 1, sym_label, - STATE(2420), 2, - sym_line_comment, - sym_block_comment, - [75300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4756), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [75320] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75183] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1623), 1, - sym_parameters, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(1217), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5456), 1, + anon_sym_move, + STATE(470), 1, + sym_block, + STATE(3606), 1, + sym_label, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75346] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75209] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - ACTIONS(4582), 1, - anon_sym_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(2606), 1, - sym_trait_bounds, + ACTIONS(2980), 1, + anon_sym_POUND, + ACTIONS(5458), 1, + sym_identifier, + ACTIONS(5460), 1, + sym_integer_literal, + STATE(1052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1479), 1, + sym_attribute_item, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75372] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75235] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5423), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, + ACTIONS(5430), 1, anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5462), 1, + anon_sym_SEMI, + ACTIONS(5464), 1, + anon_sym_COLON, + ACTIONS(5466), 1, + anon_sym_EQ, + ACTIONS(5468), 1, + anon_sym_else, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75394] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75261] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_SEMI, + ACTIONS(5472), 1, anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5474), 1, + anon_sym_EQ, + ACTIONS(5476), 1, + anon_sym_else, STATE(2425), 2, sym_line_comment, sym_block_comment, - [75420] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75287] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, STATE(2426), 2, sym_line_comment, sym_block_comment, - [75446] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5478), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75305] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3268), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(1067), 1, + sym_parameters, + STATE(1940), 1, + sym_type_arguments, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75470] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75331] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, + ACTIONS(3708), 1, + anon_sym_PLUS, + ACTIONS(4795), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5480), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2406), 1, - aux_sym_where_clause_repeat1, STATE(2428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [75492] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75353] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4826), 1, - anon_sym_RPAREN, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, STATE(2429), 2, sym_line_comment, sym_block_comment, - [75518] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5483), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75371] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, + ACTIONS(4881), 1, anon_sym_PIPE, + ACTIONS(5485), 1, + anon_sym_SEMI, + ACTIONS(5487), 1, + anon_sym_COLON, + ACTIONS(5489), 1, + anon_sym_EQ, + ACTIONS(5491), 1, + anon_sym_else, STATE(2430), 2, sym_line_comment, sym_block_comment, - [75542] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75397] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5442), 1, - anon_sym_SEMI, - STATE(484), 1, - sym_block, - STATE(3586), 1, - sym_label, STATE(2431), 2, sym_line_comment, sym_block_comment, - [75568] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5493), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75415] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5444), 1, - anon_sym_SEMI, - STATE(591), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5010), 1, + anon_sym_PLUS, + STATE(1655), 1, sym_block, - STATE(3586), 1, + STATE(3607), 1, sym_label, STATE(2432), 2, sym_line_comment, sym_block_comment, - [75594] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75441] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5224), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5226), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2433), 2, sym_line_comment, sym_block_comment, - [75618] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75465] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5448), 1, - anon_sym_SEMI, - ACTIONS(5450), 1, - anon_sym_COLON, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, - anon_sym_EQ, - ACTIONS(5456), 1, - anon_sym_else, STATE(2434), 2, sym_line_comment, sym_block_comment, - [75644] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3590), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75483] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(5458), 5, + ACTIONS(3602), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [75662] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75501] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, STATE(2436), 2, sym_line_comment, sym_block_comment, - [75688] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3606), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75519] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5464), 1, - anon_sym_SEMI, - STATE(1318), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5295), 1, + anon_sym_GT, + ACTIONS(5297), 1, + anon_sym_COMMA, + STATE(2934), 1, + sym_trait_bounds, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(2437), 2, sym_line_comment, sym_block_comment, - [75714] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75545] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5468), 1, + ACTIONS(5495), 1, + anon_sym_RPAREN, + ACTIONS(5497), 1, anon_sym_COMMA, - STATE(2428), 1, - aux_sym_where_clause_repeat1, + STATE(2948), 1, + aux_sym_parameters_repeat1, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(5466), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [75736] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75569] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5499), 1, + anon_sym_GT, + ACTIONS(5501), 1, + anon_sym_COMMA, + STATE(2807), 1, + sym_trait_bounds, + STATE(2887), 1, + aux_sym_type_parameters_repeat1, STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(5470), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75754] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75595] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - ACTIONS(5472), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5503), 1, + anon_sym_SEMI, + STATE(1190), 1, + sym_block, + STATE(3605), 1, + sym_label, STATE(2440), 2, sym_line_comment, sym_block_comment, - [75778] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75621] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5323), 1, + ACTIONS(4673), 1, anon_sym_GT, - ACTIONS(5325), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5505), 1, anon_sym_COMMA, - STATE(2984), 1, + STATE(2807), 1, sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, + STATE(2971), 1, + aux_sym_type_parameters_repeat1, STATE(2441), 2, sym_line_comment, sym_block_comment, - [75804] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75647] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5010), 1, + anon_sym_PLUS, + STATE(1806), 1, + sym_block, + STATE(3607), 1, + sym_label, STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(5474), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75822] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75673] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5170), 1, + anon_sym_COLON, + ACTIONS(5226), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(5476), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75840] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75697] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2444), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5478), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75858] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5480), 1, + ACTIONS(5507), 1, anon_sym_SEMI, - STATE(1458), 1, + STATE(520), 1, sym_block, - STATE(3589), 1, + STATE(3602), 1, sym_label, - STATE(2445), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, - [75884] = 4, - ACTIONS(101), 1, + [75723] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1485), 1, + anon_sym_RPAREN, + ACTIONS(5509), 1, + anon_sym_COMMA, + STATE(3030), 1, + aux_sym_parameters_repeat1, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2445), 2, + sym_line_comment, + sym_block_comment, + [75747] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5511), 1, + anon_sym_SEMI, + STATE(1249), 1, + sym_block, + STATE(3605), 1, + sym_label, STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(5482), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75902] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75773] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2888), 1, - sym_trait_bounds, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5513), 1, + anon_sym_SEMI, + STATE(533), 1, + sym_block, + STATE(3602), 1, + sym_label, STATE(2447), 2, sym_line_comment, sym_block_comment, - [75928] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75799] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5517), 1, + anon_sym_COLON_COLON, + ACTIONS(5519), 1, + anon_sym_as, STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 5, + ACTIONS(5515), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75946] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_RBRACE, + anon_sym_COMMA, + [75821] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2449), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3647), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75964] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - STATE(1683), 1, + STATE(1749), 1, sym_block, - STATE(3591), 1, + STATE(3607), 1, sym_label, - STATE(2450), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [75990] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75847] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(5486), 1, - anon_sym_move, - STATE(463), 1, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5521), 1, + anon_sym_SEMI, + STATE(1284), 1, sym_block, - STATE(3590), 1, + STATE(3605), 1, sym_label, - STATE(2451), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - [76016] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75873] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2452), 2, + ACTIONS(5398), 1, + anon_sym_as, + ACTIONS(5523), 1, + anon_sym_COLON_COLON, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 5, + ACTIONS(5394), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76034] = 4, - ACTIONS(101), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + [75895] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5010), 1, + anon_sym_PLUS, + STATE(1474), 1, + sym_block, + STATE(3556), 1, + sym_label, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + [75921] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5480), 1, + anon_sym_RBRACK, + ACTIONS(3708), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4795), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76052] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75943] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 5, + ACTIONS(3800), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76070] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75961] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 5, + ACTIONS(3804), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76088] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75979] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 5, + ACTIONS(3808), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76106] = 8, - ACTIONS(101), 1, + [75997] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5398), 1, + anon_sym_as, + ACTIONS(5525), 1, + anon_sym_COLON_COLON, + STATE(2457), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5394), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76019] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, + ACTIONS(5527), 1, anon_sym_SEMI, - STATE(616), 1, + STATE(1339), 1, sym_block, - STATE(3586), 1, + STATE(3605), 1, sym_label, - STATE(2457), 2, - sym_line_comment, - sym_block_comment, - [76132] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5492), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_as, STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(5490), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76154] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76045] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5496), 1, + ACTIONS(5529), 1, anon_sym_SEMI, - STATE(587), 1, + STATE(1352), 1, sym_block, - STATE(3586), 1, + STATE(3605), 1, sym_label, STATE(2459), 2, sym_line_comment, sym_block_comment, - [76180] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76071] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - ACTIONS(5498), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(1358), 1, + sym_block, + STATE(3605), 1, + sym_label, STATE(2460), 2, sym_line_comment, sym_block_comment, - [76204] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76097] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5533), 1, + anon_sym_SEMI, + STATE(1383), 1, + sym_block, + STATE(3605), 1, + sym_label, STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(5500), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76222] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76123] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_as, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5535), 1, + anon_sym_SEMI, + STATE(1389), 1, + sym_block, + STATE(3605), 1, + sym_label, STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76244] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76149] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5537), 1, + anon_sym_SEMI, + STATE(1399), 1, + sym_block, + STATE(3605), 1, + sym_label, STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76262] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76175] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, - anon_sym_RPAREN, - ACTIONS(5510), 1, - anon_sym_COLON, - ACTIONS(5512), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5539), 1, + anon_sym_SEMI, + STATE(1403), 1, + sym_block, + STATE(3605), 1, + sym_label, STATE(2464), 2, sym_line_comment, sym_block_comment, - [76288] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76201] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5541), 1, anon_sym_SEMI, - STATE(622), 1, + STATE(1407), 1, sym_block, - STATE(3586), 1, + STATE(3605), 1, sym_label, STATE(2465), 2, sym_line_comment, sym_block_comment, - [76314] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76227] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5516), 1, - anon_sym_SEMI, - ACTIONS(5518), 1, - anon_sym_COLON, - ACTIONS(5520), 1, - anon_sym_EQ, - ACTIONS(5522), 1, - anon_sym_else, + ACTIONS(1217), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5543), 1, + anon_sym_move, + STATE(475), 1, + sym_block, + STATE(3606), 1, + sym_label, STATE(2466), 2, sym_line_comment, sym_block_comment, - [76340] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76253] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1193), 1, + ACTIONS(5545), 1, + anon_sym_move, + STATE(1669), 1, sym_block, - STATE(3539), 1, + STATE(3607), 1, sym_label, STATE(2467), 2, sym_line_comment, sym_block_comment, - [76366] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76279] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5547), 1, + anon_sym_SEMI, + STATE(537), 1, + sym_block, + STATE(3602), 1, + sym_label, STATE(2468), 2, sym_line_comment, sym_block_comment, - [76390] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76305] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5153), 1, - anon_sym_COLON, - ACTIONS(5155), 1, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + STATE(1635), 1, + sym_parameters, + STATE(1940), 1, + sym_type_arguments, STATE(2469), 2, sym_line_comment, sym_block_comment, - [76414] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76331] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5016), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_GT, + ACTIONS(5293), 1, + anon_sym_COMMA, + STATE(2834), 1, + sym_trait_bounds, + STATE(2835), 1, + aux_sym_type_arguments_repeat1, STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(5526), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76432] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76357] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5549), 1, anon_sym_RPAREN, - ACTIONS(5530), 1, + ACTIONS(5551), 1, anon_sym_COMMA, - STATE(2822), 1, + STATE(2838), 1, aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4478), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2471), 2, sym_line_comment, sym_block_comment, - [76456] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76381] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(5532), 5, + ACTIONS(3852), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76474] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76399] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(1489), 1, anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(5553), 1, anon_sym_COMMA, - STATE(2961), 1, + STATE(2846), 1, aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4478), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2473), 2, sym_line_comment, sym_block_comment, - [76498] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76423] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5536), 1, - anon_sym_SEMI, - STATE(633), 1, - sym_block, - STATE(3586), 1, - sym_label, STATE(2474), 2, sym_line_comment, sym_block_comment, - [76524] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3856), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76441] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACK, - ACTIONS(3621), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4756), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2475), 2, sym_line_comment, sym_block_comment, - [76546] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5555), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76459] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5538), 1, - anon_sym_COLON_COLON, STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, + ACTIONS(5557), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [76568] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [76477] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5559), 1, + anon_sym_move, + STATE(1671), 1, + sym_block, + STATE(3607), 1, + sym_label, STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(5540), 5, + [76503] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5561), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76586] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76521] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2478), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(5542), 5, + ACTIONS(5563), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76604] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76539] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2479), 2, + ACTIONS(4809), 1, + anon_sym_RPAREN, + ACTIONS(5565), 1, + anon_sym_COLON, + ACTIONS(5567), 1, + anon_sym_PIPE, + ACTIONS(5569), 1, + anon_sym_COMMA, + STATE(2939), 1, + aux_sym_closure_parameters_repeat1, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(5544), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76622] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76565] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, + ACTIONS(4795), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2480), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, + ACTIONS(3708), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [76642] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76585] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(5548), 1, - anon_sym_STAR, - STATE(3000), 1, - sym_use_list, - ACTIONS(5546), 2, - sym_identifier, - sym_super, - STATE(2481), 2, - sym_line_comment, - sym_block_comment, - [76666] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, - anon_sym_RPAREN, - ACTIONS(5553), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(1940), 1, + sym_type_arguments, + STATE(1957), 1, + sym_parameters, STATE(2482), 2, sym_line_comment, sym_block_comment, - [76690] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76611] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_STAR_SLASH, - ACTIONS(5558), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5560), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5562), 1, - sym__block_comment_content, - STATE(3265), 1, - sym__block_doc_comment_marker, - STATE(2483), 2, - sym_line_comment, - sym_block_comment, - [76716] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1689), 1, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5571), 1, + anon_sym_SEMI, + STATE(563), 1, sym_block, - STATE(3591), 1, + STATE(3602), 1, sym_label, - STATE(2484), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [76742] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76637] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5564), 1, - anon_sym_SEMI, - ACTIONS(5566), 1, + ACTIONS(1487), 1, + anon_sym_RPAREN, + ACTIONS(5573), 1, + anon_sym_COMMA, + STATE(3007), 1, + aux_sym_parameters_repeat1, + ACTIONS(4478), 2, anon_sym_COLON, - ACTIONS(5568), 1, - anon_sym_EQ, - ACTIONS(5570), 1, - anon_sym_else, - STATE(2485), 2, + anon_sym_PIPE, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [76768] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76661] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5572), 1, + ACTIONS(5575), 1, anon_sym_SEMI, - STATE(1431), 1, + STATE(569), 1, sym_block, - STATE(3589), 1, + STATE(3602), 1, sym_label, - STATE(2486), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [76794] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76687] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_PLUS, - ACTIONS(4453), 2, + ACTIONS(5016), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5423), 2, - anon_sym_RPAREN, + ACTIONS(5303), 1, + anon_sym_GT, + ACTIONS(5305), 1, anon_sym_COMMA, - STATE(2487), 2, + STATE(2830), 1, + sym_trait_bounds, + STATE(2831), 1, + aux_sym_type_arguments_repeat1, + STATE(2486), 2, sym_line_comment, sym_block_comment, - [76816] = 6, - ACTIONS(101), 1, + [76713] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5577), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76731] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, + ACTIONS(5579), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [76838] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [76749] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5576), 1, - anon_sym_move, - STATE(1454), 1, - sym_block, - STATE(3539), 1, - sym_label, STATE(2489), 2, sym_line_comment, sym_block_comment, - [76864] = 8, - ACTIONS(101), 1, + ACTIONS(5581), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76767] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5583), 1, + anon_sym_COMMA, + STATE(2414), 1, + aux_sym_where_clause_repeat1, + STATE(2490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3390), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [76789] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5578), 1, + ACTIONS(5585), 1, anon_sym_SEMI, - STATE(519), 1, + STATE(609), 1, sym_block, - STATE(3586), 1, + STATE(3602), 1, sym_label, - STATE(2490), 2, - sym_line_comment, - sym_block_comment, - [76890] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1049), 1, - sym_parameters, - STATE(1931), 1, - sym_type_arguments, STATE(2491), 2, sym_line_comment, sym_block_comment, - [76916] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76815] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(5580), 1, + ACTIONS(5587), 1, anon_sym_SEMI, - STATE(574), 1, + STATE(579), 1, sym_block, - STATE(3586), 1, + STATE(3602), 1, sym_label, STATE(2492), 2, sym_line_comment, sym_block_comment, - [76942] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76841] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4609), 1, + anon_sym_EQ, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(3026), 1, + sym_trait_bounds, + ACTIONS(5589), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76960] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76865] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5591), 1, + anon_sym_SEMI, + STATE(583), 1, + sym_block, + STATE(3602), 1, + sym_label, STATE(2494), 2, sym_line_comment, sym_block_comment, - [76981] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76891] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1195), 1, + ACTIONS(5593), 1, + anon_sym_move, + STATE(1444), 1, sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, STATE(2495), 2, sym_line_comment, sym_block_comment, - [77004] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76917] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5584), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, STATE(2496), 2, sym_line_comment, sym_block_comment, - [77025] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5595), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76935] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5004), 1, anon_sym_LBRACE, - STATE(1196), 1, - sym_delim_token_tree, + ACTIONS(5597), 1, + anon_sym_SEMI, + STATE(587), 1, + sym_block, + STATE(3602), 1, + sym_label, STATE(2497), 2, sym_line_comment, sym_block_comment, - [77048] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76961] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1565), 1, - sym_type_arguments, + ACTIONS(5599), 1, + anon_sym_RPAREN, + ACTIONS(5601), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_parameters_repeat1, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2498), 2, sym_line_comment, sym_block_comment, - [77071] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76985] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1570), 1, - sym_type_arguments, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2499), 2, sym_line_comment, sym_block_comment, - [77094] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5590), 1, + ACTIONS(3292), 3, anon_sym_RPAREN, - ACTIONS(5592), 1, + anon_sym_PLUS, anon_sym_COMMA, - STATE(2989), 1, - aux_sym_tuple_pattern_repeat1, + [77005] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(5010), 1, + anon_sym_PLUS, + STATE(1441), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2500), 2, sym_line_comment, sym_block_comment, - [77117] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77031] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5594), 1, - anon_sym_RBRACK, - ACTIONS(5596), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_slice_pattern_repeat1, STATE(2501), 2, sym_line_comment, sym_block_comment, - [77140] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5603), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77049] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, STATE(2502), 2, sym_line_comment, sym_block_comment, - [77163] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5605), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77067] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, - sym_super, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(5607), 1, + anon_sym_SEMI, + ACTIONS(5609), 1, + anon_sym_COLON, + ACTIONS(5611), 1, + anon_sym_EQ, + ACTIONS(5613), 1, + anon_sym_else, STATE(2503), 2, sym_line_comment, sym_block_comment, - [77186] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, + [77093] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5440), 1, + anon_sym_RBRACK, + ACTIONS(3292), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4478), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2504), 2, + sym_line_comment, + sym_block_comment, + [77115] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(399), 1, + ACTIONS(4998), 1, + anon_sym_LBRACE, + ACTIONS(5615), 1, + anon_sym_SEMI, + STATE(1309), 1, sym_block, - STATE(3510), 1, + STATE(3605), 1, sym_label, - STATE(2504), 2, + STATE(2505), 2, sym_line_comment, sym_block_comment, - [77209] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77141] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3276), 1, anon_sym_LT2, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, + ACTIONS(5152), 1, sym_super, - STATE(3217), 1, + ACTIONS(5617), 1, + sym_identifier, + STATE(1420), 1, sym_type_arguments, - STATE(2505), 2, - sym_line_comment, - sym_block_comment, - [77232] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5606), 1, - anon_sym_RPAREN, - ACTIONS(5608), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_tuple_type_repeat1, STATE(2506), 2, sym_line_comment, sym_block_comment, - [77255] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77164] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1933), 1, - sym_type_arguments, - STATE(2604), 1, - sym_trait_bounds, STATE(2507), 2, sym_line_comment, sym_block_comment, - [77278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4292), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [77181] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(721), 1, + sym_declaration_list, + STATE(3286), 1, + sym_where_clause, STATE(2508), 2, sym_line_comment, sym_block_comment, - [77297] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77204] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1067), 1, - sym_parameters, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(5619), 1, + anon_sym_COLON_COLON, STATE(2509), 2, sym_line_comment, sym_block_comment, - [77320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4693), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77223] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_DQUOTE, - ACTIONS(5614), 2, - sym_string_content, - sym_escape_sequence, - STATE(2510), 3, + ACTIONS(5621), 1, + anon_sym_COLON_COLON, + STATE(2510), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [77339] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4687), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77242] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, - STATE(3090), 1, - sym_where_clause, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, STATE(2511), 2, sym_line_comment, sym_block_comment, - [77362] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4687), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77261] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5625), 1, + anon_sym_COLON_COLON, STATE(2512), 2, sym_line_comment, sym_block_comment, - [77385] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4687), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77280] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1258), 1, - sym_declaration_list, - STATE(3116), 1, - sym_where_clause, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(2940), 1, + aux_sym_slice_pattern_repeat1, STATE(2513), 2, sym_line_comment, sym_block_comment, - [77408] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77303] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - STATE(685), 1, - sym_field_declaration_list, - STATE(3190), 1, - sym_where_clause, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5631), 1, + anon_sym_RPAREN, + ACTIONS(5633), 1, + anon_sym_COMMA, + STATE(2944), 1, + aux_sym_slice_pattern_repeat1, STATE(2514), 2, sym_line_comment, sym_block_comment, - [77431] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77326] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym_field_declaration_list, - STATE(3119), 1, - sym_where_clause, + ACTIONS(5619), 1, + anon_sym_COLON_COLON, STATE(2515), 2, sym_line_comment, sym_block_comment, - [77454] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4737), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77345] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_COLON, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5495), 1, + anon_sym_RPAREN, + ACTIONS(5497), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_parameters_repeat1, STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [77473] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77368] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2196), 1, - sym_parameters, - STATE(3163), 1, - sym_type_parameters, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(3225), 1, + sym_type_arguments, + ACTIONS(5635), 2, + sym_identifier, + sym_super, STATE(2517), 2, sym_line_comment, sym_block_comment, - [77496] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77389] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(393), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(3246), 1, + sym_type_arguments, + ACTIONS(5635), 2, + sym_identifier, + sym_super, STATE(2518), 2, sym_line_comment, sym_block_comment, - [77519] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77410] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1287), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(5621), 1, + anon_sym_COLON_COLON, STATE(2519), 2, sym_line_comment, sym_block_comment, - [77542] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4743), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77429] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5621), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, STATE(2520), 2, sym_line_comment, sym_block_comment, - [77563] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4743), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77448] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACK, - ACTIONS(5627), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_delim_token_tree, + ACTIONS(5637), 1, + anon_sym_COLON, STATE(2521), 2, sym_line_comment, sym_block_comment, - [77586] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4881), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [77467] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, - sym_identifier, - STATE(1419), 1, - sym_type_arguments, + ACTIONS(4673), 1, + anon_sym_GT, + ACTIONS(5505), 1, + anon_sym_COMMA, + ACTIONS(5639), 1, + anon_sym_EQ, + STATE(2971), 1, + aux_sym_type_parameters_repeat1, STATE(2522), 2, sym_line_comment, sym_block_comment, - [77609] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77490] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5631), 1, - anon_sym_SEMI, - STATE(3400), 1, - sym_where_clause, + ACTIONS(5625), 1, + anon_sym_COLON_COLON, STATE(2523), 2, sym_line_comment, sym_block_comment, - [77632] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4743), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77509] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5633), 1, - anon_sym_RPAREN, - ACTIONS(5635), 1, - anon_sym_COMMA, - STATE(2857), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5641), 1, + anon_sym_SEMI, + ACTIONS(5643), 1, + anon_sym_EQ, + ACTIONS(5645), 1, + anon_sym_else, STATE(2524), 2, sym_line_comment, sym_block_comment, - [77655] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77532] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5637), 1, - anon_sym_RPAREN, - ACTIONS(5639), 1, - anon_sym_COMMA, - STATE(2864), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(628), 1, + sym_declaration_list, + STATE(3112), 1, + sym_where_clause, STATE(2525), 2, sym_line_comment, sym_block_comment, - [77678] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77555] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1210), 1, + sym_declaration_list, + STATE(3219), 1, + sym_where_clause, STATE(2526), 2, sym_line_comment, sym_block_comment, - [77701] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77578] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5604), 2, - sym_identifier, - sym_super, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5647), 1, + anon_sym_SEMI, + STATE(3378), 1, + sym_where_clause, STATE(2527), 2, sym_line_comment, sym_block_comment, - [77722] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77601] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5641), 2, - sym_identifier, - sym_super, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1221), 1, + sym_declaration_list, + STATE(3222), 1, + sym_where_clause, STATE(2528), 2, sym_line_comment, sym_block_comment, - [77743] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77624] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5641), 2, - sym_identifier, - sym_super, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(382), 1, + sym_block, + STATE(3569), 1, + sym_label, STATE(2529), 2, sym_line_comment, sym_block_comment, - [77764] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77647] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5346), 1, anon_sym_LBRACE, - STATE(582), 1, - sym_declaration_list, + STATE(1226), 1, + sym_enum_variant_list, STATE(3230), 1, sym_where_clause, STATE(2530), 2, sym_line_comment, sym_block_comment, - [77787] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77670] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(2531), 2, + ACTIONS(5649), 1, + anon_sym_DQUOTE, + ACTIONS(5651), 2, + sym_string_content, + sym_escape_sequence, + STATE(2531), 3, sym_line_comment, sym_block_comment, - [77810] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_string_literal_repeat1, + [77689] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1232), 1, + sym_field_declaration_list, + STATE(3235), 1, + sym_where_clause, STATE(2532), 2, sym_line_comment, sym_block_comment, - [77833] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77712] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5226), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(5643), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [77850] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77733] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, - STATE(2534), 2, - sym_line_comment, - sym_block_comment, - [77873] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5103), 2, + ACTIONS(5654), 1, sym_identifier, + ACTIONS(5656), 1, sym_super, - STATE(2535), 2, + STATE(3225), 1, + sym_type_arguments, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [77894] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77756] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(5281), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(745), 1, + STATE(726), 1, sym_enum_variant_list, - STATE(3159), 1, + STATE(3076), 1, sym_where_clause, - STATE(2536), 2, - sym_line_comment, - sym_block_comment, - [77917] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(2537), 2, - sym_line_comment, - sym_block_comment, - [77938] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5645), 1, - anon_sym_SEMI, - ACTIONS(5647), 1, - anon_sym_EQ, - ACTIONS(5649), 1, - anon_sym_else, - STATE(2538), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - [77961] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77779] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2539), 2, - sym_line_comment, - sym_block_comment, - [77984] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, - STATE(3215), 1, - sym_where_clause, - STATE(2540), 2, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1236), 1, + sym_block, + STATE(3556), 1, + sym_label, + STATE(2536), 2, sym_line_comment, sym_block_comment, - [78007] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77802] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5653), 1, + ACTIONS(5658), 1, anon_sym_SEMI, - STATE(3381), 1, + STATE(3492), 1, sym_where_clause, - STATE(2541), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [78030] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77825] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(1356), 1, + STATE(528), 1, sym_declaration_list, - STATE(3219), 1, + STATE(3170), 1, sym_where_clause, - STATE(2542), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [78053] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77848] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_enum_variant_list, - STATE(3229), 1, - sym_where_clause, - STATE(2543), 2, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5660), 1, + anon_sym_RPAREN, + ACTIONS(5662), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [78076] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77871] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_declaration_list, - STATE(3099), 1, - sym_where_clause, - STATE(2544), 2, + ACTIONS(1485), 1, + anon_sym_RPAREN, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5509), 1, + anon_sym_COMMA, + STATE(3030), 1, + aux_sym_parameters_repeat1, + STATE(2540), 2, sym_line_comment, sym_block_comment, - [78099] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77894] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_LBRACE, - STATE(1371), 1, + ACTIONS(4902), 1, + anon_sym_where, + STATE(732), 1, sym_field_declaration_list, - STATE(3233), 1, + STATE(3202), 1, sym_where_clause, - STATE(2545), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [78122] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77917] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2546), 2, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5397), 4, + ACTIONS(5443), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SQUOTE, - [78139] = 7, - ACTIONS(101), 1, + [77934] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(3225), 1, + sym_type_arguments, + ACTIONS(5152), 2, + sym_identifier, + sym_super, + STATE(2543), 2, + sym_line_comment, + sym_block_comment, + [77955] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1376), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2547), 2, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5654), 1, + sym_identifier, + ACTIONS(5656), 1, + sym_super, + STATE(3246), 1, + sym_type_arguments, + STATE(2544), 2, + sym_line_comment, + sym_block_comment, + [77978] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4900), 1, + anon_sym_LT, + STATE(2185), 1, + sym_parameters, + STATE(3237), 1, + sym_type_parameters, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [78162] = 7, + [78001] = 7, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(244), 1, + STATE(395), 1, sym_block, - STATE(3510), 1, + STATE(3569), 1, sym_label, - STATE(2548), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [78185] = 5, - ACTIONS(101), 1, + [78024] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5664), 1, + anon_sym_SEMI, + ACTIONS(5666), 1, + anon_sym_EQ, + ACTIONS(5668), 1, + anon_sym_else, + STATE(2547), 2, + sym_line_comment, + sym_block_comment, + [78047] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5655), 1, - anon_sym_COLON, - STATE(2549), 2, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(3246), 1, + sym_type_arguments, + ACTIONS(5152), 2, + sym_identifier, + sym_super, + STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [78204] = 5, + [78068] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5657), 1, + ACTIONS(5670), 1, aux_sym_token_repetition_pattern_token1, - STATE(2550), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(5659), 3, + ACTIONS(5672), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [78223] = 5, - ACTIONS(101), 1, + [78087] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5674), 1, + anon_sym_SEMI, + STATE(3480), 1, + sym_where_clause, + STATE(2550), 2, + sym_line_comment, + sym_block_comment, + [78110] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5661), 1, - anon_sym_in, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1279), 1, + sym_declaration_list, + STATE(3276), 1, + sym_where_clause, STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(5663), 3, - sym_self, - sym_super, - sym_crate, - [78242] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78133] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(759), 4, + ACTIONS(5676), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [78259] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78150] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2191), 1, - sym_parameters, - STATE(3228), 1, - sym_type_parameters, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5678), 1, + anon_sym_SEMI, + STATE(3504), 1, + sym_where_clause, STATE(2553), 2, sym_line_comment, sym_block_comment, - [78282] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78173] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5534), 1, - anon_sym_COMMA, - STATE(2961), 1, - aux_sym_parameters_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1293), 1, + sym_declaration_list, + STATE(3281), 1, + sym_where_clause, STATE(2554), 2, sym_line_comment, sym_block_comment, - [78305] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78196] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + ACTIONS(4190), 1, + anon_sym_LBRACE, + STATE(2951), 1, + sym_use_list, + ACTIONS(5680), 2, + sym_identifier, + sym_super, STATE(2555), 2, sym_line_comment, sym_block_comment, - [78328] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78217] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - anon_sym_for, - STATE(1931), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(1939), 1, sym_type_arguments, + STATE(2690), 1, + sym_trait_bounds, STATE(2556), 2, sym_line_comment, sym_block_comment, - [78351] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78240] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5667), 1, - anon_sym_SEMI, - ACTIONS(5669), 1, - anon_sym_EQ, - ACTIONS(5671), 1, - anon_sym_else, STATE(2557), 2, sym_line_comment, sym_block_comment, - [78374] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(955), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [78257] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5673), 1, - anon_sym_SEMI, - STATE(3479), 1, - sym_where_clause, + ACTIONS(5682), 1, + anon_sym_RPAREN, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(2977), 1, + aux_sym_tuple_type_repeat1, STATE(2558), 2, sym_line_comment, sym_block_comment, - [78397] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78280] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_declaration_list, - STATE(3271), 1, - sym_where_clause, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(389), 1, + sym_block, + STATE(3569), 1, + sym_label, STATE(2559), 2, sym_line_comment, sym_block_comment, - [78420] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78303] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5675), 1, - anon_sym_SEMI, - STATE(3500), 1, + STATE(635), 1, + sym_field_declaration_list, + STATE(3231), 1, sym_where_clause, STATE(2560), 2, sym_line_comment, sym_block_comment, - [78443] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78326] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1441), 1, - sym_declaration_list, - STATE(3274), 1, - sym_where_clause, + ACTIONS(5289), 1, + anon_sym_PLUS, STATE(2561), 2, sym_line_comment, sym_block_comment, - [78466] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5686), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [78345] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(679), 1, - sym_declaration_list, - STATE(3210), 1, - sym_where_clause, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5688), 1, + anon_sym_RPAREN, + ACTIONS(5690), 1, + anon_sym_COMMA, + STATE(3023), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2562), 2, sym_line_comment, sym_block_comment, - [78489] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78368] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_DQUOTE, - STATE(2520), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4661), 1, + anon_sym_GT, + ACTIONS(5418), 1, + anon_sym_COMMA, + ACTIONS(5639), 1, + anon_sym_EQ, + STATE(2984), 1, + aux_sym_type_parameters_repeat1, STATE(2563), 2, sym_line_comment, sym_block_comment, - [78510] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78391] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5679), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5692), 1, + anon_sym_SEMI, + STATE(3443), 1, + sym_where_clause, STATE(2564), 2, sym_line_comment, sym_block_comment, - [78531] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78414] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, + ACTIONS(5289), 1, anon_sym_PLUS, STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(5681), 3, + ACTIONS(5694), 3, anon_sym_COLON, anon_sym_GT, anon_sym_COMMA, - [78550] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - STATE(751), 1, - sym_field_declaration_list, - STATE(3286), 1, - sym_where_clause, - STATE(2566), 2, - sym_line_comment, - sym_block_comment, - [78573] = 7, + [78433] = 7, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(382), 1, + STATE(393), 1, sym_block, - STATE(3510), 1, + STATE(3569), 1, sym_label, - STATE(2567), 2, + STATE(2566), 2, sym_line_comment, sym_block_comment, - [78596] = 7, - ACTIONS(101), 1, + [78456] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5696), 1, + anon_sym_COLON_COLON, + ACTIONS(5698), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, + STATE(2567), 2, + sym_line_comment, + sym_block_comment, + [78479] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2217), 1, - sym_parameters, - STATE(3083), 1, - sym_type_parameters, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(376), 1, + sym_block, + STATE(3569), 1, + sym_label, STATE(2568), 2, sym_line_comment, sym_block_comment, - [78619] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78502] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1451), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(5683), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78638] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78525] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5685), 1, + ACTIONS(5700), 1, anon_sym_SEMI, - STATE(3598), 1, + STATE(3625), 1, sym_where_clause, STATE(2570), 2, sym_line_comment, sym_block_comment, - [78661] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78548] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4902), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(1121), 1, + STATE(1347), 1, sym_declaration_list, - STATE(3035), 1, + STATE(3050), 1, sym_where_clause, STATE(2571), 2, sym_line_comment, sym_block_comment, - [78684] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78571] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1118), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2572), 2, sym_line_comment, sym_block_comment, - [78707] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78594] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(383), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5702), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2573), 2, sym_line_comment, sym_block_comment, - [78730] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78613] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5687), 1, - anon_sym_SEMI, - STATE(3413), 1, - sym_where_clause, + ACTIONS(5704), 1, + anon_sym_LPAREN, + ACTIONS(5706), 1, + anon_sym_LBRACK, + ACTIONS(5708), 1, + anon_sym_LBRACE, + STATE(2552), 1, + sym_token_tree, STATE(2574), 2, sym_line_comment, sym_block_comment, - [78753] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78636] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5710), 1, + anon_sym_DQUOTE, + STATE(2746), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, STATE(2575), 2, sym_line_comment, sym_block_comment, - [78774] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78657] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5689), 1, - anon_sym_RPAREN, - ACTIONS(5691), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(3246), 1, + sym_type_arguments, + ACTIONS(5656), 2, + sym_identifier, + sym_super, STATE(2576), 2, sym_line_comment, sym_block_comment, - [78797] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78678] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(514), 1, - sym_declaration_list, - STATE(3221), 1, - sym_where_clause, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(2807), 1, + sym_trait_bounds, + ACTIONS(5714), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2577), 2, sym_line_comment, sym_block_comment, - [78820] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78699] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1948), 1, + ACTIONS(4900), 1, + anon_sym_LT, + STATE(2235), 1, sym_parameters, + STATE(3238), 1, + sym_type_parameters, STATE(2578), 2, sym_line_comment, sym_block_comment, - [78843] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78722] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5693), 1, - anon_sym_RPAREN, - ACTIONS(5695), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(2113), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2579), 2, sym_line_comment, sym_block_comment, - [78866] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78745] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5697), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, - anon_sym_LBRACK, - ACTIONS(5701), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - STATE(2533), 1, - sym_token_tree, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(458), 1, + sym_block, + STATE(3606), 1, + sym_label, STATE(2580), 2, sym_line_comment, sym_block_comment, - [78889] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78768] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, + ACTIONS(5016), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5703), 2, - anon_sym_RPAREN, + STATE(2807), 1, + sym_trait_bounds, + ACTIONS(5717), 2, + anon_sym_GT, anon_sym_COMMA, STATE(2581), 2, sym_line_comment, sym_block_comment, - [78908] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78789] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(473), 1, - sym_block, - STATE(3590), 1, - sym_label, + STATE(701), 1, + sym_declaration_list, + STATE(3165), 1, + sym_where_clause, STATE(2582), 2, sym_line_comment, sym_block_comment, - [78931] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78812] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(466), 1, - sym_block, - STATE(3590), 1, - sym_label, + ACTIONS(5565), 1, + anon_sym_COLON, + ACTIONS(5567), 1, + anon_sym_PIPE, + ACTIONS(5569), 1, + anon_sym_COMMA, + STATE(2939), 1, + aux_sym_closure_parameters_repeat1, STATE(2583), 2, sym_line_comment, sym_block_comment, - [78954] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78835] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_DQUOTE, - STATE(2595), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4643), 1, + anon_sym_DOT_DOT, + ACTIONS(5719), 1, + anon_sym_COLON_COLON, + ACTIONS(4645), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2584), 2, sym_line_comment, sym_block_comment, - [78975] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78856] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - STATE(2841), 1, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(454), 1, sym_block, - STATE(3589), 1, + STATE(3606), 1, sym_label, STATE(2585), 2, sym_line_comment, sym_block_comment, - [78998] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78879] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1744), 1, + STATE(459), 1, sym_block, - STATE(3591), 1, + STATE(3606), 1, sym_label, STATE(2586), 2, sym_line_comment, sym_block_comment, - [79021] = 5, - ACTIONS(3), 1, + [78902] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5707), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + STATE(2598), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5709), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79040] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78923] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5604), 2, - sym_identifier, - sym_super, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5723), 1, + anon_sym_RBRACK, + ACTIONS(5725), 1, + anon_sym_COMMA, + STATE(2897), 1, + aux_sym_slice_pattern_repeat1, STATE(2588), 2, sym_line_comment, sym_block_comment, - [79061] = 5, - ACTIONS(101), 1, + [78946] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(2796), 1, + sym_block, + STATE(3605), 1, + sym_label, + STATE(2589), 2, + sym_line_comment, + sym_block_comment, + [78969] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1673), 1, + sym_block, + STATE(3607), 1, + sym_label, + STATE(2590), 2, + sym_line_comment, + sym_block_comment, + [78992] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(3259), 1, + sym_trait_bounds, + ACTIONS(5420), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2589), 3, + STATE(2591), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79080] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79013] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(3972), 1, anon_sym_LT2, - ACTIONS(4095), 1, + ACTIONS(4110), 1, anon_sym_COLON_COLON, - ACTIONS(4846), 1, + ACTIONS(4801), 1, anon_sym_BANG, - STATE(1581), 1, + STATE(1606), 1, sym_type_arguments, - STATE(2590), 2, + STATE(2592), 2, sym_line_comment, sym_block_comment, - [79103] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79036] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(454), 1, + STATE(461), 1, sym_block, - STATE(3590), 1, + STATE(3606), 1, sym_label, - STATE(2591), 2, + STATE(2593), 2, sym_line_comment, sym_block_comment, - [79126] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79059] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5714), 1, + ACTIONS(5727), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5729), 1, anon_sym_LBRACK, - ACTIONS(5718), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - STATE(1957), 1, + STATE(1972), 1, sym_delim_token_tree, - STATE(2592), 2, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [79149] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79082] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(446), 1, + STATE(463), 1, sym_block, - STATE(3590), 1, + STATE(3606), 1, sym_label, - STATE(2593), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [79172] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79105] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(467), 1, + STATE(448), 1, sym_block, - STATE(3590), 1, + STATE(3606), 1, sym_label, - STATE(2594), 2, + STATE(2596), 2, sym_line_comment, sym_block_comment, - [79195] = 6, - ACTIONS(101), 1, + [79128] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1217), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(468), 1, + sym_block, + STATE(3606), 1, + sym_label, + STATE(2597), 2, + sym_line_comment, + sym_block_comment, + [79151] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5720), 1, + ACTIONS(5733), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2531), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5712), 2, sym_string_content, sym_escape_sequence, - STATE(2595), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - [79216] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79172] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5714), 1, + ACTIONS(5727), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5729), 1, anon_sym_LBRACK, - ACTIONS(5718), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - STATE(1959), 1, + STATE(1948), 1, sym_delim_token_tree, - STATE(2596), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [79239] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79195] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(3972), 1, anon_sym_LT2, - ACTIONS(5722), 1, + ACTIONS(5735), 1, sym_identifier, - ACTIONS(5724), 1, + ACTIONS(5737), 1, sym_super, - STATE(1568), 1, + STATE(1571), 1, sym_type_arguments, - STATE(2597), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - [79262] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79218] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(3972), 1, anon_sym_LT2, - ACTIONS(5722), 1, + ACTIONS(5735), 1, sym_identifier, - ACTIONS(5724), 1, + ACTIONS(5737), 1, sym_super, - STATE(1552), 1, + STATE(1575), 1, sym_type_arguments, - STATE(2598), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - [79285] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79241] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5152), 1, sym_super, - ACTIONS(5602), 1, + ACTIONS(5739), 1, sym_identifier, - STATE(3195), 1, + STATE(3225), 1, sym_type_arguments, - STATE(2599), 2, + STATE(2602), 2, sym_line_comment, sym_block_comment, - [79308] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79264] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5152), 1, sym_super, - ACTIONS(5602), 1, + ACTIONS(5739), 1, sym_identifier, - STATE(3217), 1, + STATE(3246), 1, sym_type_arguments, - STATE(2600), 2, + STATE(2603), 2, sym_line_comment, sym_block_comment, - [79331] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79287] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5726), 1, + ACTIONS(5741), 1, anon_sym_RPAREN, - ACTIONS(5728), 1, + ACTIONS(5743), 1, anon_sym_COMMA, - STATE(2795), 1, + STATE(2824), 1, aux_sym_tuple_type_repeat1, - STATE(2601), 2, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [79354] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79310] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3373), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2602), 2, + ACTIONS(5430), 1, + anon_sym_PIPE, + STATE(2605), 2, sym_line_comment, sym_block_comment, - [79377] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5745), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [79329] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(3276), 1, anon_sym_LT2, - STATE(1626), 1, - sym_parameters, - STATE(1933), 1, + ACTIONS(3367), 1, + anon_sym_COLON_COLON, + ACTIONS(4869), 1, + anon_sym_BANG, + STATE(1053), 1, sym_type_arguments, - STATE(2603), 2, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [79400] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79352] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2604), 2, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(1636), 1, + sym_parameters, + STATE(1939), 1, + sym_type_arguments, + STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(5730), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79417] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79375] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5732), 2, - anon_sym_GT, + ACTIONS(5747), 1, anon_sym_COMMA, - STATE(2605), 2, + ACTIONS(5745), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2608), 3, sym_line_comment, sym_block_comment, - [79438] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_slice_pattern_repeat1, + [79394] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2606), 2, + STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(5735), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3240), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - [79455] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79411] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2607), 2, - sym_line_comment, - sym_block_comment, - [79478] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3388), 1, + STATE(476), 1, sym_block, - STATE(3539), 1, + STATE(3606), 1, sym_label, - STATE(2608), 2, + STATE(2610), 2, sym_line_comment, sym_block_comment, - [79501] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79434] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(392), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2609), 2, - sym_line_comment, - sym_block_comment, - [79524] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - STATE(2610), 2, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4900), 1, + anon_sym_LT, + STATE(2226), 1, + sym_parameters, + STATE(3126), 1, + sym_type_parameters, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [79547] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79457] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_LBRACE, - ACTIONS(5739), 1, - anon_sym_for, - ACTIONS(5741), 1, - anon_sym_loop, - ACTIONS(5743), 1, - anon_sym_while, - STATE(2611), 2, + ACTIONS(5750), 1, + anon_sym_DQUOTE, + STATE(2531), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [79570] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79478] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(468), 1, + STATE(1456), 1, sym_block, - STATE(3590), 1, + STATE(3556), 1, sym_label, - STATE(2612), 2, - sym_line_comment, - sym_block_comment, - [79593] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, STATE(2613), 2, sym_line_comment, sym_block_comment, - [79616] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79501] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5446), 1, + ACTIONS(5549), 1, + anon_sym_RPAREN, + ACTIONS(5551), 1, anon_sym_COMMA, - STATE(2817), 1, + STATE(2838), 1, aux_sym_parameters_repeat1, STATE(2614), 2, sym_line_comment, sym_block_comment, - [79639] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79524] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1743), 1, + STATE(3373), 1, sym_block, - STATE(3591), 1, + STATE(3556), 1, sym_label, STATE(2615), 2, sym_line_comment, sym_block_comment, - [79662] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79547] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1745), 1, + STATE(464), 1, sym_block, - STATE(3591), 1, + STATE(3606), 1, sym_label, STATE(2616), 2, sym_line_comment, sym_block_comment, - [79685] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79570] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5745), 1, - anon_sym_DQUOTE, - STATE(2623), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5010), 1, + anon_sym_PLUS, STATE(2617), 2, sym_line_comment, sym_block_comment, - [79706] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5752), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [79589] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(5754), 1, + anon_sym_LPAREN, + ACTIONS(5756), 1, + anon_sym_LBRACK, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(462), 1, - sym_block, - STATE(3590), 1, - sym_label, + STATE(385), 1, + sym_delim_token_tree, STATE(2618), 2, sym_line_comment, sym_block_comment, - [79729] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79612] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1841), 1, - sym_block, - STATE(3591), 1, - sym_label, + ACTIONS(3276), 1, + anon_sym_LT2, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5617), 1, + sym_identifier, + STATE(1408), 1, + sym_type_arguments, STATE(2619), 2, sym_line_comment, sym_block_comment, - [79752] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79635] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, + ACTIONS(5188), 1, anon_sym_LPAREN, - ACTIONS(5749), 1, + ACTIONS(5190), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(5194), 1, anon_sym_LBRACE, - STATE(1025), 1, + STATE(1457), 1, sym_delim_token_tree, STATE(2620), 2, sym_line_comment, sym_block_comment, - [79775] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79658] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1554), 1, + STATE(1096), 1, sym_block, - STATE(3591), 1, + STATE(3556), 1, sym_label, STATE(2621), 2, sym_line_comment, sym_block_comment, - [79798] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79681] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(1489), 1, + anon_sym_RPAREN, + ACTIONS(5010), 1, anon_sym_PLUS, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_parameters_repeat1, STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(5753), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [79817] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79704] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5755), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1063), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2623), 2, sym_line_comment, sym_block_comment, - [79838] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79727] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, - anon_sym_LPAREN, - ACTIONS(5749), 1, - anon_sym_LBRACK, - ACTIONS(5751), 1, - anon_sym_LBRACE, - STATE(1026), 1, - sym_delim_token_tree, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(330), 1, + sym_block, + STATE(3569), 1, + sym_label, STATE(2624), 2, sym_line_comment, sym_block_comment, - [79861] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79750] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, - sym_identifier, - STATE(1377), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3408), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2625), 2, sym_line_comment, sym_block_comment, - [79884] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79773] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1110), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2626), 2, sym_line_comment, sym_block_comment, - [79907] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79796] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2627), 2, - sym_line_comment, - sym_block_comment, - [79930] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1769), 1, + STATE(1672), 1, sym_block, - STATE(3591), 1, + STATE(3607), 1, sym_label, - STATE(2628), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - [79953] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79819] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1775), 1, + STATE(1674), 1, sym_block, - STATE(3591), 1, + STATE(3607), 1, sym_label, - STATE(2629), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [79976] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79842] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5757), 1, + ACTIONS(5760), 1, anon_sym_DQUOTE, - STATE(2634), 1, + STATE(2636), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5712), 2, sym_string_content, sym_escape_sequence, - STATE(2630), 2, + STATE(2629), 2, sym_line_comment, sym_block_comment, - [79997] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79863] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1217), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1780), 1, + STATE(460), 1, sym_block, - STATE(3591), 1, + STATE(3606), 1, sym_label, - STATE(2631), 2, + STATE(2630), 2, sym_line_comment, sym_block_comment, - [80020] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79886] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2632), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1682), 1, + sym_block, + STATE(3607), 1, + sym_label, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [80041] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79909] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5761), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - ACTIONS(5763), 1, + ACTIONS(5764), 1, anon_sym_LBRACK, - ACTIONS(5765), 1, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(1785), 1, + STATE(1024), 1, sym_delim_token_tree, + STATE(2632), 2, + sym_line_comment, + sym_block_comment, + [79932] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1684), 1, + sym_block, + STATE(3607), 1, + sym_label, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80064] = 6, - ACTIONS(101), 1, + [79955] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1555), 1, + sym_block, + STATE(3607), 1, + sym_label, + STATE(2634), 2, + sym_line_comment, + sym_block_comment, + [79978] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1688), 1, + sym_block, + STATE(3607), 1, + sym_label, + STATE(2635), 2, + sym_line_comment, + sym_block_comment, + [80001] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, + ACTIONS(5768), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2531), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5712), 2, sym_string_content, sym_escape_sequence, - STATE(2634), 2, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [80085] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80022] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5761), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - ACTIONS(5763), 1, + ACTIONS(5764), 1, anon_sym_LBRACK, - ACTIONS(5765), 1, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(1789), 1, + STATE(1032), 1, sym_delim_token_tree, - STATE(2635), 2, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [80108] = 7, - ACTIONS(101), 1, + [80045] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1169), 1, + sym_block, + STATE(3556), 1, + sym_label, + STATE(2638), 2, + sym_line_comment, + sym_block_comment, + [80068] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5152), 1, sym_super, - ACTIONS(5769), 1, + ACTIONS(5654), 1, sym_identifier, - STATE(3195), 1, + STATE(3225), 1, sym_type_arguments, - STATE(2636), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [80131] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80091] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5152), 1, sym_super, - ACTIONS(5769), 1, + ACTIONS(5654), 1, sym_identifier, - STATE(3217), 1, + STATE(3246), 1, sym_type_arguments, - STATE(2637), 2, + STATE(2640), 2, sym_line_comment, sym_block_comment, - [80154] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80114] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3456), 1, + STATE(3411), 1, sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, - STATE(2638), 2, + STATE(2641), 2, sym_line_comment, sym_block_comment, - [80177] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80137] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, - anon_sym_RPAREN, - ACTIONS(5512), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, - STATE(2639), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1706), 1, + sym_block, + STATE(3607), 1, + sym_label, + STATE(2642), 2, sym_line_comment, sym_block_comment, - [80200] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80160] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5771), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, + ACTIONS(5770), 1, anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2640), 2, + ACTIONS(4106), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2643), 3, sym_line_comment, sym_block_comment, - [80223] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_arguments_repeat1, + [80179] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_DQUOTE, - STATE(2642), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2641), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1712), 1, + sym_block, + STATE(3607), 1, + sym_label, + STATE(2644), 2, sym_line_comment, sym_block_comment, - [80244] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80202] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, + ACTIONS(5773), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2648), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5712), 2, sym_string_content, sym_escape_sequence, - STATE(2642), 2, - sym_line_comment, - sym_block_comment, - [80265] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2643), 2, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [80288] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80223] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2644), 2, - sym_line_comment, - sym_block_comment, - [80311] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3365), 1, + STATE(1717), 1, sym_block, - STATE(3539), 1, + STATE(3607), 1, sym_label, - STATE(2645), 2, - sym_line_comment, - sym_block_comment, - [80334] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5781), 1, - anon_sym_SEMI, - ACTIONS(5783), 1, - anon_sym_EQ, - ACTIONS(5785), 1, - anon_sym_else, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80357] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80246] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, + ACTIONS(5775), 1, + anon_sym_LPAREN, + ACTIONS(5777), 1, + anon_sym_LBRACK, + ACTIONS(5779), 1, anon_sym_LBRACE, - STATE(660), 1, - sym_enum_variant_list, - STATE(3046), 1, - sym_where_clause, + STATE(1721), 1, + sym_delim_token_tree, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80380] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80269] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5781), 1, + anon_sym_DQUOTE, + STATE(2531), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80403] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80290] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(5775), 1, + anon_sym_LPAREN, + ACTIONS(5777), 1, + anon_sym_LBRACK, + ACTIONS(5779), 1, + anon_sym_LBRACE, + STATE(1724), 1, + sym_delim_token_tree, STATE(2649), 2, sym_line_comment, sym_block_comment, - [80426] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80313] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5188), 1, + anon_sym_LPAREN, + ACTIONS(5190), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_delim_token_tree, STATE(2650), 2, sym_line_comment, sym_block_comment, - [80449] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80336] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5656), 1, sym_super, - ACTIONS(5769), 1, + ACTIONS(5783), 1, sym_identifier, - STATE(3217), 1, + STATE(3225), 1, sym_type_arguments, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80472] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80359] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5656), 1, sym_super, - ACTIONS(5789), 1, + ACTIONS(5783), 1, sym_identifier, - STATE(3195), 1, + STATE(3246), 1, sym_type_arguments, STATE(2652), 2, sym_line_comment, sym_block_comment, - [80495] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80382] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3276), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5152), 1, sym_super, - ACTIONS(5789), 1, + ACTIONS(5785), 1, sym_identifier, - STATE(3217), 1, + STATE(1557), 1, sym_type_arguments, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80518] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80405] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(710), 1, + sym_declaration_list, + STATE(3320), 1, + sym_where_clause, STATE(2654), 2, sym_line_comment, sym_block_comment, - [80541] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80428] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3217), 1, + STATE(1939), 1, sym_type_arguments, + STATE(1969), 1, + sym_parameters, STATE(2655), 2, sym_line_comment, sym_block_comment, - [80564] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80451] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5787), 1, + anon_sym_DQUOTE, + STATE(2658), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, STATE(2656), 2, sym_line_comment, sym_block_comment, - [80587] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80472] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5789), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_where_clause, STATE(2657), 2, sym_line_comment, sym_block_comment, - [80610] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80495] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5791), 1, + anon_sym_DQUOTE, + STATE(2531), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, STATE(2658), 2, sym_line_comment, sym_block_comment, - [80633] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80516] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5656), 1, sym_super, ACTIONS(5793), 1, sym_identifier, - STATE(3217), 1, + STATE(3225), 1, sym_type_arguments, STATE(2659), 2, sym_line_comment, sym_block_comment, - [80656] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80539] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(528), 1, - sym_declaration_list, - STATE(3080), 1, - sym_where_clause, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5793), 1, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2660), 2, sym_line_comment, sym_block_comment, - [80679] = 5, - ACTIONS(3), 1, + [80562] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5795), 1, - aux_sym_token_repetition_pattern_token1, + anon_sym_COLON, STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(5797), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80698] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4881), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80581] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3276), 1, + anon_sym_LT2, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5785), 1, + sym_identifier, + STATE(1577), 1, + sym_type_arguments, STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(4129), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [80715] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80604] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(1487), 1, + anon_sym_RPAREN, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5573), 1, + anon_sym_COMMA, + STATE(3007), 1, + aux_sym_parameters_repeat1, STATE(2663), 2, sym_line_comment, sym_block_comment, - [80736] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80627] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, + ACTIONS(5797), 1, + anon_sym_in, STATE(2664), 2, sym_line_comment, sym_block_comment, ACTIONS(5799), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80755] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_self, + sym_super, + sym_crate, + [80646] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2197), 1, - sym_parameters, - STATE(3214), 1, - sym_type_parameters, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5635), 1, + sym_super, + ACTIONS(5801), 1, + sym_identifier, + STATE(3225), 1, + sym_type_arguments, STATE(2665), 2, sym_line_comment, sym_block_comment, - [80778] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80669] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5635), 1, + sym_super, ACTIONS(5801), 1, - anon_sym_COLON_COLON, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80797] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80692] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5803), 1, - anon_sym_in, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5783), 1, + sym_identifier, + STATE(3225), 1, + sym_type_arguments, STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(5805), 3, - sym_self, - sym_super, - sym_crate, - [80816] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80715] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5807), 1, - anon_sym_SEMI, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5811), 1, - anon_sym_else, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5783), 1, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2668), 2, sym_line_comment, sym_block_comment, - [80839] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80738] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LBRACE, - ACTIONS(5815), 1, - anon_sym_for, - ACTIONS(5817), 1, - anon_sym_loop, - ACTIONS(5819), 1, - anon_sym_while, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5803), 1, + sym_identifier, + STATE(3225), 1, + sym_type_arguments, STATE(2669), 2, sym_line_comment, sym_block_comment, - [80862] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80761] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_COLON_COLON, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5803), 1, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80881] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80784] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5823), 1, - anon_sym_RPAREN, - ACTIONS(5825), 1, - anon_sym_COMMA, - STATE(2893), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5805), 1, + sym_identifier, + STATE(3225), 1, + sym_type_arguments, STATE(2671), 2, sym_line_comment, sym_block_comment, - [80904] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80807] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5827), 1, - anon_sym_RBRACK, - ACTIONS(5829), 1, - anon_sym_COMMA, - STATE(2818), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5805), 1, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2672), 2, sym_line_comment, sym_block_comment, - [80927] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80830] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3488), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3225), 1, + sym_type_arguments, STATE(2673), 2, sym_line_comment, sym_block_comment, - [80950] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80853] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_RPAREN, - ACTIONS(5833), 1, - anon_sym_COMMA, - STATE(2752), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2674), 2, sym_line_comment, sym_block_comment, - [80973] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80876] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3567), 1, - sym_block, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3225), 1, + sym_type_arguments, STATE(2675), 2, sym_line_comment, sym_block_comment, - [80996] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80899] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3503), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81019] = 7, - ACTIONS(101), 1, + [80922] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4670), 1, - anon_sym_for, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(5809), 1, + aux_sym_token_repetition_pattern_token1, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81042] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5811), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80941] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2228), 1, - sym_parameters, - STATE(3237), 1, - sym_type_parameters, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81065] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(959), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [80958] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5430), 1, anon_sym_PIPE, + ACTIONS(5813), 1, + anon_sym_RPAREN, + ACTIONS(5815), 1, + anon_sym_COMMA, + STATE(2837), 1, + aux_sym_tuple_pattern_repeat1, STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(5835), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [81084] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80981] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - anon_sym_COMMA, - ACTIONS(5835), 2, + ACTIONS(5426), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2680), 3, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5432), 1, + anon_sym_COMMA, + STATE(2844), 1, + aux_sym_slice_pattern_repeat1, + STATE(2680), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [81103] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81004] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5156), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81025] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4900), 1, + anon_sym_LT, + STATE(2227), 1, + sym_parameters, + STATE(3226), 1, + sym_type_parameters, STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81139] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81048] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, - STATE(3282), 1, - sym_where_clause, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3433), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81162] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81071] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1269), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(5817), 1, + anon_sym_in, STATE(2684), 2, sym_line_comment, sym_block_comment, - [81185] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5819), 3, + sym_self, + sym_super, + sym_crate, + [81090] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5842), 1, - anon_sym_SEMI, - STATE(3542), 1, - sym_where_clause, + ACTIONS(5821), 1, + anon_sym_LBRACE, + ACTIONS(5823), 1, + anon_sym_for, + ACTIONS(5825), 1, + anon_sym_loop, + ACTIONS(5827), 1, + anon_sym_while, STATE(2685), 2, sym_line_comment, sym_block_comment, - [81208] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81113] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3362), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4498), 1, + anon_sym_BANG, + ACTIONS(4581), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, STATE(2686), 2, sym_line_comment, sym_block_comment, - [81231] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81136] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1218), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5829), 1, + anon_sym_RBRACK, + ACTIONS(5831), 1, + anon_sym_COMMA, + STATE(2840), 1, + aux_sym_slice_pattern_repeat1, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81254] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81159] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5844), 1, - anon_sym_DQUOTE, - STATE(2496), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5739), 1, + sym_identifier, + STATE(3225), 1, + sym_type_arguments, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81275] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81182] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2204), 1, - sym_parameters, - STATE(3253), 1, - sym_type_parameters, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5739), 1, + sym_identifier, + STATE(3246), 1, + sym_type_arguments, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81298] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81205] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1091), 1, - sym_block, - STATE(3539), 1, - sym_label, STATE(2690), 2, sym_line_comment, sym_block_comment, - [81321] = 5, - ACTIONS(3), 1, + ACTIONS(5833), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [81222] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - aux_sym_token_repetition_pattern_token1, STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(5848), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81340] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5835), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [81239] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5010), 1, + anon_sym_PLUS, STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(777), 4, - anon_sym_SEMI, + ACTIONS(5837), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81357] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_COMMA, + [81258] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5839), 1, + anon_sym_RPAREN, + ACTIONS(5841), 1, anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, + STATE(2854), 1, + aux_sym_tuple_type_repeat1, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81380] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81281] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3463), 1, + STATE(3481), 1, sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81403] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81304] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3466), 1, + STATE(372), 1, sym_block, - STATE(3539), 1, + STATE(3569), 1, sym_label, STATE(2695), 2, sym_line_comment, sym_block_comment, - [81426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81327] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4900), 1, + anon_sym_LT, + STATE(2184), 1, + sym_parameters, + STATE(3252), 1, + sym_type_parameters, STATE(2696), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81445] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81350] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1564), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5250), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(2100), 1, - sym_block, - STATE(3582), 1, - sym_label, + STATE(598), 1, + sym_enum_variant_list, + STATE(3200), 1, + sym_where_clause, STATE(2697), 2, sym_line_comment, sym_block_comment, - [81468] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81373] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5852), 1, - anon_sym_RPAREN, - ACTIONS(5854), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(657), 1, + sym_declaration_list, + STATE(3094), 1, + sym_where_clause, STATE(2698), 2, sym_line_comment, sym_block_comment, - [81491] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81396] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(465), 1, - sym_block, - STATE(3590), 1, - sym_label, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5843), 1, + anon_sym_RPAREN, + ACTIONS(5845), 1, + anon_sym_COMMA, + STATE(2873), 1, + aux_sym_slice_pattern_repeat1, STATE(2699), 2, sym_line_comment, sym_block_comment, - [81514] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81419] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3570), 1, - sym_block, + ACTIONS(3268), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(1094), 1, + sym_parameters, + STATE(1939), 1, + sym_type_arguments, STATE(2700), 2, sym_line_comment, sym_block_comment, - [81537] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81442] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3571), 1, - sym_block, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(2807), 1, + sym_trait_bounds, + ACTIONS(5847), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2701), 2, sym_line_comment, sym_block_comment, - [81560] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81463] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3471), 1, + STATE(3472), 1, sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, STATE(2702), 2, sym_line_comment, sym_block_comment, - [81583] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81486] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5346), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1206), 1, - sym_block, - STATE(3539), 1, - sym_label, + STATE(1134), 1, + sym_enum_variant_list, + STATE(3092), 1, + sym_where_clause, STATE(2703), 2, sym_line_comment, sym_block_comment, - [81606] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81509] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3548), 1, + STATE(3347), 1, sym_block, + STATE(3556), 1, + sym_label, STATE(2704), 2, sym_line_comment, sym_block_comment, - [81629] = 7, - ACTIONS(101), 1, + [81532] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, + ACTIONS(5849), 1, + aux_sym_token_repetition_pattern_token1, STATE(2705), 2, sym_line_comment, sym_block_comment, - [81652] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5851), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81551] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3506), 1, + STATE(1447), 1, sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, STATE(2706), 2, sym_line_comment, sym_block_comment, - [81675] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81574] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4468), 1, + anon_sym_LPAREN, + ACTIONS(4900), 1, + anon_sym_LT, + STATE(2205), 1, + sym_parameters, + STATE(3264), 1, + sym_type_parameters, STATE(2707), 2, sym_line_comment, sym_block_comment, - [81696] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81597] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5853), 1, + anon_sym_SEMI, + ACTIONS(5855), 1, + anon_sym_EQ, + ACTIONS(5857), 1, + anon_sym_else, STATE(2708), 2, sym_line_comment, sym_block_comment, - [81717] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81620] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, - anon_sym_LBRACE, - ACTIONS(5860), 1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4759), 1, anon_sym_for, - ACTIONS(5862), 1, - anon_sym_loop, - ACTIONS(5864), 1, - anon_sym_while, + ACTIONS(5696), 1, + anon_sym_COLON_COLON, + STATE(1940), 1, + sym_type_arguments, STATE(2709), 2, sym_line_comment, sym_block_comment, - [81740] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81643] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - ACTIONS(4848), 1, - anon_sym_BANG, - STATE(1048), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3471), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2710), 2, sym_line_comment, sym_block_comment, - [81763] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81666] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(2889), 1, - sym_use_list, - ACTIONS(5866), 2, - sym_identifier, - sym_super, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3473), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2711), 2, sym_line_comment, sym_block_comment, - [81784] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81689] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(381), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(5499), 1, + anon_sym_GT, + ACTIONS(5501), 1, + anon_sym_COMMA, + ACTIONS(5639), 1, + anon_sym_EQ, + STATE(2887), 1, + aux_sym_type_parameters_repeat1, STATE(2712), 2, sym_line_comment, sym_block_comment, - [81807] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81712] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5101), 1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5696), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5859), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, STATE(2713), 2, sym_line_comment, sym_block_comment, - [81828] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81735] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5870), 1, - anon_sym_for, - ACTIONS(5872), 1, - anon_sym_loop, - ACTIONS(5874), 1, - anon_sym_while, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3556), 1, + sym_label, + STATE(3568), 1, + sym_block, STATE(2714), 2, sym_line_comment, sym_block_comment, - [81851] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81758] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1381), 1, - sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, + STATE(3571), 1, + sym_block, STATE(2715), 2, sym_line_comment, sym_block_comment, - [81874] = 5, - ACTIONS(101), 1, + [81781] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_COLON_COLON, + ACTIONS(5861), 1, + aux_sym_token_repetition_pattern_token1, STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81893] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5863), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81800] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_delim_token_tree, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5865), 1, + anon_sym_SEMI, + ACTIONS(5867), 1, + anon_sym_EQ, + ACTIONS(5869), 1, + anon_sym_else, STATE(2717), 2, sym_line_comment, sym_block_comment, - [81916] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81823] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3556), 1, + sym_label, + STATE(3583), 1, + sym_block, STATE(2718), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81935] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81846] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5876), 1, - anon_sym_SEMI, - STATE(3441), 1, - sym_where_clause, + ACTIONS(5307), 1, + anon_sym_GT, + ACTIONS(5309), 1, + anon_sym_COMMA, + ACTIONS(5639), 1, + anon_sym_EQ, + STATE(2801), 1, + aux_sym_type_parameters_repeat1, STATE(2719), 2, sym_line_comment, sym_block_comment, - [81958] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81869] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4744), 1, - anon_sym_for, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3510), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2720), 2, sym_line_comment, sym_block_comment, - [81981] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81892] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(3384), 1, + STATE(3391), 1, sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82004] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81915] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3365), 1, anon_sym_SQUOTE, - STATE(1050), 1, + STATE(3400), 1, sym_block, - STATE(3539), 1, + STATE(3556), 1, sym_label, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82027] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81938] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1097), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82046] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81961] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5172), 1, anon_sym_COLON_COLON, - ACTIONS(5878), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82069] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81982] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5880), 1, + ACTIONS(5871), 1, + anon_sym_LBRACE, + ACTIONS(5873), 1, anon_sym_for, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(5875), 1, + anon_sym_loop, + ACTIONS(5877), 1, + anon_sym_while, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82092] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82005] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5599), 1, + anon_sym_RPAREN, + ACTIONS(5601), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_parameters_repeat1, STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82111] = 7, - ACTIONS(101), 1, + [82028] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5879), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2727), 2, + sym_line_comment, + sym_block_comment, + [82047] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, + ACTIONS(5754), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5756), 1, anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(397), 1, + STATE(391), 1, sym_delim_token_tree, - STATE(2727), 2, - sym_line_comment, - sym_block_comment, - [82134] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5882), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82157] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82070] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5884), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1150), 1, + sym_declaration_list, + STATE(3114), 1, + sym_where_clause, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82180] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82093] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1752), 1, - sym_block, - STATE(3591), 1, - sym_label, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5881), 1, + anon_sym_RPAREN, + ACTIONS(5883), 1, + anon_sym_COMMA, + STATE(2785), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2730), 2, sym_line_comment, sym_block_comment, - [82203] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82116] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_field_declaration_list, + STATE(3120), 1, + sym_where_clause, STATE(2731), 2, sym_line_comment, sym_block_comment, - ACTIONS(5886), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82219] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82139] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5888), 1, - anon_sym_SEMI, - STATE(1144), 1, - sym_declaration_list, + ACTIONS(4488), 1, + anon_sym_DOT_DOT, + ACTIONS(5212), 1, + anon_sym_COLON_COLON, + ACTIONS(4490), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2732), 2, sym_line_comment, sym_block_comment, - [82239] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82160] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, - anon_sym_SEMI, - STATE(1146), 1, - sym_declaration_list, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5696), 1, + anon_sym_COLON_COLON, + ACTIONS(5885), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, STATE(2733), 2, sym_line_comment, sym_block_comment, - [82259] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82183] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5892), 1, - anon_sym_SEMI, - ACTIONS(5894), 1, - anon_sym_RBRACK, + ACTIONS(5887), 1, + anon_sym_LBRACE, + ACTIONS(5889), 1, + anon_sym_for, + ACTIONS(5891), 1, + anon_sym_loop, + ACTIONS(5893), 1, + anon_sym_while, STATE(2734), 2, sym_line_comment, sym_block_comment, - [82279] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82206] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5896), 1, - anon_sym_SEMI, - STATE(715), 1, - sym_declaration_list, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5895), 1, + anon_sym_RPAREN, + ACTIONS(5897), 1, + anon_sym_COMMA, + STATE(2870), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2735), 2, sym_line_comment, sym_block_comment, - [82299] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82229] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5898), 1, - anon_sym_SEMI, - STATE(1152), 1, - sym_declaration_list, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(388), 1, + sym_block, + STATE(3569), 1, + sym_label, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82319] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82252] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5900), 1, - anon_sym_SEMI, - STATE(1154), 1, - sym_declaration_list, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4769), 1, + anon_sym_for, + ACTIONS(5696), 1, + anon_sym_COLON_COLON, + STATE(1940), 1, + sym_type_arguments, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82339] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82275] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, - ACTIONS(5904), 1, - anon_sym_COMMA, - STATE(2866), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5899), 1, + anon_sym_LBRACE, + ACTIONS(5901), 1, + anon_sym_for, + ACTIONS(5903), 1, + anon_sym_loop, + ACTIONS(5905), 1, + anon_sym_while, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82359] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82298] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(5908), 1, - anon_sym_EQ, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(3466), 1, + sym_block, + STATE(3556), 1, + sym_label, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82379] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82321] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5696), 1, + anon_sym_COLON_COLON, + ACTIONS(5907), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(5910), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82395] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82344] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5912), 1, - anon_sym_LPAREN, - ACTIONS(5914), 1, - anon_sym_LBRACK, - ACTIONS(5916), 1, - anon_sym_LBRACE, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5696), 1, + anon_sym_COLON_COLON, + ACTIONS(5909), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82415] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82367] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3169), 1, - anon_sym_RPAREN, - ACTIONS(5918), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5696), 1, + anon_sym_COLON_COLON, + ACTIONS(5911), 1, + anon_sym_for, + STATE(1940), 1, + sym_type_arguments, STATE(2742), 2, sym_line_comment, sym_block_comment, - [82435] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82390] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5920), 1, - anon_sym_SEMI, - STATE(1170), 1, - sym_declaration_list, + ACTIONS(4474), 1, + anon_sym_LT2, + STATE(3225), 1, + sym_type_arguments, + ACTIONS(5656), 2, + sym_identifier, + sym_super, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82455] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82411] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5922), 1, - anon_sym_SEMI, - STATE(1172), 1, - sym_declaration_list, + ACTIONS(5913), 1, + anon_sym_DQUOTE, + STATE(2612), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, STATE(2744), 2, sym_line_comment, sym_block_comment, - [82475] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82432] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5924), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5915), 1, anon_sym_SEMI, - STATE(556), 1, - sym_declaration_list, + STATE(3385), 1, + sym_where_clause, STATE(2745), 2, sym_line_comment, sym_block_comment, - [82495] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82455] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5917), 1, + anon_sym_DQUOTE, + STATE(2531), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5712), 2, + sym_string_content, + sym_escape_sequence, STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(5926), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [82511] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82476] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1592), 1, - anon_sym_GT, - ACTIONS(5928), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5919), 1, + anon_sym_SEMI, + STATE(1369), 1, + sym_declaration_list, STATE(2747), 2, sym_line_comment, sym_block_comment, - [82531] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82496] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5932), 1, - anon_sym_COLON, - ACTIONS(5930), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5921), 1, + anon_sym_SEMI, + STATE(1321), 1, + sym_declaration_list, STATE(2748), 2, sym_line_comment, sym_block_comment, - [82549] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82516] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5373), 1, - anon_sym_GT, - ACTIONS(5934), 1, + ACTIONS(985), 1, + anon_sym_RBRACK, + ACTIONS(4046), 1, anon_sym_COMMA, - STATE(2749), 3, + STATE(2643), 1, + aux_sym_arguments_repeat1, + STATE(2749), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [82567] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82536] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5937), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5923), 1, + anon_sym_SEMI, + ACTIONS(5925), 1, + anon_sym_EQ, STATE(2750), 2, sym_line_comment, sym_block_comment, - [82585] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82556] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, STATE(2751), 2, sym_line_comment, sym_block_comment, - [82605] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4885), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82572] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3039), 1, + ACTIONS(5813), 1, anon_sym_RPAREN, - ACTIONS(5939), 1, + ACTIONS(5815), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + STATE(2837), 1, + aux_sym_tuple_pattern_repeat1, STATE(2752), 2, sym_line_comment, sym_block_comment, - [82625] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82592] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, + ACTIONS(4909), 1, + anon_sym_RBRACE, + ACTIONS(5927), 1, + anon_sym_COMMA, + STATE(2816), 1, + aux_sym_field_declaration_list_repeat1, STATE(2753), 2, sym_line_comment, sym_block_comment, - [82645] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82612] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5309), 2, - anon_sym_RPAREN, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5929), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2754), 2, sym_line_comment, sym_block_comment, - [82663] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82630] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5943), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_declaration_list, STATE(2755), 2, sym_line_comment, sym_block_comment, - [82683] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4847), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82646] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 3, + ACTIONS(4851), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82699] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82662] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5945), 1, - anon_sym_move, - STATE(217), 1, - sym_closure_parameters, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5931), 1, + anon_sym_SEMI, + ACTIONS(5933), 1, + anon_sym_EQ, STATE(2757), 2, sym_line_comment, sym_block_comment, - [82719] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82682] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5947), 1, - anon_sym_SEMI, - ACTIONS(5949), 1, - anon_sym_EQ, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(5935), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2758), 2, sym_line_comment, sym_block_comment, - [82739] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82700] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2759), 2, sym_line_comment, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82755] = 5, - ACTIONS(101), 1, + ACTIONS(4853), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82716] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5937), 1, + anon_sym_SEMI, + STATE(3626), 1, + sym_where_clause, + STATE(2760), 2, + sym_line_comment, + sym_block_comment, + [82736] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5703), 2, + ACTIONS(5702), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2760), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [82773] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82754] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2761), 2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 3, + ACTIONS(4881), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82789] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82770] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5953), 1, - anon_sym_RBRACE, - ACTIONS(5955), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2762), 2, - sym_line_comment, - sym_block_comment, - [82809] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5939), 1, + anon_sym_SEMI, + ACTIONS(5941), 1, + anon_sym_EQ, STATE(2763), 2, sym_line_comment, sym_block_comment, - [82827] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82790] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5139), 1, - anon_sym_RBRACE, - ACTIONS(5957), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4845), 1, + anon_sym_LBRACE, + STATE(1939), 1, + sym_type_arguments, STATE(2764), 2, sym_line_comment, sym_block_comment, - [82847] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82810] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_COLON, - ACTIONS(5959), 2, - anon_sym_RBRACE, + ACTIONS(4669), 1, + anon_sym_GT, + ACTIONS(5943), 1, anon_sym_COMMA, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2765), 2, sym_line_comment, sym_block_comment, - [82865] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82830] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5945), 1, + anon_sym_SEMI, + STATE(1360), 1, + sym_declaration_list, STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82881] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82850] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5963), 1, + ACTIONS(5947), 1, anon_sym_SEMI, - STATE(738), 1, + STATE(1362), 1, sym_declaration_list, STATE(2767), 2, sym_line_comment, sym_block_comment, - [82901] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82870] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5967), 1, - anon_sym_COLON, - ACTIONS(5965), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5949), 1, + anon_sym_SEMI, + ACTIONS(5951), 1, + anon_sym_RBRACK, STATE(2768), 2, sym_line_comment, sym_block_comment, - [82919] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82890] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5971), 1, - anon_sym_EQ, - ACTIONS(5969), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5953), 1, + anon_sym_SEMI, + STATE(1371), 1, + sym_declaration_list, STATE(2769), 2, sym_line_comment, sym_block_comment, - [82937] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82910] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RBRACE, - ACTIONS(5975), 1, - anon_sym_COMMA, - STATE(2936), 1, - aux_sym_field_initializer_list_repeat1, STATE(2770), 2, sym_line_comment, sym_block_comment, - [82957] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4811), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82926] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, - anon_sym_RBRACE, - ACTIONS(5977), 1, - anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5955), 1, + anon_sym_SEMI, + STATE(1377), 1, + sym_declaration_list, STATE(2771), 2, sym_line_comment, sym_block_comment, - [82977] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82946] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4652), 1, - anon_sym_GT, - ACTIONS(5979), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5957), 1, + anon_sym_SEMI, + STATE(1379), 1, + sym_declaration_list, STATE(2772), 2, sym_line_comment, sym_block_comment, - [82997] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82966] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, STATE(2773), 2, sym_line_comment, sym_block_comment, - [83017] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4827), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82982] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5959), 1, + anon_sym_SEMI, + ACTIONS(5961), 1, + anon_sym_EQ, STATE(2774), 2, sym_line_comment, sym_block_comment, - [83037] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83002] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5963), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, STATE(2775), 2, sym_line_comment, sym_block_comment, - [83057] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83022] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5965), 1, + anon_sym_SEMI, + STATE(1395), 1, + sym_declaration_list, STATE(2776), 2, sym_line_comment, sym_block_comment, - ACTIONS(5981), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83073] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83042] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(4061), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5967), 1, + anon_sym_SEMI, + STATE(1397), 1, + sym_declaration_list, STATE(2777), 2, sym_line_comment, sym_block_comment, - [83093] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83062] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, STATE(2778), 2, sym_line_comment, sym_block_comment, - [83113] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4843), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83078] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(5983), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83129] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4849), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83094] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5985), 1, - anon_sym_SEMI, - ACTIONS(5987), 1, - anon_sym_RBRACK, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5969), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83149] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83114] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5989), 1, - anon_sym_SEMI, - STATE(1330), 1, - sym_declaration_list, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(2781), 2, sym_line_comment, sym_block_comment, - [83169] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4873), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83130] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, - sym_identifier, - ACTIONS(5993), 1, - anon_sym_ref, - ACTIONS(5995), 1, - sym_mutable_specifier, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(5971), 1, + anon_sym_COLON_COLON, + STATE(1204), 1, + sym_field_initializer_list, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83189] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83150] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, - anon_sym_RBRACE, - ACTIONS(5977), 1, - anon_sym_COMMA, - STATE(2832), 1, - aux_sym_enum_variant_list_repeat2, STATE(2783), 2, sym_line_comment, sym_block_comment, - [83209] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4743), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83166] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_type_arguments, STATE(2784), 2, sym_line_comment, sym_block_comment, - [83229] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4875), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83182] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5973), 1, + anon_sym_RPAREN, + ACTIONS(5975), 1, + anon_sym_COMMA, + STATE(2806), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83245] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83202] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + ACTIONS(5977), 1, anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(3096), 1, + sym_lifetime, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83265] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83222] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5997), 1, - anon_sym_SEMI, - STATE(1246), 1, - sym_declaration_list, - STATE(2787), 2, + ACTIONS(5979), 1, + anon_sym_GT, + ACTIONS(5981), 1, + anon_sym_COMMA, + STATE(2787), 3, sym_line_comment, sym_block_comment, - [83285] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_for_lifetimes_repeat1, + [83240] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + ACTIONS(5984), 1, + anon_sym_move, + STATE(221), 1, + sym_closure_parameters, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83305] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83260] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5999), 1, - anon_sym_SEMI, - ACTIONS(6001), 1, - anon_sym_EQ, STATE(2789), 2, sym_line_comment, sym_block_comment, - [83325] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83276] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(6003), 1, + ACTIONS(5499), 1, + anon_sym_GT, + ACTIONS(5501), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2887), 1, + aux_sym_type_parameters_repeat1, STATE(2790), 2, sym_line_comment, sym_block_comment, - [83345] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83296] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, - anon_sym_COMMA, - STATE(2914), 1, - aux_sym_field_declaration_list_repeat1, STATE(2791), 2, sym_line_comment, sym_block_comment, - [83365] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4803), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83312] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3472), 1, - sym_type_parameters, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4919), 1, + anon_sym_COLON_COLON, + STATE(1943), 1, + sym_type_arguments, STATE(2792), 2, sym_line_comment, sym_block_comment, - [83385] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83332] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6011), 1, - anon_sym_SEMI, - STATE(3377), 1, - sym_where_clause, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(5986), 1, + anon_sym_COMMA, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(2793), 2, sym_line_comment, sym_block_comment, - [83405] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83352] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 3, + ACTIONS(4839), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83421] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83368] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(6013), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5988), 1, + anon_sym_SEMI, + STATE(1141), 1, + sym_declaration_list, STATE(2795), 2, sym_line_comment, sym_block_comment, - [83441] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83388] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5610), 1, - anon_sym_RPAREN, - ACTIONS(6015), 1, - anon_sym_COMMA, - STATE(2796), 3, - sym_line_comment, - sym_block_comment, - aux_sym_parameters_repeat1, - [83459] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2797), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 3, + ACTIONS(1321), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83475] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83404] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5990), 2, anon_sym_RPAREN, - ACTIONS(5428), 1, anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - STATE(2798), 2, + STATE(2797), 2, sym_line_comment, sym_block_comment, - [83495] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83422] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6018), 2, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5992), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2799), 2, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [83513] = 4, - ACTIONS(101), 1, + [83440] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(5994), 1, + anon_sym_SEMI, + STATE(3559), 1, + sym_where_clause, + STATE(2799), 2, + sym_line_comment, + sym_block_comment, + [83460] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83529] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5996), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [83476] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6020), 1, - anon_sym_SEMI, - STATE(3383), 1, - sym_where_clause, + ACTIONS(4661), 1, + anon_sym_GT, + ACTIONS(5418), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2801), 2, sym_line_comment, sym_block_comment, - [83549] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83496] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5660), 1, + anon_sym_RPAREN, + ACTIONS(5662), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_tuple_pattern_repeat1, STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83565] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83516] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(5998), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, STATE(2803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83581] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83536] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, - anon_sym_RBRACE, - ACTIONS(6024), 1, - anon_sym_COMMA, - STATE(2804), 3, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6000), 1, + anon_sym_SEMI, + STATE(3584), 1, + sym_where_clause, + STATE(2804), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [83599] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83556] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - anon_sym_GT, - ACTIONS(6027), 1, + ACTIONS(5992), 1, + anon_sym_RPAREN, + ACTIONS(6002), 1, anon_sym_COMMA, - STATE(2815), 1, - aux_sym_type_arguments_repeat1, - STATE(2805), 2, + STATE(2805), 3, sym_line_comment, sym_block_comment, - [83619] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_pattern_repeat1, + [83574] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - anon_sym_GT, - ACTIONS(6027), 1, + ACTIONS(6005), 1, + anon_sym_RPAREN, + ACTIONS(6007), 1, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2806), 2, + STATE(2806), 3, sym_line_comment, sym_block_comment, - [83639] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_ordered_field_declaration_list_repeat1, + [83592] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6029), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2807), 2, sym_line_comment, sym_block_comment, - [83657] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6010), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [83608] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, + ACTIONS(6012), 1, + anon_sym_AMP_AMP, + ACTIONS(4328), 2, anon_sym_LBRACE, - ACTIONS(6031), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, + anon_sym_SQUOTE, STATE(2808), 2, sym_line_comment, sym_block_comment, - [83677] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83626] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6014), 1, + anon_sym_SEMI, + ACTIONS(6016), 1, + anon_sym_RBRACK, STATE(2809), 2, sym_line_comment, sym_block_comment, - [83697] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83646] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2947), 1, - anon_sym_RPAREN, - ACTIONS(6033), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6018), 1, + anon_sym_SEMI, + STATE(539), 1, + sym_declaration_list, STATE(2810), 2, sym_line_comment, sym_block_comment, - [83717] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83666] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6035), 1, - anon_sym_SEMI, - STATE(1354), 1, - sym_declaration_list, + ACTIONS(6020), 1, + anon_sym_RBRACE, + ACTIONS(6022), 1, + anon_sym_COMMA, + STATE(2915), 1, + aux_sym_field_initializer_list_repeat1, STATE(2811), 2, sym_line_comment, sym_block_comment, - [83737] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83686] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, + ACTIONS(3276), 1, + anon_sym_LT2, + ACTIONS(4992), 1, + anon_sym_COLON_COLON, + STATE(1053), 1, + sym_type_arguments, STATE(2812), 2, sym_line_comment, sym_block_comment, - [83757] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83706] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6037), 1, - anon_sym_SEMI, - STATE(3320), 1, - sym_where_clause, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6024), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2813), 2, sym_line_comment, sym_block_comment, - [83777] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83724] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, - anon_sym_RBRACE, - ACTIONS(6041), 1, - anon_sym_COMMA, - STATE(2992), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6026), 1, + anon_sym_SEMI, + STATE(1164), 1, + sym_declaration_list, STATE(2814), 2, sym_line_comment, sym_block_comment, - [83797] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83744] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1594), 1, - anon_sym_GT, - ACTIONS(6043), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6028), 1, + anon_sym_SEMI, + STATE(541), 1, + sym_declaration_list, STATE(2815), 2, sym_line_comment, sym_block_comment, - [83817] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83764] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(2604), 1, - sym_trait_bounds, - STATE(2816), 2, + ACTIONS(6030), 1, + anon_sym_RBRACE, + ACTIONS(6032), 1, + anon_sym_COMMA, + STATE(2816), 3, sym_line_comment, sym_block_comment, - [83837] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_declaration_list_repeat1, + [83782] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1468), 1, - anon_sym_RPAREN, - ACTIONS(6045), 1, + ACTIONS(4661), 1, + anon_sym_GT, + ACTIONS(5418), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + STATE(2984), 1, + aux_sym_type_parameters_repeat1, STATE(2817), 2, sym_line_comment, sym_block_comment, - [83857] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83802] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3015), 1, - anon_sym_RBRACK, - ACTIONS(6047), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, STATE(2818), 2, sym_line_comment, sym_block_comment, - [83877] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4829), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83818] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(6049), 1, - anon_sym_GT, - ACTIONS(6051), 1, - anon_sym_as, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6035), 1, + anon_sym_SEMI, + STATE(751), 1, + sym_declaration_list, STATE(2819), 2, sym_line_comment, sym_block_comment, - [83897] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83838] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2820), 2, sym_line_comment, sym_block_comment, - ACTIONS(6053), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83913] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4831), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83854] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4854), 1, - anon_sym_RBRACE, - ACTIONS(6055), 1, - anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, STATE(2821), 2, sym_line_comment, sym_block_comment, - [83933] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4833), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83870] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, + ACTIONS(6037), 1, + anon_sym_RBRACE, + ACTIONS(6039), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2822), 2, + STATE(2822), 3, sym_line_comment, sym_block_comment, - [83953] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_variant_list_repeat2, + [83888] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(4181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, STATE(2823), 2, sym_line_comment, sym_block_comment, - [83971] = 6, - ACTIONS(27), 1, + ACTIONS(4835), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [83904] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6059), 1, - anon_sym_move, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(3194), 1, + anon_sym_RPAREN, + ACTIONS(6042), 1, + anon_sym_COMMA, + STATE(2884), 1, + aux_sym_tuple_type_repeat1, STATE(2824), 2, sym_line_comment, sym_block_comment, - [83991] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83924] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6061), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, + ACTIONS(4960), 1, + anon_sym_RBRACE, + ACTIONS(6044), 1, + anon_sym_COMMA, + STATE(2816), 1, + aux_sym_field_declaration_list_repeat1, STATE(2825), 2, sym_line_comment, sym_block_comment, - [84011] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83944] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6063), 1, - anon_sym_SEMI, - STATE(3404), 1, - sym_where_clause, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(6046), 1, + anon_sym_EQ, + STATE(3479), 1, + sym_type_parameters, STATE(2826), 2, sym_line_comment, sym_block_comment, - [84031] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83964] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6067), 1, - anon_sym_COLON, - ACTIONS(6065), 2, - anon_sym_RBRACE, + ACTIONS(5549), 1, + anon_sym_RPAREN, + ACTIONS(5551), 1, anon_sym_COMMA, + STATE(2838), 1, + aux_sym_parameters_repeat1, STATE(2827), 2, sym_line_comment, sym_block_comment, - [84049] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83984] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, - ACTIONS(5592), 1, - anon_sym_COMMA, - STATE(2989), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6048), 1, + anon_sym_SEMI, + STATE(719), 1, + sym_declaration_list, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84069] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84004] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6069), 1, - anon_sym_SEMI, - ACTIONS(6071), 1, + ACTIONS(6052), 1, anon_sym_EQ, + ACTIONS(6050), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84089] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84022] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(4073), 1, + ACTIONS(1611), 1, + anon_sym_GT, + ACTIONS(6054), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2889), 1, + aux_sym_type_arguments_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84109] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84042] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6075), 1, - anon_sym_EQ, - ACTIONS(6073), 2, - anon_sym_RBRACE, + ACTIONS(1611), 1, + anon_sym_GT, + ACTIONS(6054), 1, anon_sym_COMMA, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84127] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84062] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, + ACTIONS(4917), 1, anon_sym_RBRACE, - ACTIONS(6077), 1, + ACTIONS(6056), 1, anon_sym_COMMA, - STATE(2804), 1, + STATE(2822), 1, aux_sym_enum_variant_list_repeat2, STATE(2832), 2, sym_line_comment, sym_block_comment, - [84147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84082] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6079), 1, - anon_sym_SEMI, - STATE(3357), 1, - sym_where_clause, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84167] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6058), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84098] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6081), 1, - sym_identifier, - ACTIONS(6083), 1, - anon_sym_await, - ACTIONS(6085), 1, - sym_integer_literal, + ACTIONS(1623), 1, + anon_sym_GT, + ACTIONS(6060), 1, + anon_sym_COMMA, + STATE(2845), 1, + aux_sym_type_arguments_repeat1, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84187] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84118] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6091), 1, - anon_sym_LBRACE, + ACTIONS(1623), 1, + anon_sym_GT, + ACTIONS(6060), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, STATE(2835), 2, sym_line_comment, sym_block_comment, - [84207] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84138] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, - STATE(1581), 1, - sym_type_arguments, + ACTIONS(987), 1, + anon_sym_RBRACK, + ACTIONS(4102), 1, + anon_sym_COMMA, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(2836), 2, sym_line_comment, sym_block_comment, - [84227] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84158] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6093), 2, - anon_sym_GT, + ACTIONS(2976), 1, + anon_sym_RPAREN, + ACTIONS(6062), 1, anon_sym_COMMA, + STATE(2805), 1, + aux_sym_tuple_pattern_repeat1, STATE(2837), 2, sym_line_comment, sym_block_comment, - [84245] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84178] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6095), 1, - anon_sym_SEMI, - STATE(593), 1, - sym_declaration_list, + ACTIONS(1489), 1, + anon_sym_RPAREN, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2987), 1, + aux_sym_parameters_repeat1, STATE(2838), 2, sym_line_comment, sym_block_comment, - [84265] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84198] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3037), 1, - anon_sym_RPAREN, - ACTIONS(6097), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6064), 1, + anon_sym_SEMI, + STATE(3435), 1, + sym_where_clause, STATE(2839), 2, sym_line_comment, sym_block_comment, - [84285] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84218] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6099), 1, - anon_sym_SEMI, - STATE(595), 1, - sym_declaration_list, + ACTIONS(3048), 1, + anon_sym_RBRACK, + ACTIONS(6066), 1, + anon_sym_COMMA, + STATE(2608), 1, + aux_sym_slice_pattern_repeat1, STATE(2840), 2, sym_line_comment, sym_block_comment, - [84305] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84238] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1489), 1, + anon_sym_RPAREN, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_parameters_repeat1, STATE(2841), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1366), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84321] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_line_comment, + sym_block_comment, + [84258] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6068), 1, + anon_sym_SEMI, + ACTIONS(6070), 1, + anon_sym_EQ, STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(6101), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84337] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84278] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2843), 2, sym_line_comment, sym_block_comment, - ACTIONS(6103), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84353] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4807), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84294] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 1, - anon_sym_RBRACE, - ACTIONS(6107), 1, + ACTIONS(3052), 1, + anon_sym_RPAREN, + ACTIONS(6072), 1, anon_sym_COMMA, - STATE(2844), 3, + STATE(2608), 1, + aux_sym_slice_pattern_repeat1, + STATE(2844), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [84371] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84314] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1625), 1, + anon_sym_GT, + ACTIONS(6074), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, STATE(2845), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84387] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84334] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1458), 1, + ACTIONS(1479), 1, anon_sym_RPAREN, - ACTIONS(6110), 1, + ACTIONS(6076), 1, anon_sym_COMMA, - STATE(2796), 1, + STATE(2987), 1, aux_sym_parameters_repeat1, STATE(2846), 2, sym_line_comment, sym_block_comment, - [84407] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84354] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5759), 2, - anon_sym_GT, + ACTIONS(6080), 1, + anon_sym_COLON, + ACTIONS(6078), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2847), 2, sym_line_comment, sym_block_comment, - [84425] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84372] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6012), 1, + anon_sym_AMP_AMP, + ACTIONS(6082), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(2848), 2, sym_line_comment, sym_block_comment, - ACTIONS(6112), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84441] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84390] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(6114), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, STATE(2849), 2, sym_line_comment, sym_block_comment, - [84461] = 6, - ACTIONS(27), 1, + ACTIONS(4809), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [84406] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6116), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(6084), 1, + anon_sym_RBRACE, + ACTIONS(6086), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_struct_pattern_repeat1, STATE(2850), 2, sym_line_comment, sym_block_comment, - [84481] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84426] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - ACTIONS(6120), 1, - anon_sym_COMMA, - STATE(2821), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6088), 1, + anon_sym_SEMI, + STATE(654), 1, + sym_declaration_list, STATE(2851), 2, sym_line_comment, sym_block_comment, - [84501] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84446] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, + ACTIONS(6090), 1, anon_sym_RBRACE, - ACTIONS(6124), 1, + ACTIONS(6092), 1, anon_sym_COMMA, - STATE(2900), 1, - aux_sym_use_list_repeat1, + STATE(2945), 1, + aux_sym_struct_pattern_repeat1, STATE(2852), 2, sym_line_comment, sym_block_comment, - [84521] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84466] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(4390), 1, + anon_sym_RBRACE, + ACTIONS(6094), 1, anon_sym_COMMA, - STATE(2951), 1, - aux_sym_type_arguments_repeat1, + STATE(2918), 1, + aux_sym_use_list_repeat1, STATE(2853), 2, sym_line_comment, sym_block_comment, - [84541] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84486] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(3204), 1, + anon_sym_RPAREN, + ACTIONS(6096), 1, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + STATE(2884), 1, + aux_sym_tuple_type_repeat1, STATE(2854), 2, sym_line_comment, sym_block_comment, - [84561] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84506] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, - anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(6098), 1, + anon_sym_move, + STATE(233), 1, + sym_closure_parameters, STATE(2855), 2, sym_line_comment, sym_block_comment, - [84581] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84526] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6128), 1, - anon_sym_SEMI, - STATE(540), 1, - sym_declaration_list, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6100), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2856), 2, sym_line_comment, sym_block_comment, - [84601] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84544] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, - anon_sym_RPAREN, - ACTIONS(6130), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, STATE(2857), 2, sym_line_comment, sym_block_comment, - [84621] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6102), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84560] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(6132), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [84637] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5163), 1, + ACTIONS(6104), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6134), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, + [84576] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(2859), 2, sym_line_comment, sym_block_comment, - [84657] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6106), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84592] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_GT, - ACTIONS(6136), 1, + ACTIONS(5495), 1, + anon_sym_RPAREN, + ACTIONS(5497), 1, anon_sym_COMMA, - STATE(2860), 3, + STATE(2948), 1, + aux_sym_parameters_repeat1, + STATE(2860), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [84675] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84612] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(937), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [84691] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4813), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84628] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6139), 1, - anon_sym_SEMI, - STATE(3491), 1, - sym_where_clause, STATE(2862), 2, sym_line_comment, sym_block_comment, - [84711] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6108), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84644] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6141), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2863), 2, sym_line_comment, sym_block_comment, - [84729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6110), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84660] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3029), 1, - anon_sym_RPAREN, - ACTIONS(6143), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6112), 1, + anon_sym_SEMI, + STATE(3488), 1, + sym_where_clause, STATE(2864), 2, sym_line_comment, sym_block_comment, - [84749] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84680] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6145), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(6116), 1, + anon_sym_COLON, + ACTIONS(6114), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2865), 2, sym_line_comment, sym_block_comment, - [84769] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84698] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_RBRACE, - ACTIONS(6147), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6118), 1, + anon_sym_SEMI, + ACTIONS(6120), 1, + anon_sym_EQ, STATE(2866), 2, sym_line_comment, sym_block_comment, - [84789] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84718] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6149), 1, - anon_sym_SEMI, - STATE(1281), 1, - sym_declaration_list, + ACTIONS(3972), 1, + anon_sym_LT2, + ACTIONS(4954), 1, + anon_sym_COLON_COLON, + STATE(1606), 1, + sym_type_arguments, STATE(2867), 2, sym_line_comment, sym_block_comment, - [84809] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84738] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6153), 1, - anon_sym_COLON, - ACTIONS(6151), 2, + ACTIONS(5218), 1, anon_sym_RBRACE, + ACTIONS(6122), 1, anon_sym_COMMA, + STATE(2919), 1, + aux_sym_struct_pattern_repeat1, STATE(2868), 2, sym_line_comment, sym_block_comment, - [84827] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84758] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_GT, - ACTIONS(6155), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, STATE(2869), 2, sym_line_comment, sym_block_comment, - [84847] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6124), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84774] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, - anon_sym_RBRACE, - ACTIONS(6159), 1, + ACTIONS(6126), 1, + anon_sym_RPAREN, + ACTIONS(6128), 1, anon_sym_COMMA, - STATE(2950), 1, - aux_sym_struct_pattern_repeat1, + STATE(2806), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2870), 2, sym_line_comment, sym_block_comment, - [84867] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84794] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4754), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84883] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6130), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84810] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(6132), 1, + anon_sym_RBRACE, + ACTIONS(6134), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + STATE(2956), 1, + aux_sym_enum_variant_list_repeat2, STATE(2872), 2, sym_line_comment, sym_block_comment, - [84903] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84830] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_GT, - ACTIONS(6161), 1, + ACTIONS(3054), 1, + anon_sym_RPAREN, + ACTIONS(6136), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(2608), 1, + aux_sym_slice_pattern_repeat1, STATE(2873), 2, sym_line_comment, sym_block_comment, - [84923] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84850] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(6163), 2, - anon_sym_RPAREN, + ACTIONS(6138), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2874), 2, sym_line_comment, sym_block_comment, - [84941] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84868] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6165), 1, - anon_sym_SEMI, - STATE(3329), 1, - sym_where_clause, + ACTIONS(983), 1, + anon_sym_RBRACK, + ACTIONS(4116), 1, + anon_sym_COMMA, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(2875), 2, sym_line_comment, sym_block_comment, - [84961] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84888] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6167), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_declaration_list, + ACTIONS(5242), 1, + anon_sym_RBRACE, + ACTIONS(6140), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_struct_pattern_repeat1, STATE(2876), 2, sym_line_comment, sym_block_comment, - [84981] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84908] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6142), 1, + anon_sym_SEMI, + STATE(491), 1, + sym_declaration_list, STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84997] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84928] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6144), 1, + anon_sym_SEMI, + STATE(549), 1, + sym_declaration_list, STATE(2878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85013] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84948] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6146), 2, anon_sym_RPAREN, - ACTIONS(5534), 1, anon_sym_COMMA, - STATE(2961), 1, - aux_sym_parameters_repeat1, STATE(2879), 2, sym_line_comment, sym_block_comment, - [85033] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84966] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, - anon_sym_RPAREN, - ACTIONS(6169), 1, + ACTIONS(6148), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, anon_sym_COMMA, - STATE(2880), 3, + STATE(2893), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2880), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [85051] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84986] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4474), 1, anon_sym_LT2, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, + ACTIONS(6152), 1, + anon_sym_for, + STATE(1939), 1, sym_type_arguments, STATE(2881), 2, sym_line_comment, sym_block_comment, - [85071] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85006] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6154), 1, + anon_sym_move, + STATE(241), 1, + sym_closure_parameters, STATE(2882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85087] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85026] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_SEMI, + STATE(551), 1, + sym_declaration_list, STATE(2883), 2, sym_line_comment, sym_block_comment, - [85107] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85046] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_RBRACE, - ACTIONS(6172), 1, + ACTIONS(6146), 1, + anon_sym_RPAREN, + ACTIONS(6158), 1, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2884), 2, + STATE(2884), 3, sym_line_comment, sym_block_comment, - [85127] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_type_repeat1, + [85064] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_RBRACE, - ACTIONS(6172), 1, + ACTIONS(4675), 1, + anon_sym_GT, + ACTIONS(6161), 1, anon_sym_COMMA, - STATE(2963), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2885), 2, sym_line_comment, sym_block_comment, - [85147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85084] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6174), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_declaration_list, STATE(2886), 2, sym_line_comment, sym_block_comment, - [85167] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6163), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85100] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(6176), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(4673), 1, + anon_sym_GT, + ACTIONS(5505), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85185] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85120] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4673), 1, + anon_sym_GT, + ACTIONS(5505), 1, + anon_sym_COMMA, + STATE(2971), 1, + aux_sym_type_parameters_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(6178), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [85201] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85140] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1621), 1, + anon_sym_GT, + ACTIONS(6165), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(6180), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85217] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85160] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_GT, - ACTIONS(6182), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6167), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_declaration_list, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85237] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85180] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_GT, - ACTIONS(6184), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6169), 1, + anon_sym_SEMI, + STATE(1196), 1, + sym_declaration_list, STATE(2891), 2, sym_line_comment, sym_block_comment, - [85257] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85200] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6171), 1, anon_sym_SEMI, - STATE(1403), 1, + STATE(557), 1, sym_declaration_list, STATE(2892), 2, sym_line_comment, sym_block_comment, - [85277] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85220] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6188), 1, - anon_sym_RPAREN, - ACTIONS(6190), 1, + ACTIONS(4855), 1, + anon_sym_RBRACE, + ACTIONS(6173), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2963), 1, + aux_sym_field_initializer_list_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85297] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85240] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2970), 1, + anon_sym_RPAREN, + ACTIONS(6175), 1, + anon_sym_COMMA, + STATE(2805), 1, + aux_sym_tuple_pattern_repeat1, STATE(2894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85313] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85260] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6177), 1, + anon_sym_SEMI, + STATE(559), 1, + sym_declaration_list, STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85329] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85280] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(6192), 2, - anon_sym_RBRACE, + ACTIONS(6179), 2, + anon_sym_GT, anon_sym_COMMA, STATE(2896), 2, sym_line_comment, sym_block_comment, - [85347] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85298] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3064), 1, + anon_sym_RBRACK, + ACTIONS(6181), 1, + anon_sym_COMMA, + STATE(2608), 1, + aux_sym_slice_pattern_repeat1, STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85363] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85318] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_RBRACK, - ACTIONS(6194), 1, + ACTIONS(1487), 1, + anon_sym_RPAREN, + ACTIONS(5573), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2987), 1, + aux_sym_parameters_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [85383] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85338] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6183), 1, + anon_sym_SEMI, + ACTIONS(6185), 1, + anon_sym_EQ, STATE(2899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85399] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85358] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, - anon_sym_RBRACE, - ACTIONS(6196), 1, + ACTIONS(5420), 1, + anon_sym_GT, + ACTIONS(6187), 1, anon_sym_COMMA, - STATE(2920), 1, - aux_sym_use_list_repeat1, - STATE(2900), 2, + STATE(2900), 3, sym_line_comment, sym_block_comment, - [85419] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_arguments_repeat1, + [85376] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6198), 1, - anon_sym_SEMI, - STATE(1409), 1, - sym_declaration_list, + ACTIONS(6190), 1, + anon_sym_RBRACE, + ACTIONS(6192), 1, + anon_sym_COMMA, + STATE(2990), 1, + aux_sym_field_declaration_list_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [85439] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85396] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(6200), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6194), 1, + anon_sym_SEMI, + STATE(3375), 1, + sym_where_clause, STATE(2902), 2, sym_line_comment, sym_block_comment, - [85459] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85416] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6202), 1, - anon_sym_LPAREN, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_COLON, + ACTIONS(4919), 1, + anon_sym_COLON_COLON, + STATE(2690), 1, + sym_trait_bounds, STATE(2903), 2, sym_line_comment, sym_block_comment, - [85479] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85436] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6208), 1, - anon_sym_LPAREN, - ACTIONS(6210), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_LBRACE, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6196), 1, + anon_sym_SEMI, + ACTIONS(6198), 1, + anon_sym_EQ, STATE(2904), 2, sym_line_comment, sym_block_comment, - [85499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85456] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6214), 1, - anon_sym_SEMI, - STATE(602), 1, - sym_declaration_list, + ACTIONS(6202), 1, + anon_sym_COLON, + ACTIONS(6200), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2905), 2, sym_line_comment, sym_block_comment, - [85519] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85474] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_RPAREN, - ACTIONS(6218), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6204), 1, + anon_sym_SEMI, + STATE(3380), 1, + sym_where_clause, STATE(2906), 2, sym_line_comment, sym_block_comment, - [85539] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85494] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_GT, - ACTIONS(6220), 1, + ACTIONS(1487), 1, + anon_sym_RPAREN, + ACTIONS(5573), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(3007), 1, + aux_sym_parameters_repeat1, STATE(2907), 2, sym_line_comment, sym_block_comment, - [85559] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85514] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6222), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(6208), 1, + anon_sym_COLON, + ACTIONS(6206), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2908), 2, sym_line_comment, sym_block_comment, - [85579] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85532] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6224), 1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6210), 1, anon_sym_SEMI, - ACTIONS(6226), 1, - anon_sym_EQ, + STATE(1219), 1, + sym_declaration_list, STATE(2909), 2, sym_line_comment, sym_block_comment, - [85599] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85552] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6212), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2910), 2, sym_line_comment, sym_block_comment, - [85619] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85570] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(6230), 1, + ACTIONS(6214), 1, anon_sym_SEMI, - STATE(604), 1, + STATE(1319), 1, sym_declaration_list, STATE(2911), 2, sym_line_comment, sym_block_comment, - [85639] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85590] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + ACTIONS(6216), 1, + anon_sym_GT, + STATE(3096), 1, + sym_lifetime, STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85655] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85610] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6232), 2, - anon_sym_RPAREN, + ACTIONS(6216), 1, + anon_sym_GT, + ACTIONS(6218), 1, anon_sym_COMMA, + STATE(2787), 1, + aux_sym_for_lifetimes_repeat1, STATE(2913), 2, sym_line_comment, sym_block_comment, - [85673] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85630] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_ref, + ACTIONS(6224), 1, + sym_mutable_specifier, STATE(2914), 2, sym_line_comment, sym_block_comment, - [85693] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85650] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(6236), 2, - anon_sym_PIPE, + ACTIONS(4841), 1, + anon_sym_RBRACE, + ACTIONS(6226), 1, anon_sym_COMMA, + STATE(2963), 1, + aux_sym_field_initializer_list_repeat1, STATE(2915), 2, sym_line_comment, sym_block_comment, - [85711] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85670] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(3996), 1, anon_sym_LBRACE, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(498), 1, - sym_declaration_list, + ACTIONS(6228), 1, + anon_sym_COLON_COLON, + STATE(1748), 1, + sym_field_initializer_list, STATE(2916), 2, sym_line_comment, sym_block_comment, - [85731] = 6, - ACTIONS(101), 1, + [85690] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6230), 1, + anon_sym_SEMI, + STATE(3398), 1, + sym_where_clause, + STATE(2917), 2, + sym_line_comment, + sym_block_comment, + [85710] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(6232), 1, anon_sym_RBRACE, ACTIONS(6234), 1, anon_sym_COMMA, - STATE(2993), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2917), 2, + STATE(2918), 3, sym_line_comment, sym_block_comment, - [85751] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_list_repeat1, + [85728] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6240), 1, - anon_sym_SEMI, - STATE(610), 1, - sym_declaration_list, - STATE(2918), 2, + ACTIONS(6237), 1, + anon_sym_RBRACE, + ACTIONS(6239), 1, + anon_sym_COMMA, + STATE(2919), 3, sym_line_comment, sym_block_comment, - [85771] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_struct_pattern_repeat1, + [85746] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6242), 1, - anon_sym_EQ_GT, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6246), 1, - anon_sym_if, - STATE(2919), 2, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [85791] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85766] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6248), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, - anon_sym_COMMA, - STATE(2920), 3, - sym_line_comment, - sym_block_comment, - aux_sym_use_list_repeat1, - [85809] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6253), 1, - anon_sym_SEMI, - STATE(1423), 1, - sym_declaration_list, STATE(2921), 2, sym_line_comment, sym_block_comment, - [85829] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6244), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85782] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 1, + ACTIONS(989), 1, anon_sym_RPAREN, - ACTIONS(6257), 1, + ACTIONS(4104), 1, anon_sym_COMMA, - STATE(2922), 3, + STATE(2643), 1, + aux_sym_arguments_repeat1, + STATE(2922), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85847] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85802] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5569), 1, + anon_sym_COMMA, + ACTIONS(6246), 1, + anon_sym_PIPE, + STATE(2939), 1, + aux_sym_closure_parameters_repeat1, STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85863] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85822] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 1, - anon_sym_PIPE, - ACTIONS(6260), 1, + ACTIONS(5639), 1, + anon_sym_EQ, + ACTIONS(5717), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2924), 3, + STATE(2924), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [85881] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85840] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6263), 1, - anon_sym_SEMI, - STATE(612), 1, - sym_declaration_list, STATE(2925), 2, sym_line_comment, sym_block_comment, - [85901] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6248), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85856] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6250), 1, + anon_sym_RBRACE, + ACTIONS(6252), 1, + anon_sym_COMMA, + STATE(2853), 1, + aux_sym_use_list_repeat1, STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85917] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85876] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6265), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6254), 1, + anon_sym_SEMI, + STATE(3352), 1, + sym_where_clause, STATE(2927), 2, sym_line_comment, sym_block_comment, - [85935] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85896] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6267), 2, - anon_sym_RPAREN, + ACTIONS(995), 1, + anon_sym_RBRACK, + ACTIONS(6256), 1, anon_sym_COMMA, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(2928), 2, sym_line_comment, sym_block_comment, - [85953] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85916] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6269), 1, - anon_sym_GT, - STATE(3196), 1, - sym_lifetime, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6258), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2929), 2, sym_line_comment, sym_block_comment, - [85973] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85934] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6271), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3347), 1, + anon_sym_LBRACE, + ACTIONS(6260), 1, + anon_sym_COLON_COLON, + STATE(1204), 1, + sym_field_initializer_list, STATE(2930), 2, sym_line_comment, sym_block_comment, - [85991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85954] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 1, - anon_sym_RBRACE, - ACTIONS(6275), 1, - anon_sym_COMMA, - STATE(2931), 3, + ACTIONS(6262), 1, + anon_sym_LPAREN, + ACTIONS(6264), 1, + anon_sym_LBRACK, + ACTIONS(6266), 1, + anon_sym_LBRACE, + STATE(2931), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86009] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85974] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6280), 1, - anon_sym_EQ, + ACTIONS(6268), 1, + anon_sym_LPAREN, + ACTIONS(6270), 1, + anon_sym_LBRACK, + ACTIONS(6272), 1, + anon_sym_LBRACE, STATE(2932), 2, sym_line_comment, sym_block_comment, - [86029] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85994] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6282), 1, - anon_sym_SEMI, - STATE(3499), 1, - sym_where_clause, + ACTIONS(6274), 1, + anon_sym_RBRACE, + ACTIONS(6276), 1, + anon_sym_COMMA, + STATE(3027), 1, + aux_sym_field_declaration_list_repeat1, STATE(2933), 2, sym_line_comment, sym_block_comment, - [86049] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86014] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6284), 1, - anon_sym_SEMI, - ACTIONS(6286), 1, - anon_sym_EQ, + ACTIONS(1617), 1, + anon_sym_GT, + ACTIONS(6278), 1, + anon_sym_COMMA, + STATE(3022), 1, + aux_sym_type_arguments_repeat1, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86069] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86034] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6288), 1, - sym_identifier, - ACTIONS(6290), 1, - anon_sym_await, - ACTIONS(6292), 1, - sym_integer_literal, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(6280), 1, + anon_sym_LBRACE, + STATE(1939), 1, + sym_type_arguments, STATE(2935), 2, sym_line_comment, sym_block_comment, - [86089] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86054] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 1, + ACTIONS(6284), 1, + anon_sym_COLON, + ACTIONS(6282), 2, anon_sym_RBRACE, - ACTIONS(6294), 1, anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, STATE(2936), 2, sym_line_comment, sym_block_comment, - [86109] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86072] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, - ACTIONS(6298), 1, + ACTIONS(1617), 1, + anon_sym_GT, + ACTIONS(6278), 1, anon_sym_COMMA, - STATE(2764), 1, - aux_sym_struct_pattern_repeat1, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [86129] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86092] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6267), 1, - anon_sym_RPAREN, - ACTIONS(6300), 1, + ACTIONS(6286), 1, + anon_sym_RBRACE, + ACTIONS(6288), 1, anon_sym_COMMA, - STATE(2938), 3, + STATE(2868), 1, + aux_sym_struct_pattern_repeat1, + STATE(2938), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [86147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86112] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6303), 1, - anon_sym_GT, - STATE(3196), 1, - sym_lifetime, + ACTIONS(5569), 1, + anon_sym_COMMA, + ACTIONS(6290), 1, + anon_sym_PIPE, + STATE(2960), 1, + aux_sym_closure_parameters_repeat1, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86167] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86132] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3032), 1, + anon_sym_RPAREN, + ACTIONS(6292), 1, + anon_sym_COMMA, + STATE(2608), 1, + aux_sym_slice_pattern_repeat1, STATE(2940), 2, sym_line_comment, sym_block_comment, - ACTIONS(6305), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86183] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86152] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6269), 1, - anon_sym_GT, - ACTIONS(6307), 1, + ACTIONS(5186), 1, + anon_sym_RBRACE, + ACTIONS(6294), 1, anon_sym_COMMA, - STATE(2948), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2919), 1, + aux_sym_struct_pattern_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - [86203] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86172] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4887), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(6296), 1, + anon_sym_LPAREN, + ACTIONS(6298), 1, + anon_sym_LBRACK, + ACTIONS(6300), 1, + anon_sym_LBRACE, STATE(2942), 2, sym_line_comment, sym_block_comment, - [86223] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86192] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4955), 1, + ACTIONS(6304), 1, + anon_sym_EQ, + ACTIONS(6302), 2, anon_sym_RBRACE, - ACTIONS(6309), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, STATE(2943), 2, sym_line_comment, sym_block_comment, - [86243] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86210] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, + ACTIONS(3062), 1, anon_sym_RPAREN, - ACTIONS(6311), 1, + ACTIONS(6306), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2608), 1, + aux_sym_slice_pattern_repeat1, STATE(2944), 2, sym_line_comment, sym_block_comment, - [86263] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86230] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5679), 2, - anon_sym_GT, + ACTIONS(5198), 1, + anon_sym_RBRACE, + ACTIONS(6308), 1, anon_sym_COMMA, + STATE(2919), 1, + aux_sym_struct_pattern_repeat1, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86281] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86250] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3137), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6310), 2, anon_sym_RPAREN, - ACTIONS(6313), 1, anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, STATE(2946), 2, sym_line_comment, sym_block_comment, - [86301] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86268] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(6315), 1, + ACTIONS(6312), 1, anon_sym_SEMI, - ACTIONS(6317), 1, + ACTIONS(6314), 1, anon_sym_EQ, STATE(2947), 2, sym_line_comment, sym_block_comment, - [86321] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86288] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 1, - anon_sym_GT, - ACTIONS(6321), 1, + ACTIONS(1485), 1, + anon_sym_RPAREN, + ACTIONS(5509), 1, anon_sym_COMMA, - STATE(2948), 3, + STATE(2987), 1, + aux_sym_parameters_repeat1, + STATE(2948), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86339] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86308] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4970), 1, + anon_sym_RBRACE, + ACTIONS(6316), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_enum_variant_list_repeat2, STATE(2949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86355] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86328] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5137), 1, + ACTIONS(4970), 1, anon_sym_RBRACE, - ACTIONS(6324), 1, + ACTIONS(6316), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, + STATE(2832), 1, + aux_sym_enum_variant_list_repeat2, STATE(2950), 2, sym_line_comment, sym_block_comment, - [86375] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86348] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1586), 1, - anon_sym_GT, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, STATE(2951), 2, sym_line_comment, sym_block_comment, - [86395] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6318), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86364] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6328), 1, - anon_sym_SEMI, - ACTIONS(6330), 1, - anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_RPAREN, + ACTIONS(5509), 1, + anon_sym_COMMA, + STATE(3030), 1, + aux_sym_parameters_repeat1, STATE(2952), 2, sym_line_comment, sym_block_comment, - [86415] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86384] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1027), 1, + anon_sym_RPAREN, + ACTIONS(6320), 1, + anon_sym_COMMA, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86431] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86404] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6322), 1, + anon_sym_RBRACE, + ACTIONS(6324), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym_enum_variant_list_repeat2, STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(6332), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86447] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86424] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6334), 1, - sym_identifier, - ACTIONS(6336), 1, - anon_sym_ref, - ACTIONS(6338), 1, - sym_mutable_specifier, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6326), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_declaration_list, STATE(2955), 2, sym_line_comment, sym_block_comment, - [86467] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86444] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(6340), 1, - anon_sym_COLON_COLON, - STATE(1651), 1, - sym_field_initializer_list, + ACTIONS(4964), 1, + anon_sym_RBRACE, + ACTIONS(6328), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_enum_variant_list_repeat2, STATE(2956), 2, sym_line_comment, sym_block_comment, - [86487] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86464] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - ACTIONS(6342), 1, - sym_identifier, + ACTIONS(5565), 1, + anon_sym_COLON, + ACTIONS(6330), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2957), 2, sym_line_comment, sym_block_comment, - [86507] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86482] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6332), 1, + anon_sym_SEMI, + STATE(577), 1, + sym_declaration_list, STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86523] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86502] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, + ACTIONS(4964), 1, + anon_sym_RBRACE, + ACTIONS(6328), 1, anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, + STATE(3035), 1, + aux_sym_enum_variant_list_repeat2, STATE(2959), 2, sym_line_comment, sym_block_comment, - [86543] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86522] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(4069), 1, + ACTIONS(6330), 1, + anon_sym_PIPE, + ACTIONS(6334), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2960), 2, + STATE(2960), 3, sym_line_comment, sym_block_comment, - [86563] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_closure_parameters_repeat1, + [86540] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(6344), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6337), 1, + anon_sym_SEMI, + STATE(3565), 1, + sym_where_clause, STATE(2961), 2, sym_line_comment, sym_block_comment, - [86583] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86560] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(5281), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2962), 2, sym_line_comment, - sym_block_comment, - ACTIONS(4764), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86599] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [86578] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4885), 1, + ACTIONS(6339), 1, anon_sym_RBRACE, - ACTIONS(6346), 1, + ACTIONS(6341), 1, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2963), 2, + STATE(2963), 3, sym_line_comment, sym_block_comment, - [86619] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_initializer_list_repeat1, + [86596] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(4607), 1, + anon_sym_COLON, + STATE(2690), 1, + sym_trait_bounds, STATE(2964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86635] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86616] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6348), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6344), 1, + anon_sym_LPAREN, + ACTIONS(6346), 1, + anon_sym_LBRACK, + ACTIONS(6348), 1, + anon_sym_LBRACE, STATE(2965), 2, sym_line_comment, sym_block_comment, - [86653] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86636] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6350), 1, + anon_sym_RBRACE, + ACTIONS(6352), 1, + anon_sym_COMMA, + STATE(2876), 1, + aux_sym_struct_pattern_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86669] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86656] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6350), 1, - anon_sym_SEMI, - STATE(1461), 1, - sym_declaration_list, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6354), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2967), 2, sym_line_comment, sym_block_comment, - [86689] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86674] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6352), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, STATE(2968), 2, sym_line_comment, sym_block_comment, - [86709] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6356), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86690] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6354), 1, - anon_sym_SEMI, - STATE(1465), 1, - sym_declaration_list, + ACTIONS(5639), 1, + anon_sym_EQ, + ACTIONS(5847), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2969), 2, sym_line_comment, sym_block_comment, - [86729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86708] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4667), 1, + anon_sym_GT, + ACTIONS(6358), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2970), 2, sym_line_comment, sym_block_comment, - [86749] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86728] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4659), 1, + anon_sym_GT, + ACTIONS(6360), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86765] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86748] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6356), 1, - anon_sym_move, - STATE(228), 1, - sym_closure_parameters, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6362), 1, + anon_sym_SEMI, + STATE(1257), 1, + sym_declaration_list, STATE(2972), 2, sym_line_comment, sym_block_comment, - [86785] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86768] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86801] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6364), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86784] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6366), 1, + anon_sym_SEMI, + STATE(499), 1, + sym_declaration_list, STATE(2974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86817] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86804] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_RPAREN, - ACTIONS(6360), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, STATE(2975), 2, sym_line_comment, sym_block_comment, - [86837] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4785), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86820] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(3467), 1, - sym_where_clause, - STATE(2976), 2, + ACTIONS(5847), 1, + anon_sym_GT, + ACTIONS(6368), 1, + anon_sym_COMMA, + STATE(2976), 3, sym_line_comment, sym_block_comment, - [86857] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_parameters_repeat1, + [86838] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3190), 1, + anon_sym_RPAREN, + ACTIONS(6371), 1, + anon_sym_COMMA, + STATE(2884), 1, + aux_sym_tuple_type_repeat1, STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(6364), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86873] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86858] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6373), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86889] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86876] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6366), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2979), 2, - sym_line_comment, - sym_block_comment, - [86909] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(6368), 1, + ACTIONS(6375), 1, anon_sym_SEMI, - STATE(1093), 1, + STATE(1263), 1, sym_declaration_list, - STATE(2980), 2, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [86929] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86896] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(5879), 2, anon_sym_RPAREN, - ACTIONS(5530), 1, anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - STATE(2981), 2, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [86949] = 6, - ACTIONS(101), 1, + [86914] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2981), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4787), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86930] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6370), 1, - anon_sym_SEMI, - STATE(1095), 1, - sym_declaration_list, + ACTIONS(5289), 1, + anon_sym_PLUS, + ACTIONS(6377), 1, + anon_sym_GT, + ACTIONS(6379), 1, + anon_sym_as, STATE(2982), 2, sym_line_comment, sym_block_comment, - [86969] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86950] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4663), 1, + anon_sym_GT, + ACTIONS(6381), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86985] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86970] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, + ACTIONS(4679), 1, anon_sym_GT, - ACTIONS(6372), 1, + ACTIONS(6383), 1, anon_sym_COMMA, - STATE(2747), 1, - aux_sym_type_arguments_repeat1, + STATE(2976), 1, + aux_sym_type_parameters_repeat1, STATE(2984), 2, sym_line_comment, sym_block_comment, - [87005] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86990] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(6374), 1, - sym_mutable_specifier, - ACTIONS(6376), 1, - sym_self, + ACTIONS(6385), 1, + anon_sym_SEMI, + ACTIONS(6387), 1, + anon_sym_EQ, STATE(2985), 2, sym_line_comment, sym_block_comment, - [87025] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87010] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6378), 1, - anon_sym_SEMI, - ACTIONS(6380), 1, - anon_sym_EQ, + ACTIONS(6389), 1, + sym_identifier, + ACTIONS(6391), 2, + anon_sym_default, + anon_sym_union, STATE(2986), 2, sym_line_comment, sym_block_comment, - [87045] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87028] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6382), 2, + ACTIONS(5879), 1, anon_sym_RPAREN, + ACTIONS(6393), 1, anon_sym_COMMA, - STATE(2987), 2, + STATE(2987), 3, sym_line_comment, sym_block_comment, - [87063] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_parameters_repeat1, + [87046] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6396), 1, + anon_sym_SEMI, + STATE(590), 1, + sym_declaration_list, STATE(2988), 2, sym_line_comment, sym_block_comment, - ACTIONS(6384), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87079] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87066] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2945), 1, - anon_sym_RPAREN, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4915), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, STATE(2989), 2, sym_line_comment, sym_block_comment, - [87099] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87086] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4990), 1, + anon_sym_RBRACE, + ACTIONS(6398), 1, + anon_sym_COMMA, + STATE(2816), 1, + aux_sym_field_declaration_list_repeat1, STATE(2990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4760), 3, - anon_sym_EQ_GT, + [87106] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [87115] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6372), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(6400), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, STATE(2991), 2, sym_line_comment, sym_block_comment, - [87135] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87126] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, + ACTIONS(4990), 1, anon_sym_RBRACE, - ACTIONS(6388), 1, + ACTIONS(6398), 1, anon_sym_COMMA, - STATE(2931), 1, + STATE(2753), 1, aux_sym_field_declaration_list_repeat1, STATE(2992), 2, sym_line_comment, sym_block_comment, - [87155] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87146] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4949), 1, - anon_sym_RBRACE, - ACTIONS(6390), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, STATE(2993), 2, sym_line_comment, sym_block_comment, - [87175] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6402), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87162] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, - anon_sym_RBRACE, - ACTIONS(6388), 1, - anon_sym_COMMA, - STATE(2943), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6404), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_where_clause, STATE(2994), 2, sym_line_comment, sym_block_comment, - [87195] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87182] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6406), 1, + anon_sym_SEMI, + STATE(1276), 1, + sym_declaration_list, STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87211] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87202] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 1, - anon_sym_GT, - ACTIONS(6394), 1, - anon_sym_COMMA, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6408), 1, + anon_sym_SEMI, + STATE(501), 1, + sym_declaration_list, STATE(2996), 2, sym_line_comment, sym_block_comment, - [87231] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87222] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6396), 1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6410), 1, anon_sym_SEMI, - ACTIONS(6398), 1, - anon_sym_RBRACK, + STATE(600), 1, + sym_declaration_list, STATE(2997), 2, sym_line_comment, sym_block_comment, - [87251] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87242] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 3, + ACTIONS(4793), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87267] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87258] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6400), 1, - anon_sym_SEMI, - STATE(629), 1, - sym_declaration_list, + ACTIONS(5307), 1, + anon_sym_GT, + ACTIONS(5309), 1, + anon_sym_COMMA, + STATE(2801), 1, + aux_sym_type_parameters_repeat1, STATE(2999), 2, sym_line_comment, sym_block_comment, - [87287] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87278] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(3000), 2, sym_line_comment, sym_block_comment, - ACTIONS(6402), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87303] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4799), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87294] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, - anon_sym_COMMA, - ACTIONS(6404), 1, - anon_sym_PIPE, - STATE(2924), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, + anon_sym_SEMI, + STATE(1103), 1, + sym_declaration_list, STATE(3001), 2, sym_line_comment, sym_block_comment, - [87323] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87314] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6406), 1, - anon_sym_SEMI, - STATE(3371), 1, - sym_where_clause, STATE(3002), 2, sym_line_comment, sym_block_comment, - [87343] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6414), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87330] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6416), 1, anon_sym_SEMI, - STATE(667), 1, - sym_declaration_list, + ACTIONS(6418), 1, + anon_sym_EQ, STATE(3003), 2, sym_line_comment, sym_block_comment, - [87363] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87350] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, STATE(3004), 2, sym_line_comment, sym_block_comment, - [87383] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(963), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [87366] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6410), 1, + ACTIONS(4902), 1, + anon_sym_where, + ACTIONS(6420), 1, anon_sym_SEMI, - STATE(753), 1, - sym_declaration_list, + STATE(3503), 1, + sym_where_clause, STATE(3005), 2, sym_line_comment, sym_block_comment, - [87403] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87386] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, + ACTIONS(6422), 1, sym_identifier, - ACTIONS(6414), 2, - anon_sym_default, - anon_sym_union, + ACTIONS(6424), 1, + anon_sym_ref, + ACTIONS(6426), 1, + sym_mutable_specifier, STATE(3006), 2, sym_line_comment, sym_block_comment, - [87421] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87406] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3021), 1, - anon_sym_RBRACK, - ACTIONS(6416), 1, + ACTIONS(1497), 1, + anon_sym_RPAREN, + ACTIONS(6428), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + STATE(2987), 1, + aux_sym_parameters_repeat1, STATE(3007), 2, sym_line_comment, sym_block_comment, - [87441] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87426] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 2, - anon_sym_default, - anon_sym_union, STATE(3008), 2, sym_line_comment, sym_block_comment, - [87459] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4805), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87442] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6422), 1, - anon_sym_SEMI, - STATE(3327), 1, - sym_where_clause, + ACTIONS(6430), 1, + sym_identifier, + ACTIONS(6432), 1, + anon_sym_await, + ACTIONS(6434), 1, + sym_integer_literal, STATE(3009), 2, sym_line_comment, sym_block_comment, - [87479] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87462] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, - anon_sym_SEMI, - STATE(554), 1, - sym_declaration_list, + ACTIONS(5599), 1, + anon_sym_RPAREN, + ACTIONS(5601), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_parameters_repeat1, STATE(3010), 2, sym_line_comment, sym_block_comment, - [87499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87482] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - [87519] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4823), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87498] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, - ACTIONS(6428), 1, + ACTIONS(1003), 1, + anon_sym_RPAREN, + ACTIONS(4148), 1, anon_sym_COMMA, - STATE(2771), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(3012), 2, sym_line_comment, sym_block_comment, - [87539] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87518] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4961), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(3148), 1, + anon_sym_PLUS, + ACTIONS(6436), 1, + sym_mutable_specifier, + ACTIONS(6438), 1, + sym_self, STATE(3013), 2, sym_line_comment, sym_block_comment, - [87559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87538] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6430), 2, - anon_sym_RBRACE, + ACTIONS(997), 1, + anon_sym_RPAREN, + ACTIONS(6440), 1, anon_sym_COMMA, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(3014), 2, sym_line_comment, sym_block_comment, - [87577] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87558] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_PLUS, - ACTIONS(6432), 1, + ACTIONS(6442), 1, anon_sym_SEMI, - ACTIONS(6434), 1, + ACTIONS(6444), 1, anon_sym_EQ, STATE(3015), 2, sym_line_comment, sym_block_comment, - [87597] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87578] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_GT, + ACTIONS(6448), 1, + anon_sym_PIPE, + ACTIONS(6450), 1, + anon_sym_if, STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(6436), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87613] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87598] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_EQ, - STATE(3572), 1, - sym_type_parameters, + ACTIONS(6452), 1, + anon_sym_GT, + ACTIONS(6454), 1, + anon_sym_COMMA, + STATE(2913), 1, + aux_sym_for_lifetimes_repeat1, STATE(3017), 2, sym_line_comment, sym_block_comment, - [87633] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87618] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6440), 1, - anon_sym_SEMI, - ACTIONS(6442), 1, - anon_sym_EQ, STATE(3018), 2, sym_line_comment, sym_block_comment, - [87653] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4789), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87634] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6444), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, STATE(3019), 2, sym_line_comment, sym_block_comment, - [87673] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4791), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87650] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4582), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, STATE(3020), 2, sym_line_comment, sym_block_comment, - [87693] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4795), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87666] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6446), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6456), 1, + anon_sym_SEMI, + ACTIONS(6458), 1, + anon_sym_RBRACK, STATE(3021), 2, sym_line_comment, sym_block_comment, - [87713] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87686] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, - ACTIONS(6450), 1, + ACTIONS(1619), 1, + anon_sym_GT, + ACTIONS(6460), 1, anon_sym_COMMA, - STATE(2859), 1, - aux_sym_struct_pattern_repeat1, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, STATE(3022), 2, sym_line_comment, sym_block_comment, - [87733] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87706] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6452), 1, - anon_sym_SEMI, - STATE(1135), 1, - sym_declaration_list, + ACTIONS(6462), 1, + anon_sym_RPAREN, + ACTIONS(6464), 1, + anon_sym_COMMA, + STATE(2806), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3023), 2, sym_line_comment, sym_block_comment, - [87753] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87726] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6454), 1, - anon_sym_SEMI, - STATE(1137), 1, - sym_declaration_list, + ACTIONS(943), 1, + anon_sym_RBRACK, + ACTIONS(4078), 1, + anon_sym_COMMA, + STATE(2643), 1, + aux_sym_arguments_repeat1, STATE(3024), 2, sym_line_comment, sym_block_comment, - [87773] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87746] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6456), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, + anon_sym_SEMI, + STATE(611), 1, + sym_declaration_list, STATE(3025), 2, sym_line_comment, sym_block_comment, - [87793] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87766] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3026), 3, + STATE(3026), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87811] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6468), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [87782] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, + ACTIONS(4892), 1, + anon_sym_RBRACE, + ACTIONS(6470), 1, anon_sym_COMMA, - ACTIONS(6463), 1, - anon_sym_PIPE, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, + STATE(2816), 1, + aux_sym_field_declaration_list_repeat1, STATE(3027), 2, sym_line_comment, sym_block_comment, - [87831] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87802] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, + ACTIONS(6472), 1, sym_identifier, - ACTIONS(6467), 1, - anon_sym_ref, - ACTIONS(6469), 1, - sym_mutable_specifier, + ACTIONS(6474), 2, + anon_sym_default, + anon_sym_union, STATE(3028), 2, sym_line_comment, sym_block_comment, - [87851] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87820] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6471), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4892), 1, + anon_sym_RBRACE, + ACTIONS(6470), 1, + anon_sym_COMMA, + STATE(2825), 1, + aux_sym_field_declaration_list_repeat1, STATE(3029), 2, sym_line_comment, sym_block_comment, - [87871] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87840] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6473), 1, - anon_sym_SEMI, - STATE(1184), 1, - sym_declaration_list, + ACTIONS(1493), 1, + anon_sym_RPAREN, + ACTIONS(6476), 1, + anon_sym_COMMA, + STATE(2987), 1, + aux_sym_parameters_repeat1, STATE(3030), 2, sym_line_comment, sym_block_comment, - [87891] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87860] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6475), 1, - anon_sym_SEMI, - STATE(3556), 1, - sym_where_clause, STATE(3031), 2, sym_line_comment, sym_block_comment, - [87911] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4478), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87876] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(3032), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, + ACTIONS(4837), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87927] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87892] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 2, - anon_sym_const, - sym_mutable_specifier, STATE(3033), 2, sym_line_comment, sym_block_comment, - [87942] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4797), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87908] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6479), 1, - anon_sym_SEMI, - ACTIONS(6481), 1, - anon_sym_as, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(4986), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, STATE(3034), 2, sym_line_comment, sym_block_comment, - [87959] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87928] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1162), 1, - sym_declaration_list, + ACTIONS(4890), 1, + anon_sym_RBRACE, + ACTIONS(6478), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_enum_variant_list_repeat2, STATE(3035), 2, sym_line_comment, sym_block_comment, - [87976] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87948] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 2, - sym_identifier, - sym_metavariable, STATE(3036), 2, sym_line_comment, sym_block_comment, - [87991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5394), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87964] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6485), 1, - sym_identifier, + ACTIONS(4900), 1, + anon_sym_LT, + ACTIONS(6480), 1, + anon_sym_EQ, + STATE(3589), 1, + sym_type_parameters, STATE(3037), 2, sym_line_comment, sym_block_comment, - [88008] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87984] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(527), 1, - sym_declaration_list, + ACTIONS(6482), 1, + sym_identifier, + ACTIONS(6484), 1, + anon_sym_await, + ACTIONS(6486), 1, + sym_integer_literal, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88025] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88004] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 2, - sym_identifier, - sym_super, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(6488), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, STATE(3039), 2, sym_line_comment, sym_block_comment, - [88040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88024] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6489), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6490), 1, + anon_sym_SEMI, + STATE(1311), 1, + sym_declaration_list, STATE(3040), 2, sym_line_comment, sym_block_comment, - [88057] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88044] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(6492), 1, + anon_sym_for, + STATE(1939), 1, + sym_type_arguments, STATE(3041), 2, sym_line_comment, sym_block_comment, - [88072] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88064] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - sym_identifier, - ACTIONS(6495), 1, - sym_super, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6494), 1, + anon_sym_SEMI, + STATE(1313), 1, + sym_declaration_list, STATE(3042), 2, sym_line_comment, sym_block_comment, - [88089] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88084] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6145), 1, + ACTIONS(4474), 1, + anon_sym_LT2, + ACTIONS(6496), 1, anon_sym_for, + STATE(1939), 1, + sym_type_arguments, STATE(3043), 2, sym_line_comment, sym_block_comment, - [88106] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88104] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(217), 1, - sym_closure_parameters, STATE(3044), 2, sym_line_comment, sym_block_comment, - [88123] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4687), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88120] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6497), 1, - anon_sym_SEMI, - ACTIONS(6499), 1, - anon_sym_as, + ACTIONS(6498), 1, + sym_identifier, + ACTIONS(6500), 1, + anon_sym_ref, + ACTIONS(6502), 1, + sym_mutable_specifier, STATE(3045), 2, sym_line_comment, sym_block_comment, - [88140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88140] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(707), 1, - sym_enum_variant_list, + ACTIONS(4697), 1, + anon_sym_COLON_COLON, + ACTIONS(4815), 1, + anon_sym_BANG, + ACTIONS(6504), 1, + sym_identifier, STATE(3046), 2, sym_line_comment, sym_block_comment, - [88157] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88160] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6506), 1, anon_sym_SEMI, + STATE(736), 1, + sym_declaration_list, STATE(3047), 2, sym_line_comment, sym_block_comment, - [88174] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88180] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6508), 1, + anon_sym_SEMI, + STATE(684), 1, + sym_declaration_list, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88191] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88200] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5703), 2, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6512), 1, anon_sym_RPAREN, - anon_sym_COMMA, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88217] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6503), 1, - sym_identifier, - ACTIONS(6505), 1, - sym_super, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_declaration_list, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88223] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88234] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6507), 1, - sym_identifier, + ACTIONS(6514), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3051), 2, sym_line_comment, sym_block_comment, - [88240] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88249] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(228), 1, - sym_closure_parameters, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6516), 1, + anon_sym_RBRACE, STATE(3052), 2, sym_line_comment, sym_block_comment, - [88257] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88266] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(720), 1, + sym_declaration_list, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88274] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88283] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1594), 1, - sym_parameters, + ACTIONS(5148), 1, + anon_sym_RPAREN, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3054), 2, sym_line_comment, sym_block_comment, - [88291] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88300] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5422), 1, + sym_super, + ACTIONS(6518), 1, + sym_identifier, STATE(3055), 2, sym_line_comment, sym_block_comment, - [88306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88317] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1084), 1, - sym_type_parameters, + ACTIONS(5148), 1, + anon_sym_RBRACK, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3056), 2, sym_line_comment, sym_block_comment, - [88323] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88334] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(225), 1, - sym_closure_parameters, + ACTIONS(6520), 1, + sym_identifier, + ACTIONS(6522), 1, + sym_super, STATE(3057), 2, sym_line_comment, sym_block_comment, - [88340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88351] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, - sym_identifier, - ACTIONS(5995), 1, - sym_mutable_specifier, + STATE(221), 1, + sym_closure_parameters, STATE(3058), 2, sym_line_comment, sym_block_comment, - [88357] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88368] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3587), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(656), 1, + sym_declaration_list, STATE(3059), 2, sym_line_comment, sym_block_comment, - [88374] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88385] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_field_declaration_list, + ACTIONS(5680), 2, + sym_identifier, + sym_super, STATE(3060), 2, sym_line_comment, sym_block_comment, - [88391] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88400] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3591), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(6524), 1, + sym_identifier, + ACTIONS(6526), 1, + sym_super, STATE(3061), 2, sym_line_comment, sym_block_comment, - [88408] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88417] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, + ACTIONS(5680), 1, sym_super, + ACTIONS(6528), 1, + sym_identifier, STATE(3062), 2, sym_line_comment, sym_block_comment, - [88425] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88434] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 2, - sym_identifier, - sym_super, + ACTIONS(5202), 1, + anon_sym_RBRACE, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3063), 2, sym_line_comment, sym_block_comment, - [88440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88451] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6513), 1, - sym_identifier, - ACTIONS(6515), 1, - sym_super, + ACTIONS(6530), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3064), 2, sym_line_comment, sym_block_comment, - [88457] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88466] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6267), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_LPAREN, + STATE(1580), 1, + sym_parameters, STATE(3065), 2, sym_line_comment, sym_block_comment, - [88472] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88483] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6517), 1, - sym_super, + ACTIONS(5204), 1, + anon_sym_RPAREN, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3066), 2, sym_line_comment, sym_block_comment, - [88489] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88500] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, + ACTIONS(5422), 1, sym_super, - ACTIONS(5602), 1, + ACTIONS(6532), 1, sym_identifier, STATE(3067), 2, sym_line_comment, sym_block_comment, - [88506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88517] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6521), 1, - sym_super, + ACTIONS(5281), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3068), 2, sym_line_comment, sym_block_comment, - [88523] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88532] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3637), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(5204), 1, + anon_sym_RBRACK, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3069), 2, sym_line_comment, sym_block_comment, - [88540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88549] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(865), 1, - sym_type_parameters, + ACTIONS(6534), 2, + sym_float_literal, + sym_integer_literal, STATE(3070), 2, sym_line_comment, sym_block_comment, - [88557] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88564] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1622), 1, - sym_parameters, + ACTIONS(5992), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3071), 2, sym_line_comment, sym_block_comment, - [88574] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88579] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, + ACTIONS(6528), 1, sym_identifier, + ACTIONS(6536), 1, + sym_super, STATE(3072), 2, sym_line_comment, sym_block_comment, - [88591] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88596] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(223), 1, + sym_closure_parameters, STATE(3073), 2, sym_line_comment, sym_block_comment, - [88606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88613] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, + ACTIONS(6538), 2, anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3074), 2, sym_line_comment, sym_block_comment, - [88623] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88628] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(3196), 1, - sym_lifetime, + ACTIONS(6540), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3075), 2, sym_line_comment, sym_block_comment, - [88640] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88643] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5250), 1, + anon_sym_LBRACE, + STATE(680), 1, + sym_enum_variant_list, STATE(3076), 2, sym_line_comment, sym_block_comment, - [88655] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88660] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 2, + ACTIONS(5735), 1, sym_identifier, + ACTIONS(5737), 1, sym_super, STATE(3077), 2, sym_line_comment, sym_block_comment, - [88670] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88677] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5635), 2, + sym_identifier, + sym_super, STATE(3078), 2, sym_line_comment, sym_block_comment, - [88685] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88692] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6527), 1, + ACTIONS(6542), 1, sym_identifier, + ACTIONS(6544), 1, + sym_super, STATE(3079), 2, sym_line_comment, sym_block_comment, - [88702] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88709] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_declaration_list, + ACTIONS(6518), 1, + sym_identifier, + ACTIONS(6546), 1, + sym_super, STATE(3080), 2, sym_line_comment, sym_block_comment, - [88719] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88726] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1085), 1, - sym_parameters, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5739), 1, + sym_identifier, STATE(3081), 2, sym_line_comment, sym_block_comment, - [88736] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88743] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 2, + ACTIONS(6548), 1, sym_identifier, + ACTIONS(6550), 1, sym_super, STATE(3082), 2, sym_line_comment, sym_block_comment, - [88751] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88760] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - STATE(2219), 1, + STATE(1072), 1, sym_parameters, STATE(3083), 2, sym_line_comment, sym_block_comment, - [88768] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88777] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6552), 2, + sym_identifier, + sym_super, STATE(3084), 2, sym_line_comment, sym_block_comment, - [88783] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88792] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(3268), 1, anon_sym_LPAREN, - STATE(1598), 1, + STATE(1058), 1, sym_parameters, STATE(3085), 2, sym_line_comment, sym_block_comment, - [88800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88809] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6533), 1, - sym_identifier, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(2690), 1, + sym_trait_bounds, STATE(3086), 2, sym_line_comment, sym_block_comment, - [88817] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88826] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(581), 1, - sym_declaration_list, + ACTIONS(6554), 1, + anon_sym_LT, + STATE(983), 1, + sym_type_parameters, STATE(3087), 2, sym_line_comment, sym_block_comment, - [88834] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88843] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_LPAREN, + STATE(1634), 1, + sym_parameters, STATE(3088), 2, sym_line_comment, sym_block_comment, - [88849] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88860] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5679), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4898), 1, + anon_sym_LBRACE, + STATE(707), 1, + sym_field_declaration_list, STATE(3089), 2, sym_line_comment, sym_block_comment, - [88864] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88877] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1314), 1, - sym_enum_variant_list, + ACTIONS(5166), 1, + anon_sym_RBRACE, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3090), 2, sym_line_comment, sym_block_comment, - [88881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88894] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, + ACTIONS(6556), 2, + sym_identifier, + sym_super, STATE(3091), 2, sym_line_comment, sym_block_comment, - [88898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88909] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6539), 1, - sym_identifier, + ACTIONS(5346), 1, + anon_sym_LBRACE, + STATE(1186), 1, + sym_enum_variant_list, STATE(3092), 2, sym_line_comment, sym_block_comment, - [88915] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88926] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, + ACTIONS(6558), 2, + sym_identifier, + sym_metavariable, STATE(3093), 2, sym_line_comment, sym_block_comment, - [88932] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88941] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(518), 1, + sym_declaration_list, STATE(3094), 2, sym_line_comment, sym_block_comment, - [88949] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88958] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6366), 1, - anon_sym_for, + ACTIONS(6546), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, STATE(3095), 2, sym_line_comment, sym_block_comment, - [88966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88975] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6543), 1, - sym_identifier, + ACTIONS(5979), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3096), 2, sym_line_comment, sym_block_comment, - [88983] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88990] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_field_declaration_list, + ACTIONS(4328), 1, + anon_sym_EQ_GT, + ACTIONS(6562), 1, + anon_sym_AMP_AMP, STATE(3097), 2, - sym_line_comment, - sym_block_comment, - [89000] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_line_comment, + sym_block_comment, + [89007] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(3966), 1, + anon_sym_LPAREN, + STATE(1637), 1, + sym_parameters, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89024] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_declaration_list, + ACTIONS(6554), 1, + anon_sym_LT, + STATE(935), 1, + sym_type_parameters, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89041] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - STATE(1651), 1, - sym_field_initializer_list, + ACTIONS(6082), 1, + anon_sym_EQ_GT, + ACTIONS(6562), 1, + anon_sym_AMP_AMP, STATE(3100), 2, sym_line_comment, sym_block_comment, - [89051] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89058] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1960), 1, - sym_parameters, + ACTIONS(4898), 1, + anon_sym_LBRACE, + STATE(633), 1, + sym_field_declaration_list, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89068] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89075] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6533), 1, - sym_identifier, + ACTIONS(6232), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3102), 2, sym_line_comment, sym_block_comment, - [89085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89090] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, + ACTIONS(6564), 1, anon_sym_RPAREN, - ACTIONS(6547), 1, + ACTIONS(6566), 1, anon_sym_COLON_COLON, STATE(3103), 2, sym_line_comment, sym_block_comment, - [89102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89107] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, + ACTIONS(6568), 1, anon_sym_RPAREN, + ACTIONS(6570), 1, + anon_sym_COLON_COLON, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89119] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89124] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, + ACTIONS(6568), 1, + anon_sym_RPAREN, + ACTIONS(6572), 1, + anon_sym_COLON_COLON, STATE(3105), 2, sym_line_comment, sym_block_comment, - [89136] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89141] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, + ACTIONS(6568), 1, anon_sym_RPAREN, + ACTIONS(6574), 1, + anon_sym_COLON_COLON, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89153] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89158] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6549), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_COLON, + ACTIONS(6536), 1, + sym_super, + ACTIONS(6576), 1, + sym_identifier, STATE(3107), 2, sym_line_comment, sym_block_comment, - [89170] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89175] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, + STATE(235), 1, + sym_closure_parameters, STATE(3108), 2, sym_line_comment, sym_block_comment, - [89187] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89192] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 2, - sym_identifier, - sym_super, + ACTIONS(6578), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89202] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89207] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6553), 1, - sym_identifier, + ACTIONS(6580), 1, + anon_sym_LBRACK, + ACTIONS(6582), 1, + anon_sym_BANG, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89219] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89224] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, + ACTIONS(5422), 1, sym_super, - ACTIONS(5651), 1, + ACTIONS(6584), 1, sym_identifier, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89236] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89241] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6555), 1, - sym_identifier, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_declaration_list, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89253] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89258] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_COLON_COLON, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1207), 1, + sym_field_declaration_list, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89270] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89275] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(684), 1, - sym_field_declaration_list, + STATE(1208), 1, + sym_declaration_list, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89287] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89292] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1341), 1, - sym_field_declaration_list, + STATE(233), 1, + sym_closure_parameters, STATE(3115), 2, sym_line_comment, sym_block_comment, - [89304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89309] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(1342), 1, + STATE(1209), 1, sym_declaration_list, STATE(3116), 2, sym_line_comment, sym_block_comment, - [89321] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89326] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym_declaration_list, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(5963), 1, + anon_sym_for, STATE(3117), 2, sym_line_comment, sym_block_comment, - [89338] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89343] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - anon_sym_SEMI, - ACTIONS(6563), 1, - anon_sym_as, + ACTIONS(6586), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3118), 2, sym_line_comment, sym_block_comment, - [89355] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89358] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_field_declaration_list, + ACTIONS(5680), 1, + sym_super, + ACTIONS(6576), 1, + sym_identifier, STATE(3119), 2, sym_line_comment, sym_block_comment, - [89372] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89375] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1215), 1, + sym_field_declaration_list, STATE(3120), 2, sym_line_comment, sym_block_comment, - [89387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89392] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_LBRACK, - ACTIONS(6567), 1, - anon_sym_BANG, + ACTIONS(5422), 1, + sym_super, + ACTIONS(6588), 1, + sym_identifier, STATE(3121), 2, sym_line_comment, sym_block_comment, - [89404] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89409] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(709), 1, + sym_declaration_list, STATE(3122), 2, sym_line_comment, sym_block_comment, - [89421] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89426] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1355), 1, - sym_declaration_list, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5617), 1, + sym_identifier, STATE(3123), 2, sym_line_comment, sym_block_comment, - [89438] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89443] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6569), 1, - sym_identifier, + STATE(236), 1, + sym_closure_parameters, STATE(3124), 2, sym_line_comment, sym_block_comment, - [89455] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89460] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6571), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1220), 1, + sym_declaration_list, STATE(3125), 2, sym_line_comment, sym_block_comment, - [89472] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89477] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(2187), 1, + sym_parameters, STATE(3126), 2, sym_line_comment, sym_block_comment, - [89489] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89494] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(241), 1, - sym_closure_parameters, + ACTIONS(5737), 2, + sym_identifier, + sym_super, STATE(3127), 2, sym_line_comment, sym_block_comment, - [89506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89509] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4898), 1, anon_sym_LBRACE, - STATE(675), 1, + STATE(690), 1, sym_field_declaration_list, STATE(3128), 2, sym_line_comment, sym_block_comment, - [89523] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89526] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1360), 1, - sym_enum_variant_list, + ACTIONS(6546), 1, + sym_super, + ACTIONS(6590), 1, + sym_identifier, STATE(3129), 2, sym_line_comment, sym_block_comment, - [89540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89543] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, + ACTIONS(5152), 1, sym_super, - ACTIONS(6575), 1, + ACTIONS(5654), 1, sym_identifier, STATE(3130), 2, sym_line_comment, sym_block_comment, - [89557] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89560] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6550), 1, + sym_super, + ACTIONS(6592), 1, + sym_identifier, STATE(3131), 2, sym_line_comment, sym_block_comment, - [89572] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89577] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, + ACTIONS(5346), 1, + anon_sym_LBRACE, + STATE(1225), 1, + sym_enum_variant_list, STATE(3132), 2, sym_line_comment, sym_block_comment, - [89589] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89594] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - sym_identifier, - ACTIONS(6581), 1, + ACTIONS(5152), 1, sym_super, + ACTIONS(5785), 1, + sym_identifier, STATE(3133), 2, sym_line_comment, sym_block_comment, - [89606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89611] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6507), 1, - sym_identifier, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(1970), 1, + sym_parameters, STATE(3134), 2, sym_line_comment, sym_block_comment, - [89623] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89628] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 2, - sym_identifier, - sym_super, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1228), 1, + sym_field_declaration_list, STATE(3135), 2, sym_line_comment, sym_block_comment, - [89638] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89645] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_field_declaration_list, + ACTIONS(6594), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3136), 2, sym_line_comment, sym_block_comment, - [89655] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89660] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4944), 1, anon_sym_LBRACE, - STATE(1370), 1, + STATE(1231), 1, sym_field_declaration_list, STATE(3137), 2, sym_line_comment, sym_block_comment, - [89672] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89677] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6550), 2, + sym_identifier, + sym_super, STATE(3138), 2, sym_line_comment, sym_block_comment, - [89687] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89692] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, - anon_sym_SEMI, - ACTIONS(6587), 1, - anon_sym_as, + ACTIONS(5656), 2, + sym_identifier, + sym_super, STATE(3139), 2, sym_line_comment, sym_block_comment, - [89704] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89707] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, + ACTIONS(6596), 2, sym_identifier, - ACTIONS(6591), 1, - sym_mutable_specifier, + sym_metavariable, STATE(3140), 2, sym_line_comment, sym_block_comment, - [89721] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89722] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, + ACTIONS(6598), 1, anon_sym_SEMI, + ACTIONS(6600), 1, + anon_sym_as, STATE(3141), 2, sym_line_comment, sym_block_comment, - [89738] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89739] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(6550), 1, sym_super, - ACTIONS(6593), 1, + ACTIONS(6602), 1, sym_identifier, STATE(3142), 2, sym_line_comment, sym_block_comment, - [89755] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89756] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6339), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3143), 2, sym_line_comment, sym_block_comment, - [89770] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89771] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, + STATE(725), 1, + sym_enum_variant_list, STATE(3144), 2, sym_line_comment, sym_block_comment, - [89787] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89788] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6597), 1, - sym_identifier, + ACTIONS(6604), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3145), 2, sym_line_comment, sym_block_comment, - [89804] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89803] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, + STATE(241), 1, + sym_closure_parameters, STATE(3146), 2, sym_line_comment, sym_block_comment, - [89821] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89820] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6599), 1, - sym_identifier, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(6152), 1, + anon_sym_for, STATE(3147), 2, sym_line_comment, sym_block_comment, - [89838] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89837] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5654), 1, + sym_identifier, + ACTIONS(5656), 1, + sym_super, STATE(3148), 2, sym_line_comment, sym_block_comment, - [89853] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89854] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_parameters, + ACTIONS(6536), 1, + sym_super, + ACTIONS(6606), 1, + sym_identifier, STATE(3149), 2, sym_line_comment, sym_block_comment, - [89870] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89871] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, + STATE(242), 1, + sym_closure_parameters, STATE(3150), 2, sym_line_comment, sym_block_comment, - [89887] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89888] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(6510), 1, anon_sym_SEMI, - ACTIONS(6601), 1, + ACTIONS(6608), 1, anon_sym_RBRACE, STATE(3151), 2, sym_line_comment, sym_block_comment, - [89904] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89905] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1183), 1, - sym_type_arguments, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6610), 1, + anon_sym_RBRACE, STATE(3152), 2, sym_line_comment, sym_block_comment, - [89921] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89922] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, + ACTIONS(6552), 1, + sym_super, + ACTIONS(6612), 1, + sym_identifier, STATE(3153), 2, sym_line_comment, sym_block_comment, - [89938] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89939] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_enum_variant_list, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5783), 1, + sym_identifier, STATE(3154), 2, sym_line_comment, sym_block_comment, - [89955] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89956] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6605), 1, - anon_sym_RBRACE, + ACTIONS(6614), 1, + sym_identifier, + ACTIONS(6616), 1, + sym_super, STATE(3155), 2, sym_line_comment, sym_block_comment, - [89972] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89973] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, + ACTIONS(3972), 1, + anon_sym_LT2, + STATE(1835), 1, + sym_type_arguments, STATE(3156), 2, sym_line_comment, sym_block_comment, - [89989] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89990] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 1, - sym_identifier, - ACTIONS(6609), 1, - sym_super, + ACTIONS(4898), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_field_declaration_list, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90007] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6611), 1, - sym_identifier, + ACTIONS(6566), 1, + anon_sym_COLON_COLON, + ACTIONS(6618), 1, + anon_sym_RPAREN, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90023] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90024] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(521), 1, - sym_enum_variant_list, + ACTIONS(6620), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90039] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 1, + ACTIONS(6536), 1, sym_super, - ACTIONS(5787), 1, + ACTIONS(6622), 1, sym_identifier, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90057] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90056] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, + ACTIONS(6546), 1, sym_super, - ACTIONS(6613), 1, + ACTIONS(6624), 1, sym_identifier, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90074] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90073] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5793), 1, + sym_identifier, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90091] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90090] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2180), 1, - sym_parameters, + ACTIONS(6616), 1, + sym_super, + ACTIONS(6626), 1, + sym_identifier, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90107] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6571), 1, - sym_identifier, + ACTIONS(4639), 1, + anon_sym_BANG, + ACTIONS(4691), 1, + anon_sym_COLON_COLON, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90125] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90124] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6543), 1, - sym_identifier, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(526), 1, + sym_declaration_list, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90142] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90141] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3731), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(6536), 2, + sym_identifier, + sym_super, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90159] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90156] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, + ACTIONS(6570), 1, + anon_sym_COLON_COLON, + ACTIONS(6628), 1, + anon_sym_RPAREN, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90176] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90173] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6579), 1, - sym_identifier, + ACTIONS(6630), 1, + anon_sym_LPAREN, + ACTIONS(6632), 1, + anon_sym_COLON_COLON, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90193] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90190] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_declaration_list, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90210] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90207] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6615), 1, - sym_identifier, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(567), 1, + sym_declaration_list, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90227] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90224] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(5222), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90244] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90239] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, + ACTIONS(6634), 1, sym_identifier, + ACTIONS(6636), 1, + sym_super, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90261] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90256] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(6546), 1, sym_super, - ACTIONS(6617), 1, + ACTIONS(6638), 1, sym_identifier, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90273] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_identifier, - ACTIONS(6581), 1, + ACTIONS(5635), 1, sym_super, + ACTIONS(5801), 1, + sym_identifier, STATE(3174), 2, sym_line_comment, sym_block_comment, - [90295] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90290] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(6556), 1, sym_super, - ACTIONS(6619), 1, + ACTIONS(6640), 1, sym_identifier, STATE(3175), 2, sym_line_comment, sym_block_comment, - [90312] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90307] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 2, - sym_identifier, - sym_super, + ACTIONS(6572), 1, + anon_sym_COLON_COLON, + ACTIONS(6628), 1, + anon_sym_RPAREN, STATE(3176), 2, sym_line_comment, sym_block_comment, - [90327] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90324] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, + ACTIONS(4898), 1, + anon_sym_LBRACE, + STATE(731), 1, + sym_field_declaration_list, STATE(3177), 2, sym_line_comment, sym_block_comment, - [90344] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90341] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6621), 1, - sym_identifier, + ACTIONS(6574), 1, + anon_sym_COLON_COLON, + ACTIONS(6628), 1, + anon_sym_RPAREN, STATE(3178), 2, sym_line_comment, sym_block_comment, - [90361] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90358] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(6623), 1, - anon_sym_AMP_AMP, + ACTIONS(5680), 1, + sym_super, + ACTIONS(6606), 1, + sym_identifier, STATE(3179), 2, sym_line_comment, sym_block_comment, - [90378] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90375] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(6546), 1, sym_super, - ACTIONS(6625), 1, + ACTIONS(6584), 1, sym_identifier, STATE(3180), 2, sym_line_comment, sym_block_comment, - [90395] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90392] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - anon_sym_EQ_GT, - ACTIONS(6623), 1, - anon_sym_AMP_AMP, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5783), 1, + sym_identifier, STATE(3181), 2, sym_line_comment, sym_block_comment, - [90412] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90409] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(6550), 1, sym_super, - ACTIONS(5793), 1, + ACTIONS(6614), 1, sym_identifier, STATE(3182), 2, sym_line_comment, sym_block_comment, - [90429] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90426] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(6546), 1, sym_super, - ACTIONS(6627), 1, + ACTIONS(6588), 1, sym_identifier, STATE(3183), 2, sym_line_comment, sym_block_comment, - [90446] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90443] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6536), 1, + sym_super, + ACTIONS(6642), 1, + sym_identifier, STATE(3184), 2, sym_line_comment, sym_block_comment, - [90461] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90460] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 2, - sym_identifier, + ACTIONS(5656), 1, sym_super, + ACTIONS(5803), 1, + sym_identifier, STATE(3185), 2, sym_line_comment, sym_block_comment, - [90476] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90477] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, + ACTIONS(6616), 1, sym_super, - ACTIONS(5793), 1, + ACTIONS(6644), 1, sym_identifier, STATE(3186), 2, sym_line_comment, sym_block_comment, - [90493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90494] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, + ACTIONS(6536), 1, sym_super, - ACTIONS(6627), 1, + ACTIONS(6646), 1, sym_identifier, STATE(3187), 2, sym_line_comment, sym_block_comment, - [90510] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90511] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6631), 1, - anon_sym_in, + ACTIONS(6648), 1, + anon_sym_SEMI, + ACTIONS(6650), 1, + anon_sym_as, STATE(3188), 2, sym_line_comment, sym_block_comment, - [90527] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90528] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5805), 1, + sym_identifier, STATE(3189), 2, sym_line_comment, sym_block_comment, - [90542] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90545] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_field_declaration_list, + ACTIONS(6616), 1, + sym_super, + ACTIONS(6652), 1, + sym_identifier, STATE(3190), 2, sym_line_comment, sym_block_comment, - [90559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90562] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, + ACTIONS(6592), 1, sym_identifier, + ACTIONS(6616), 1, + sym_super, STATE(3191), 2, sym_line_comment, sym_block_comment, - [90576] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90579] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(6536), 1, + sym_super, + ACTIONS(6654), 1, + sym_identifier, STATE(3192), 2, sym_line_comment, sym_block_comment, - [90593] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90596] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5739), 1, + sym_identifier, STATE(3193), 2, sym_line_comment, sym_block_comment, - [90610] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90613] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, + ACTIONS(5656), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, STATE(3194), 2, sym_line_comment, sym_block_comment, - [90627] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90630] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(6616), 1, + sym_super, + ACTIONS(6656), 1, + sym_identifier, STATE(3195), 2, sym_line_comment, sym_block_comment, - [90642] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5680), 1, + sym_super, + ACTIONS(6654), 1, + sym_identifier, STATE(3196), 2, sym_line_comment, sym_block_comment, - [90657] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90664] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6658), 1, + anon_sym_SEMI, + ACTIONS(6660), 1, + anon_sym_as, STATE(3197), 2, sym_line_comment, sym_block_comment, - [90672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90681] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_COLON_COLON, + ACTIONS(5152), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, STATE(3198), 2, sym_line_comment, sym_block_comment, - [90689] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90698] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, + ACTIONS(6550), 1, + sym_super, + ACTIONS(6656), 1, sym_identifier, - sym_metavariable, STATE(3199), 2, sym_line_comment, sym_block_comment, - [90704] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90715] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5250), 1, + anon_sym_LBRACE, + STATE(672), 1, + sym_enum_variant_list, STATE(3200), 2, sym_line_comment, sym_block_comment, - [90719] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90732] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(6548), 1, + sym_identifier, + ACTIONS(6616), 1, + sym_super, STATE(3201), 2, sym_line_comment, sym_block_comment, - [90734] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90749] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_COLON_COLON, + ACTIONS(4898), 1, + anon_sym_LBRACE, + STATE(696), 1, + sym_field_declaration_list, STATE(3202), 2, sym_line_comment, sym_block_comment, - [90751] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90766] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5151), 2, - anon_sym_RPAREN, + ACTIONS(6037), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3203), 2, sym_line_comment, sym_block_comment, - [90766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90781] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, + ACTIONS(6662), 1, + anon_sym_STAR_SLASH, + ACTIONS(6664), 1, + sym__block_comment_content, STATE(3204), 2, sym_line_comment, sym_block_comment, - [90783] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90798] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 2, - sym_identifier, - sym_super, + ACTIONS(4639), 1, + anon_sym_BANG, + ACTIONS(4703), 1, + anon_sym_COLON_COLON, STATE(3205), 2, sym_line_comment, sym_block_comment, - [90798] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90815] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6645), 1, - sym_identifier, + ACTIONS(4898), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_field_declaration_list, STATE(3206), 2, sym_line_comment, sym_block_comment, - [90815] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90832] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1963), 1, - sym_parameters, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(698), 1, + sym_declaration_list, STATE(3207), 2, sym_line_comment, sym_block_comment, - [90832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90849] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_PLUS, STATE(3208), 2, sym_line_comment, sym_block_comment, - [90849] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90866] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, + ACTIONS(6630), 1, + anon_sym_LPAREN, + ACTIONS(6666), 1, anon_sym_COLON_COLON, STATE(3209), 2, sym_line_comment, sym_block_comment, - [90866] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90883] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_declaration_list, + ACTIONS(6668), 1, + sym_identifier, + ACTIONS(6670), 1, + sym_mutable_specifier, STATE(3210), 2, sym_line_comment, sym_block_comment, - [90883] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90900] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1074), 1, - sym_type_parameters, + ACTIONS(6672), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3211), 2, sym_line_comment, sym_block_comment, - [90900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90915] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6647), 1, - anon_sym_EQ, + ACTIONS(6674), 1, + anon_sym_BANG, + ACTIONS(6676), 1, + anon_sym_COLON_COLON, STATE(3212), 2, sym_line_comment, sym_block_comment, - [90917] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90932] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1668), 1, - sym_type_arguments, + ACTIONS(5680), 1, + sym_super, + ACTIONS(6678), 1, + sym_identifier, STATE(3213), 2, sym_line_comment, sym_block_comment, - [90934] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90949] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2215), 1, - sym_parameters, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1204), 1, + sym_field_initializer_list, STATE(3214), 2, sym_line_comment, sym_block_comment, - [90951] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90966] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1416), 1, - sym_declaration_list, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(1964), 1, + sym_parameters, STATE(3215), 2, sym_line_comment, sym_block_comment, - [90968] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90983] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_field_initializer_list, + ACTIONS(6554), 1, + anon_sym_LT, + STATE(924), 1, + sym_type_parameters, STATE(3216), 2, sym_line_comment, sym_block_comment, - [90985] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91000] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(5152), 2, + sym_identifier, + sym_super, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91015] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_declaration_list, + ACTIONS(6550), 1, + sym_super, + ACTIONS(6680), 1, + sym_identifier, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91032] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(1424), 1, + STATE(1271), 1, sym_declaration_list, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91049] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_declaration_list, + ACTIONS(3268), 1, + anon_sym_LPAREN, + STATE(1066), 1, + sym_parameters, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91051] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91066] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(572), 1, - sym_declaration_list, + STATE(217), 1, + sym_closure_parameters, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91068] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91083] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1277), 1, + sym_declaration_list, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91100] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1278), 1, + sym_declaration_list, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91117] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RPAREN, + ACTIONS(6554), 1, + anon_sym_LT, + STATE(1086), 1, + sym_type_parameters, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91119] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91134] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(3714), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91136] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91149] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(2199), 1, + sym_parameters, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91153] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91166] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, + ACTIONS(5422), 2, + sym_identifier, + sym_super, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91170] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91181] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2194), 1, - sym_parameters, + ACTIONS(6636), 2, + sym_identifier, + sym_super, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91187] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91196] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1433), 1, - sym_enum_variant_list, + ACTIONS(6330), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91204] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91211] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5346), 1, anon_sym_LBRACE, - STATE(620), 1, - sym_declaration_list, + STATE(1286), 1, + sym_enum_variant_list, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91221] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91228] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4898), 1, anon_sym_LBRACE, - STATE(1436), 1, + STATE(715), 1, sym_field_declaration_list, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91238] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91245] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5250), 1, + anon_sym_LBRACE, + STATE(597), 1, + sym_enum_variant_list, STATE(3232), 2, sym_line_comment, sym_block_comment, - [91253] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91262] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4944), 1, anon_sym_LBRACE, - STATE(1438), 1, + STATE(1289), 1, sym_field_declaration_list, STATE(3233), 2, sym_line_comment, sym_block_comment, - [91270] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91279] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_declaration_list, + ACTIONS(6237), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91287] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91294] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1291), 1, + sym_field_declaration_list, STATE(3235), 2, sym_line_comment, sym_block_comment, - [91302] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91311] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6651), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_declaration_list, STATE(3236), 2, sym_line_comment, sym_block_comment, - [91319] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91328] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - STATE(2202), 1, + STATE(2223), 1, sym_parameters, STATE(3237), 2, sym_line_comment, sym_block_comment, - [91336] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91345] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(2224), 1, + sym_parameters, STATE(3238), 2, sym_line_comment, sym_block_comment, - [91351] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91362] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, + ACTIONS(5162), 1, + anon_sym_RPAREN, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3239), 2, sym_line_comment, sym_block_comment, - [91368] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91379] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(859), 1, - sym_type_parameters, + ACTIONS(5162), 1, + anon_sym_RBRACK, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3240), 2, sym_line_comment, sym_block_comment, - [91385] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91396] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RPAREN, + ACTIONS(5346), 1, + anon_sym_LBRACE, + STATE(1133), 1, + sym_enum_variant_list, STATE(3241), 2, sym_line_comment, sym_block_comment, - [91402] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91413] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(5164), 1, + anon_sym_RPAREN, + ACTIONS(6510), 1, anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RBRACK, STATE(3242), 2, sym_line_comment, sym_block_comment, - [91419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91430] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, - anon_sym_RPAREN, + ACTIONS(5422), 1, + sym_super, + ACTIONS(6682), 1, + sym_identifier, STATE(3243), 2, sym_line_comment, sym_block_comment, - [91436] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91447] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, + ACTIONS(5164), 1, anon_sym_RBRACK, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3244), 2, sym_line_comment, sym_block_comment, - [91453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91464] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RBRACK, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_in, STATE(3245), 2, sym_line_comment, sym_block_comment, - [91470] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91481] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, - sym_identifier, - ACTIONS(6661), 1, - sym_mutable_specifier, + ACTIONS(3764), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3246), 2, sym_line_comment, sym_block_comment, - [91487] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91496] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, - sym_super, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6686), 1, + anon_sym_EQ, STATE(3247), 2, sym_line_comment, sym_block_comment, - [91504] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91513] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6663), 1, - anon_sym_RBRACE, + ACTIONS(5847), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3248), 2, sym_line_comment, sym_block_comment, - [91521] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91528] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_declaration_list, STATE(3249), 2, sym_line_comment, sym_block_comment, - [91538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91545] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6665), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_in, STATE(3250), 2, sym_line_comment, sym_block_comment, - [91553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91562] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(524), 1, - sym_field_declaration_list, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6690), 1, + anon_sym_EQ, STATE(3251), 2, sym_line_comment, sym_block_comment, - [91570] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91579] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(2239), 1, + sym_parameters, STATE(3252), 2, sym_line_comment, sym_block_comment, - [91585] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91596] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2227), 1, - sym_parameters, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6692), 1, + anon_sym_RPAREN, STATE(3253), 2, sym_line_comment, sym_block_comment, - [91602] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91613] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6669), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6692), 1, + anon_sym_RBRACK, STATE(3254), 2, sym_line_comment, sym_block_comment, - [91617] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91630] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_enum_variant_list, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6694), 1, + anon_sym_RPAREN, STATE(3255), 2, sym_line_comment, sym_block_comment, - [91634] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6694), 1, + anon_sym_RBRACK, STATE(3256), 2, sym_line_comment, sym_block_comment, - [91649] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91664] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_declaration_list, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(5998), 1, + anon_sym_for, STATE(3257), 2, sym_line_comment, sym_block_comment, - [91666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91681] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(897), 1, - sym_type_parameters, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1146), 1, + sym_field_declaration_list, STATE(3258), 2, sym_line_comment, sym_block_comment, - [91683] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91698] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1083), 1, - sym_parameters, + ACTIONS(6696), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3259), 2, sym_line_comment, sym_block_comment, - [91700] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91713] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 2, - sym_identifier, - sym_super, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1149), 1, + sym_declaration_list, STATE(3260), 2, sym_line_comment, sym_block_comment, - [91715] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91730] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 2, - sym_identifier, - sym_super, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 1, + anon_sym_for, STATE(3261), 2, sym_line_comment, sym_block_comment, - [91730] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91747] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_COLON_COLON, + ACTIONS(4900), 1, + anon_sym_LT, + STATE(1001), 1, + sym_type_parameters, STATE(3262), 2, sym_line_comment, sym_block_comment, - [91747] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91764] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5422), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, STATE(3263), 2, sym_line_comment, sym_block_comment, - [91762] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91781] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 1, - anon_sym_BANG, - ACTIONS(6679), 1, - anon_sym_COLON_COLON, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(2238), 1, + sym_parameters, STATE(3264), 2, sym_line_comment, sym_block_comment, - [91779] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91798] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6681), 1, - anon_sym_STAR_SLASH, - ACTIONS(6683), 1, - sym__block_comment_content, + ACTIONS(6698), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3265), 2, sym_line_comment, sym_block_comment, - [91796] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91813] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1068), 1, - sym_type_parameters, + ACTIONS(6700), 2, + sym_float_literal, + sym_integer_literal, STATE(3266), 2, sym_line_comment, sym_block_comment, - [91813] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91828] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_in, + ACTIONS(4944), 1, + anon_sym_LBRACE, + STATE(1155), 1, + sym_field_declaration_list, STATE(3267), 2, sym_line_comment, sym_block_comment, - [91830] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91845] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5510), 1, + ACTIONS(3766), 1, anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_PLUS, STATE(3268), 2, sym_line_comment, sym_block_comment, - [91847] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91862] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1233), 1, - sym_enum_variant_list, + ACTIONS(3748), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_PLUS, STATE(3269), 2, sym_line_comment, sym_block_comment, - [91864] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91879] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6687), 1, + ACTIONS(6616), 2, sym_identifier, + sym_super, STATE(3270), 2, sym_line_comment, sym_block_comment, - [91881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91894] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_declaration_list, + ACTIONS(6702), 1, + anon_sym_SEMI, + ACTIONS(6704), 1, + anon_sym_as, STATE(3271), 2, sym_line_comment, sym_block_comment, - [91898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_EQ, + ACTIONS(5680), 1, + sym_super, + ACTIONS(6706), 1, + sym_identifier, STATE(3272), 2, sym_line_comment, sym_block_comment, - [91915] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91928] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6691), 1, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(6708), 1, anon_sym_COLON_COLON, STATE(3273), 2, sym_line_comment, sym_block_comment, - [91932] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91945] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_declaration_list, + ACTIONS(6710), 1, + anon_sym_LPAREN, + ACTIONS(6712), 1, + anon_sym_COLON_COLON, STATE(3274), 2, sym_line_comment, sym_block_comment, - [91949] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91962] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_declaration_list, + ACTIONS(6714), 2, + sym_identifier, + sym_metavariable, STATE(3275), 2, sym_line_comment, sym_block_comment, - [91966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91977] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(513), 1, + STATE(1337), 1, sym_declaration_list, STATE(3276), 2, sym_line_comment, sym_block_comment, - [91983] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91994] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6693), 1, - anon_sym_GT, + ACTIONS(6716), 1, + anon_sym_BANG, + ACTIONS(6718), 1, + anon_sym_COLON_COLON, STATE(3277), 2, sym_line_comment, sym_block_comment, - [92000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92011] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, - anon_sym_COLON_COLON, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6224), 1, + sym_mutable_specifier, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92028] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RPAREN, + ACTIONS(6554), 1, + anon_sym_LT, + STATE(1091), 1, + sym_type_parameters, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92045] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6699), 1, - anon_sym_LBRACK, - ACTIONS(6701), 1, - anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_COLON, + ACTIONS(5430), 1, + anon_sym_PIPE, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92051] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92062] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1345), 1, + sym_declaration_list, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92079] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(506), 1, + STATE(1346), 1, sym_declaration_list, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92083] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92096] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_in, + ACTIONS(6030), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92111] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RBRACK, + ACTIONS(6630), 1, + anon_sym_LPAREN, + ACTIONS(6720), 1, + anon_sym_COLON_COLON, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92117] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92128] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6707), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5702), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92132] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92143] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(526), 1, - sym_field_declaration_list, + STATE(655), 1, + sym_declaration_list, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92149] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92160] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_for, + STATE(224), 1, + sym_closure_parameters, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92177] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6709), 1, - anon_sym_RBRACE, + ACTIONS(6630), 1, + anon_sym_LPAREN, + ACTIONS(6722), 1, + anon_sym_COLON_COLON, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92183] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92194] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6687), 1, - sym_identifier, + ACTIONS(6724), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92209] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_field_declaration_list, + ACTIONS(6726), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, + anon_sym_BANG, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92217] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92226] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 2, + ACTIONS(6730), 2, sym_identifier, sym_metavariable, STATE(3291), 2, sym_line_comment, sym_block_comment, - [92232] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92241] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6444), 1, - anon_sym_for, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6512), 1, + anon_sym_RBRACK, STATE(3292), 2, sym_line_comment, sym_block_comment, - [92249] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92258] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_declaration_list, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6732), 1, + anon_sym_in, STATE(3293), 2, sym_line_comment, sym_block_comment, - [92266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92275] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6446), 1, - anon_sym_for, + ACTIONS(5879), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3294), 2, sym_line_comment, sym_block_comment, - [92283] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92290] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(912), 1, - sym_type_parameters, + ACTIONS(5717), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3295), 2, sym_line_comment, sym_block_comment, - [92300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92305] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_in, + ACTIONS(6734), 2, + sym_identifier, + sym_metavariable, STATE(3296), 2, sym_line_comment, sym_block_comment, - [92317] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92320] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6456), 1, - anon_sym_for, + ACTIONS(5010), 1, + anon_sym_PLUS, + ACTIONS(6736), 1, + anon_sym_GT, STATE(3297), 2, sym_line_comment, sym_block_comment, - [92334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92337] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_BANG, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6738), 1, + anon_sym_RBRACE, STATE(3298), 2, sym_line_comment, sym_block_comment, - [92351] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92354] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6719), 1, - anon_sym_in, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(4986), 1, + anon_sym_for, STATE(3299), 2, sym_line_comment, sym_block_comment, - [92368] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92371] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_in, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(1962), 1, + sym_parameters, STATE(3300), 2, sym_line_comment, sym_block_comment, - [92385] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92388] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6723), 1, - anon_sym_in, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + STATE(3096), 1, + sym_lifetime, STATE(3301), 2, sym_line_comment, sym_block_comment, - [92402] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92405] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6725), 1, - anon_sym_in, + ACTIONS(3276), 1, + anon_sym_LT2, + STATE(1421), 1, + sym_type_arguments, STATE(3302), 2, sym_line_comment, sym_block_comment, - [92419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92422] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1941), 1, - sym_parameters, + ACTIONS(6546), 2, + sym_identifier, + sym_super, STATE(3303), 2, sym_line_comment, sym_block_comment, - [92436] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92437] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, - sym_identifier, - ACTIONS(6469), 1, - sym_mutable_specifier, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + STATE(3017), 1, + sym_lifetime, STATE(3304), 2, sym_line_comment, sym_block_comment, - [92453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92454] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1267), 1, - sym_field_declaration_list, + ACTIONS(6740), 2, + sym_identifier, + sym_metavariable, STATE(3305), 2, sym_line_comment, sym_block_comment, - [92470] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92469] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6471), 1, - anon_sym_for, + ACTIONS(6742), 1, + sym_identifier, + ACTIONS(6744), 1, + sym_mutable_specifier, STATE(3306), 2, sym_line_comment, sym_block_comment, - [92487] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92486] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(2996), 1, - sym_lifetime, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(6488), 1, + anon_sym_for, STATE(3307), 2, sym_line_comment, sym_block_comment, - [92504] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92503] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - sym_mutable_specifier, + STATE(239), 1, + sym_closure_parameters, STATE(3308), 2, sym_line_comment, sym_block_comment, - [92521] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92520] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - anon_sym_COLON_COLON, - ACTIONS(6731), 1, - anon_sym_RPAREN, + ACTIONS(5206), 1, + anon_sym_RBRACE, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3309), 2, sym_line_comment, sym_block_comment, - [92538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92537] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 2, - sym_identifier, - sym_super, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(6492), 1, + anon_sym_for, STATE(3310), 2, sym_line_comment, sym_block_comment, - [92553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92554] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6625), 1, - sym_identifier, + ACTIONS(3580), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_PLUS, STATE(3311), 2, sym_line_comment, sym_block_comment, - [92570] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92571] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, + ACTIONS(3584), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_PLUS, STATE(3312), 2, sym_line_comment, sym_block_comment, - [92584] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92588] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(953), 1, - anon_sym_EQ_GT, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_in, STATE(3313), 2, sym_line_comment, sym_block_comment, - [92598] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92605] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, - sym_identifier, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, + ACTIONS(6496), 1, + anon_sym_for, STATE(3314), 2, sym_line_comment, sym_block_comment, - [92612] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92622] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, - sym_identifier, + ACTIONS(6748), 1, + anon_sym_LBRACK, + ACTIONS(6750), 1, + anon_sym_BANG, STATE(3315), 2, sym_line_comment, sym_block_comment, - [92626] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92639] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 1, - sym_identifier, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6752), 1, + anon_sym_in, STATE(3316), 2, sym_line_comment, sym_block_comment, - [92640] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92656] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 1, - sym_identifier, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_in, STATE(3317), 2, sym_line_comment, sym_block_comment, - [92654] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92673] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6741), 1, - anon_sym_COLON, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6756), 1, + anon_sym_in, STATE(3318), 2, sym_line_comment, sym_block_comment, - [92668] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92690] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6743), 1, - sym__line_doc_content, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(6758), 1, + anon_sym_in, STATE(3319), 2, sym_line_comment, sym_block_comment, - [92682] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92707] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - anon_sym_SEMI, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_declaration_list, STATE(3320), 2, sym_line_comment, sym_block_comment, - [92696] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92724] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_RBRACK, + ACTIONS(6498), 1, + sym_identifier, + ACTIONS(6502), 1, + sym_mutable_specifier, STATE(3321), 2, sym_line_comment, sym_block_comment, - [92710] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92741] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6760), 1, + anon_sym_RPAREN, STATE(3322), 2, sym_line_comment, sym_block_comment, - [92724] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92758] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6749), 1, - anon_sym_LPAREN, + ACTIONS(5228), 1, + anon_sym_RBRACE, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3323), 2, sym_line_comment, sym_block_comment, - [92738] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92775] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, + ACTIONS(6510), 1, + anon_sym_SEMI, + ACTIONS(6760), 1, + anon_sym_RBRACK, STATE(3324), 2, sym_line_comment, sym_block_comment, - [92752] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92792] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(961), 1, - anon_sym_EQ_GT, + ACTIONS(6762), 1, + sym_identifier, + ACTIONS(6764), 1, + sym_mutable_specifier, STATE(3325), 2, sym_line_comment, sym_block_comment, - [92766] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92809] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 1, - anon_sym_RBRACK, + ACTIONS(3996), 1, + anon_sym_LBRACE, + STATE(1748), 1, + sym_field_initializer_list, STATE(3326), 2, sym_line_comment, sym_block_comment, - [92780] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92826] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - anon_sym_SEMI, + ACTIONS(6554), 1, + anon_sym_LT, + STATE(1087), 1, + sym_type_parameters, STATE(3327), 2, sym_line_comment, sym_block_comment, - [92794] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92843] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, - anon_sym_SEMI, + ACTIONS(6766), 1, + anon_sym_fn, STATE(3328), 2, sym_line_comment, sym_block_comment, - [92808] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92857] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 1, - anon_sym_SEMI, + ACTIONS(5899), 1, + anon_sym_LBRACE, STATE(3329), 2, sym_line_comment, sym_block_comment, - [92822] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92871] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6759), 1, - anon_sym_fn, + ACTIONS(6768), 1, + sym_identifier, STATE(3330), 2, sym_line_comment, sym_block_comment, - [92836] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92885] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, - anon_sym_COLON, + ACTIONS(6770), 1, + sym_identifier, STATE(3331), 2, sym_line_comment, sym_block_comment, - [92850] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92899] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, + ACTIONS(6772), 1, + sym_identifier, STATE(3332), 2, sym_line_comment, sym_block_comment, - [92864] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92913] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym__line_doc_content, + ACTIONS(6774), 1, + sym_identifier, STATE(3333), 2, sym_line_comment, sym_block_comment, - [92878] = 4, - ACTIONS(101), 1, + [92927] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, - anon_sym_RBRACK, + ACTIONS(6776), 1, + aux_sym_line_comment_token2, STATE(3334), 2, sym_line_comment, sym_block_comment, - [92892] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92941] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6765), 1, - sym_identifier, + ACTIONS(4919), 1, + anon_sym_COLON_COLON, STATE(3335), 2, sym_line_comment, sym_block_comment, - [92906] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92955] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6767), 1, - anon_sym_RBRACK, + ACTIONS(6778), 1, + sym_identifier, STATE(3336), 2, sym_line_comment, sym_block_comment, - [92920] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92969] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_EQ_GT, + ACTIONS(3082), 1, + anon_sym_PLUS, STATE(3337), 2, sym_line_comment, sym_block_comment, - [92934] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92983] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6771), 1, - anon_sym_fn, + ACTIONS(4082), 1, + anon_sym_COLON_COLON, STATE(3338), 2, sym_line_comment, sym_block_comment, - [92948] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92997] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_RPAREN, + ACTIONS(6780), 1, + anon_sym_RBRACK, STATE(3339), 2, sym_line_comment, sym_block_comment, - [92962] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93011] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6773), 1, + ACTIONS(4601), 1, anon_sym_COLON_COLON, STATE(3340), 2, sym_line_comment, sym_block_comment, - [92976] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93025] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, - sym__line_doc_content, + ACTIONS(6782), 1, + sym_identifier, STATE(3341), 2, sym_line_comment, sym_block_comment, - [92990] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93039] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6777), 1, - sym_identifier, + ACTIONS(5426), 1, + anon_sym_RPAREN, STATE(3342), 2, sym_line_comment, sym_block_comment, - [93004] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93053] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RBRACE, + ACTIONS(6572), 1, + anon_sym_COLON_COLON, STATE(3343), 2, sym_line_comment, sym_block_comment, - [93018] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93067] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 1, - sym_self, + ACTIONS(6084), 1, + anon_sym_RBRACE, STATE(3344), 2, sym_line_comment, sym_block_comment, - [93032] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93081] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, - anon_sym_EQ_GT, + ACTIONS(6132), 1, + anon_sym_RBRACE, STATE(3345), 2, sym_line_comment, sym_block_comment, - [93046] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93095] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, - anon_sym_COLON_COLON, + ACTIONS(6784), 1, + sym__raw_string_literal_end, STATE(3346), 2, sym_line_comment, sym_block_comment, - [93060] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93109] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, + ACTIONS(6786), 1, + anon_sym_SEMI, STATE(3347), 2, sym_line_comment, sym_block_comment, - [93074] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93123] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 1, - anon_sym_SEMI, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, STATE(3348), 2, sym_line_comment, sym_block_comment, - [93088] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93137] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 1, - sym_identifier, + ACTIONS(4118), 1, + anon_sym_RPAREN, STATE(3349), 2, sym_line_comment, sym_block_comment, - [93102] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93151] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - anon_sym_COLON_COLON, + ACTIONS(6286), 1, + anon_sym_RBRACE, STATE(3350), 2, sym_line_comment, sym_block_comment, - [93116] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93165] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, - sym_identifier, + ACTIONS(6788), 1, + anon_sym_RBRACE, STATE(3351), 2, sym_line_comment, sym_block_comment, - [93130] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93179] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, - sym_identifier, + ACTIONS(6790), 1, + anon_sym_SEMI, STATE(3352), 2, sym_line_comment, sym_block_comment, - [93144] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93193] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, - sym_identifier, + ACTIONS(6792), 1, + anon_sym_RBRACK, STATE(3353), 2, sym_line_comment, sym_block_comment, - [93158] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93207] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, - sym_identifier, + ACTIONS(6794), 1, + anon_sym_fn, STATE(3354), 2, sym_line_comment, sym_block_comment, - [93172] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93221] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, + ACTIONS(6796), 1, sym_identifier, STATE(3355), 2, sym_line_comment, sym_block_comment, - [93186] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93235] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, - sym_identifier, + ACTIONS(6798), 1, + anon_sym_COLON_COLON, STATE(3356), 2, sym_line_comment, sym_block_comment, - [93200] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93249] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, - anon_sym_SEMI, + ACTIONS(4009), 1, + sym_identifier, STATE(3357), 2, sym_line_comment, sym_block_comment, - [93214] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93263] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - anon_sym_RBRACE, + ACTIONS(6800), 1, + sym_identifier, STATE(3358), 2, sym_line_comment, sym_block_comment, - [93228] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93277] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, - anon_sym_SEMI, + ACTIONS(5969), 1, + anon_sym_COLON_COLON, STATE(3359), 2, sym_line_comment, sym_block_comment, - [93242] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93291] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, + ACTIONS(6802), 1, sym_identifier, STATE(3360), 2, sym_line_comment, sym_block_comment, - [93256] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93305] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, + ACTIONS(6510), 1, + anon_sym_SEMI, STATE(3361), 2, sym_line_comment, sym_block_comment, - [93270] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93319] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, - anon_sym_SEMI, + ACTIONS(6804), 1, + sym_identifier, STATE(3362), 2, sym_line_comment, sym_block_comment, - [93284] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93333] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, - anon_sym_RBRACE, + ACTIONS(3118), 1, + anon_sym_PLUS, STATE(3363), 2, sym_line_comment, sym_block_comment, - [93298] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93347] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_RBRACE, + ACTIONS(6806), 1, + anon_sym_fn, STATE(3364), 2, sym_line_comment, sym_block_comment, - [93312] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93361] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - anon_sym_SEMI, + ACTIONS(6808), 1, + sym_identifier, STATE(3365), 2, sym_line_comment, sym_block_comment, - [93326] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93375] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, - anon_sym_COLON, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, STATE(3366), 2, sym_line_comment, sym_block_comment, - [93340] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93389] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6821), 1, + ACTIONS(6812), 1, sym_identifier, STATE(3367), 2, sym_line_comment, sym_block_comment, - [93354] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93403] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3065), 1, - anon_sym_PLUS, + ACTIONS(6814), 1, + sym_identifier, STATE(3368), 2, sym_line_comment, sym_block_comment, - [93368] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93417] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6823), 1, - anon_sym_COLON_COLON, + ACTIONS(6816), 1, + sym_identifier, STATE(3369), 2, sym_line_comment, sym_block_comment, - [93382] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93431] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, - anon_sym_fn, + ACTIONS(6818), 1, + sym_identifier, STATE(3370), 2, sym_line_comment, sym_block_comment, - [93396] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93445] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, - anon_sym_SEMI, + ACTIONS(6820), 1, + sym_identifier, STATE(3371), 2, sym_line_comment, sym_block_comment, - [93410] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93459] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LBRACE, + ACTIONS(6822), 1, + anon_sym_LT, STATE(3372), 2, sym_line_comment, sym_block_comment, - [93424] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93473] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, + ACTIONS(6824), 1, anon_sym_SEMI, STATE(3373), 2, sym_line_comment, sym_block_comment, - [93438] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93487] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, - anon_sym_COLON_COLON, + ACTIONS(6826), 1, + anon_sym_COLON, STATE(3374), 2, sym_line_comment, sym_block_comment, - [93452] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93501] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, + ACTIONS(6828), 1, anon_sym_SEMI, STATE(3375), 2, sym_line_comment, sym_block_comment, - [93466] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93515] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - sym_raw_string_literal_content, + ACTIONS(5631), 1, + anon_sym_RPAREN, STATE(3376), 2, sym_line_comment, sym_block_comment, - [93480] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93529] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - anon_sym_SEMI, + ACTIONS(6830), 1, + anon_sym_RPAREN, STATE(3377), 2, sym_line_comment, sym_block_comment, - [93494] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93543] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - anon_sym_RPAREN, + ACTIONS(6832), 1, + anon_sym_SEMI, STATE(3378), 2, sym_line_comment, sym_block_comment, - [93508] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93557] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_RPAREN, + ACTIONS(6834), 1, + sym_identifier, STATE(3379), 2, sym_line_comment, sym_block_comment, - [93522] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93571] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - sym__raw_string_literal_end, + ACTIONS(6836), 1, + anon_sym_SEMI, STATE(3380), 2, sym_line_comment, sym_block_comment, - [93536] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93585] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_SEMI, + ACTIONS(6838), 1, + anon_sym_COLON, STATE(3381), 2, sym_line_comment, sym_block_comment, - [93550] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93599] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 1, - anon_sym_SEMI, + ACTIONS(6840), 1, + sym_identifier, STATE(3382), 2, sym_line_comment, sym_block_comment, - [93564] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93613] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, - anon_sym_SEMI, + ACTIONS(6842), 1, + anon_sym_RBRACE, STATE(3383), 2, sym_line_comment, sym_block_comment, - [93578] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93627] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, - anon_sym_SEMI, + ACTIONS(4992), 1, + anon_sym_COLON_COLON, STATE(3384), 2, sym_line_comment, sym_block_comment, - [93592] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93641] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, - anon_sym_COLON_COLON, + ACTIONS(6844), 1, + anon_sym_SEMI, STATE(3385), 2, sym_line_comment, sym_block_comment, - [93606] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93655] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - anon_sym_COLON, + ACTIONS(6846), 1, + anon_sym_COLON_COLON, STATE(3386), 2, sym_line_comment, sym_block_comment, - [93620] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93669] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - sym_identifier, + ACTIONS(6848), 1, + anon_sym_fn, STATE(3387), 2, sym_line_comment, sym_block_comment, - [93634] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93683] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, - anon_sym_SEMI, + ACTIONS(5821), 1, + anon_sym_LBRACE, STATE(3388), 2, sym_line_comment, sym_block_comment, - [93648] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93697] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, + ACTIONS(6850), 1, + anon_sym_COLON_COLON, STATE(3389), 2, sym_line_comment, sym_block_comment, - [93662] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93711] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, - sym_identifier, + ACTIONS(6852), 1, + anon_sym_SEMI, STATE(3390), 2, sym_line_comment, sym_block_comment, - [93676] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93725] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, + ACTIONS(6854), 1, + anon_sym_SEMI, STATE(3391), 2, sym_line_comment, sym_block_comment, - [93690] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93739] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - anon_sym_RBRACK, + ACTIONS(6856), 1, + anon_sym_RBRACE, STATE(3392), 2, sym_line_comment, sym_block_comment, - [93704] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93753] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_SEMI, + ACTIONS(5549), 1, + anon_sym_RPAREN, STATE(3393), 2, sym_line_comment, sym_block_comment, - [93718] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93767] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, - anon_sym_SEMI, + ACTIONS(6858), 1, + anon_sym_RBRACK, STATE(3394), 2, sym_line_comment, sym_block_comment, - [93732] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93781] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, + ACTIONS(6860), 1, sym_identifier, STATE(3395), 2, sym_line_comment, sym_block_comment, - [93746] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93795] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, - anon_sym_STAR_SLASH, + ACTIONS(6090), 1, + anon_sym_RBRACE, STATE(3396), 2, sym_line_comment, sym_block_comment, - [93760] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93809] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, + ACTIONS(5723), 1, + anon_sym_RBRACK, STATE(3397), 2, sym_line_comment, sym_block_comment, - [93774] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93823] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, + ACTIONS(6862), 1, + anon_sym_SEMI, STATE(3398), 2, sym_line_comment, sym_block_comment, - [93788] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93837] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, - sym_identifier, + ACTIONS(6864), 1, + anon_sym_COLON_COLON, STATE(3399), 2, sym_line_comment, sym_block_comment, - [93802] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93851] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, + ACTIONS(6866), 1, anon_sym_SEMI, STATE(3400), 2, sym_line_comment, sym_block_comment, - [93816] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93865] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - anon_sym_RBRACK, + ACTIONS(6868), 1, + sym__raw_string_literal_end, STATE(3401), 2, sym_line_comment, sym_block_comment, - [93830] = 4, - ACTIONS(3), 1, + [93879] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - aux_sym_line_comment_token2, + ACTIONS(6870), 1, + anon_sym_EQ_GT, STATE(3402), 2, sym_line_comment, sym_block_comment, - [93844] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93893] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(5226), 1, anon_sym_COLON_COLON, STATE(3403), 2, sym_line_comment, sym_block_comment, - [93858] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93907] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, - anon_sym_SEMI, + ACTIONS(6872), 1, + anon_sym_RBRACK, STATE(3404), 2, sym_line_comment, sym_block_comment, - [93872] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93921] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_RBRACE, + ACTIONS(6874), 1, + sym_identifier, STATE(3405), 2, sym_line_comment, sym_block_comment, - [93886] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93935] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, + ACTIONS(6876), 1, + sym_identifier, STATE(3406), 2, sym_line_comment, sym_block_comment, - [93900] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93949] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_fn, + ACTIONS(6878), 1, + sym_identifier, STATE(3407), 2, sym_line_comment, sym_block_comment, - [93914] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93963] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - anon_sym_RBRACK, + ACTIONS(6880), 1, + anon_sym_SEMI, STATE(3408), 2, sym_line_comment, sym_block_comment, - [93928] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93977] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, - sym_identifier, + ACTIONS(6608), 1, + anon_sym_SEMI, STATE(3409), 2, sym_line_comment, sym_block_comment, - [93942] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93991] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, - anon_sym_EQ_GT, + ACTIONS(5843), 1, + anon_sym_RPAREN, STATE(3410), 2, sym_line_comment, sym_block_comment, - [93956] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94005] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_RBRACK, + ACTIONS(6882), 1, + anon_sym_SEMI, STATE(3411), 2, sym_line_comment, sym_block_comment, - [93970] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94019] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_COLON, + ACTIONS(6884), 1, + sym__line_doc_content, STATE(3412), 2, sym_line_comment, sym_block_comment, - [93984] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94033] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, + ACTIONS(6610), 1, anon_sym_SEMI, STATE(3413), 2, sym_line_comment, sym_block_comment, - [93998] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94047] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, - anon_sym_SEMI, + ACTIONS(6886), 1, + sym__raw_string_literal_end, STATE(3414), 2, sym_line_comment, sym_block_comment, - [94012] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94061] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, - anon_sym_RBRACK, + ACTIONS(6888), 1, + sym_identifier, STATE(3415), 2, sym_line_comment, sym_block_comment, - [94026] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94075] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5594), 1, - anon_sym_RBRACK, + ACTIONS(6890), 1, + anon_sym_RBRACE, STATE(3416), 2, sym_line_comment, sym_block_comment, - [94040] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94089] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5508), 1, - anon_sym_RPAREN, + ACTIONS(6892), 1, + sym_identifier, STATE(3417), 2, sym_line_comment, sym_block_comment, - [94054] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94103] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(6350), 1, + anon_sym_RBRACE, STATE(3418), 2, sym_line_comment, sym_block_comment, - [94068] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94117] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, - anon_sym_STAR_SLASH, + ACTIONS(6894), 1, + anon_sym_RPAREN, STATE(3419), 2, sym_line_comment, sym_block_comment, - [94082] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94131] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - sym_identifier, + ACTIONS(6896), 1, + anon_sym_RPAREN, STATE(3420), 2, sym_line_comment, sym_block_comment, - [94096] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94145] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_LBRACK, STATE(3421), 2, sym_line_comment, sym_block_comment, - [94110] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94159] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, + ACTIONS(6148), 1, anon_sym_RBRACE, STATE(3422), 2, sym_line_comment, sym_block_comment, - [94124] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94173] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - anon_sym_EQ_GT, + ACTIONS(4565), 1, + anon_sym_COLON_COLON, STATE(3423), 2, sym_line_comment, sym_block_comment, - [94138] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94187] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, - anon_sym_SEMI, + ACTIONS(6250), 1, + anon_sym_RBRACE, STATE(3424), 2, sym_line_comment, sym_block_comment, - [94152] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94201] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - anon_sym_SEMI, + ACTIONS(6898), 1, + anon_sym_LPAREN, STATE(3425), 2, sym_line_comment, sym_block_comment, - [94166] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94215] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - anon_sym_RBRACE, + ACTIONS(6900), 1, + anon_sym_SEMI, STATE(3426), 2, sym_line_comment, sym_block_comment, - [94180] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94229] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, - anon_sym_fn, + ACTIONS(6902), 1, + anon_sym_SEMI, STATE(3427), 2, sym_line_comment, sym_block_comment, - [94194] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94243] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, - anon_sym_RBRACE, + ACTIONS(6904), 1, + anon_sym_fn, STATE(3428), 2, sym_line_comment, sym_block_comment, - [94208] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94257] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - sym__raw_string_literal_end, + ACTIONS(6906), 1, + anon_sym_COLON, STATE(3429), 2, sym_line_comment, sym_block_comment, - [94222] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94271] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, - anon_sym_COLON_COLON, + ACTIONS(6908), 1, + anon_sym_RBRACK, STATE(3430), 2, sym_line_comment, sym_block_comment, - [94236] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94285] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LBRACK, + ACTIONS(6910), 1, + sym__line_doc_content, STATE(3431), 2, sym_line_comment, sym_block_comment, - [94250] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94299] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_SEMI, + ACTIONS(6912), 1, + anon_sym_STAR_SLASH, STATE(3432), 2, sym_line_comment, sym_block_comment, - [94264] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94313] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, + ACTIONS(6914), 1, anon_sym_SEMI, STATE(3433), 2, sym_line_comment, sym_block_comment, - [94278] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94327] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - sym_identifier, + ACTIONS(6916), 1, + anon_sym_STAR_SLASH, STATE(3434), 2, sym_line_comment, sym_block_comment, - [94292] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94341] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - anon_sym_COLON, + ACTIONS(6918), 1, + anon_sym_SEMI, STATE(3435), 2, sym_line_comment, sym_block_comment, - [94306] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94355] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, + ACTIONS(6920), 1, sym_identifier, STATE(3436), 2, sym_line_comment, sym_block_comment, - [94320] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94369] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5953), 1, - anon_sym_RBRACE, + ACTIONS(6922), 1, + anon_sym_SEMI, STATE(3437), 2, sym_line_comment, sym_block_comment, - [94334] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94383] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_LBRACE, + ACTIONS(6924), 1, + anon_sym_SEMI, STATE(3438), 2, sym_line_comment, sym_block_comment, - [94348] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94397] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - anon_sym_LT, + ACTIONS(6926), 1, + anon_sym_RPAREN, STATE(3439), 2, sym_line_comment, sym_block_comment, - [94362] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94411] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, + ACTIONS(947), 1, + anon_sym_EQ_GT, STATE(3440), 2, sym_line_comment, sym_block_comment, - [94376] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94425] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - anon_sym_SEMI, + ACTIONS(6928), 1, + anon_sym_COLON, STATE(3441), 2, sym_line_comment, sym_block_comment, - [94390] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94439] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, + ACTIONS(4697), 1, + anon_sym_COLON_COLON, STATE(3442), 2, sym_line_comment, sym_block_comment, - [94404] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94453] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, + ACTIONS(6930), 1, anon_sym_SEMI, STATE(3443), 2, sym_line_comment, sym_block_comment, - [94418] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94467] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, - sym_identifier, + ACTIONS(6932), 1, + anon_sym_fn, STATE(3444), 2, sym_line_comment, sym_block_comment, - [94432] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94481] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, - sym_identifier, + ACTIONS(6934), 1, + anon_sym_LPAREN, STATE(3445), 2, sym_line_comment, sym_block_comment, - [94446] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94495] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, + ACTIONS(6936), 1, + sym_identifier, STATE(3446), 2, sym_line_comment, sym_block_comment, - [94460] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94509] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, + ACTIONS(6938), 1, anon_sym_RPAREN, STATE(3447), 2, sym_line_comment, sym_block_comment, - [94474] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94523] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, + ACTIONS(6940), 1, sym_identifier, STATE(3448), 2, sym_line_comment, sym_block_comment, - [94488] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94537] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - sym_identifier, + ACTIONS(6377), 1, + anon_sym_GT, STATE(3449), 2, sym_line_comment, sym_block_comment, - [94502] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94551] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, + ACTIONS(6942), 1, + anon_sym_EQ_GT, STATE(3450), 2, sym_line_comment, sym_block_comment, - [94516] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94565] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - sym__raw_string_literal_end, + ACTIONS(6944), 1, + anon_sym_SEMI, STATE(3451), 2, sym_line_comment, sym_block_comment, - [94530] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94579] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4475), 1, - anon_sym_fn, + ACTIONS(6946), 1, + anon_sym_EQ_GT, STATE(3452), 2, sym_line_comment, sym_block_comment, - [94544] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94593] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6948), 1, sym_identifier, STATE(3453), 2, sym_line_comment, sym_block_comment, - [94558] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94607] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, + ACTIONS(6950), 1, + sym__raw_string_literal_end, STATE(3454), 2, sym_line_comment, sym_block_comment, - [94572] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94621] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, + ACTIONS(3148), 1, + anon_sym_PLUS, STATE(3455), 2, sym_line_comment, sym_block_comment, - [94586] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94635] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, - anon_sym_SEMI, + ACTIONS(3910), 1, + anon_sym_COLON_COLON, STATE(3456), 2, sym_line_comment, sym_block_comment, - [94600] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94649] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - anon_sym_LBRACK, + ACTIONS(6952), 1, + sym__line_doc_content, STATE(3457), 2, sym_line_comment, sym_block_comment, - [94614] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94663] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, - sym_identifier, + ACTIONS(6954), 1, + anon_sym_SEMI, STATE(3458), 2, sym_line_comment, sym_block_comment, - [94628] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94677] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, + ACTIONS(6956), 1, sym_identifier, STATE(3459), 2, sym_line_comment, sym_block_comment, - [94642] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94691] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - sym_identifier, + ACTIONS(867), 1, + anon_sym_RBRACK, STATE(3460), 2, sym_line_comment, sym_block_comment, - [94656] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94705] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, - sym_raw_string_literal_content, + ACTIONS(6958), 1, + anon_sym_COLON_COLON, STATE(3461), 2, sym_line_comment, sym_block_comment, - [94670] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94719] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - anon_sym_SEMI, + ACTIONS(6274), 1, + anon_sym_RBRACE, STATE(3462), 2, sym_line_comment, sym_block_comment, - [94684] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94733] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, - anon_sym_SEMI, + ACTIONS(6960), 1, + sym__raw_string_literal_end, STATE(3463), 2, sym_line_comment, sym_block_comment, - [94698] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94747] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, + ACTIONS(6962), 1, + sym_identifier, STATE(3464), 2, sym_line_comment, sym_block_comment, - [94712] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94761] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, + ACTIONS(6964), 1, + sym_identifier, STATE(3465), 2, sym_line_comment, sym_block_comment, - [94726] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94775] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, + ACTIONS(6966), 1, anon_sym_SEMI, STATE(3466), 2, sym_line_comment, sym_block_comment, - [94740] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94789] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, - anon_sym_SEMI, + ACTIONS(5599), 1, + anon_sym_RPAREN, STATE(3467), 2, sym_line_comment, sym_block_comment, - [94754] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94803] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, - anon_sym_RBRACK, + ACTIONS(6968), 1, + sym_raw_string_literal_content, STATE(3468), 2, sym_line_comment, sym_block_comment, - [94768] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94817] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, - anon_sym_COLON_COLON, + ACTIONS(6970), 1, + anon_sym_EQ_GT, STATE(3469), 2, sym_line_comment, sym_block_comment, - [94782] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94831] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, - sym_identifier, + ACTIONS(985), 1, + anon_sym_RBRACK, STATE(3470), 2, sym_line_comment, sym_block_comment, - [94796] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94845] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, + ACTIONS(6972), 1, anon_sym_SEMI, STATE(3471), 2, sym_line_comment, sym_block_comment, - [94810] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94859] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - anon_sym_EQ, + ACTIONS(6974), 1, + anon_sym_SEMI, STATE(3472), 2, sym_line_comment, sym_block_comment, - [94824] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94873] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - anon_sym_fn, + ACTIONS(6976), 1, + anon_sym_SEMI, STATE(3473), 2, sym_line_comment, sym_block_comment, - [94838] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94887] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_LPAREN, + ACTIONS(6322), 1, + anon_sym_RBRACE, STATE(3474), 2, sym_line_comment, sym_block_comment, - [94852] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94901] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, - anon_sym_COLON_COLON, + ACTIONS(6978), 1, + anon_sym_COLON, STATE(3475), 2, sym_line_comment, sym_block_comment, - [94866] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94915] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_SEMI, + ACTIONS(6020), 1, + anon_sym_RBRACE, STATE(3476), 2, sym_line_comment, sym_block_comment, - [94880] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94929] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, - anon_sym_RBRACE, + ACTIONS(6980), 1, + anon_sym_COLON_COLON, STATE(3477), 2, sym_line_comment, sym_block_comment, - [94894] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94943] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, - anon_sym_COLON_COLON, + ACTIONS(6982), 1, + sym_raw_string_literal_content, STATE(3478), 2, sym_line_comment, sym_block_comment, - [94908] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94957] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, - anon_sym_SEMI, + ACTIONS(6984), 1, + anon_sym_EQ, STATE(3479), 2, sym_line_comment, sym_block_comment, - [94922] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94971] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, - anon_sym_COLON, + ACTIONS(6986), 1, + anon_sym_SEMI, STATE(3480), 2, sym_line_comment, sym_block_comment, - [94936] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94985] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, + ACTIONS(6988), 1, + anon_sym_SEMI, STATE(3481), 2, sym_line_comment, sym_block_comment, - [94950] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94999] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_SEMI, + ACTIONS(4134), 1, + anon_sym_COLON_COLON, STATE(3482), 2, sym_line_comment, sym_block_comment, - [94964] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95013] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6989), 1, + ACTIONS(5623), 1, anon_sym_COLON_COLON, STATE(3483), 2, sym_line_comment, sym_block_comment, - [94978] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95027] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, - anon_sym_fn, + ACTIONS(6990), 1, + sym_identifier, STATE(3484), 2, sym_line_comment, sym_block_comment, - [94992] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95041] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - anon_sym_COLON, + ACTIONS(6992), 1, + sym_identifier, STATE(3485), 2, sym_line_comment, sym_block_comment, - [95006] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95055] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, - anon_sym_LBRACE, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, STATE(3486), 2, sym_line_comment, sym_block_comment, - [95020] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95069] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, - anon_sym_SEMI, + ACTIONS(6996), 1, + anon_sym_RBRACE, STATE(3487), 2, sym_line_comment, sym_block_comment, - [95034] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95083] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, + ACTIONS(6998), 1, anon_sym_SEMI, STATE(3488), 2, sym_line_comment, sym_block_comment, - [95048] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95097] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym__line_doc_content, + ACTIONS(5202), 1, + anon_sym_SEMI, STATE(3489), 2, sym_line_comment, sym_block_comment, - [95062] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95111] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_RBRACK, + ACTIONS(7000), 1, + sym_identifier, STATE(3490), 2, sym_line_comment, sym_block_comment, - [95076] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95125] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7005), 1, - anon_sym_SEMI, + ACTIONS(7002), 1, + anon_sym_COLON_COLON, STATE(3491), 2, sym_line_comment, sym_block_comment, - [95090] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95139] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, + ACTIONS(7004), 1, anon_sym_SEMI, STATE(3492), 2, sym_line_comment, sym_block_comment, - [95104] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95153] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7007), 1, - sym_identifier, + ACTIONS(7006), 1, + anon_sym_RBRACE, STATE(3493), 2, sym_line_comment, sym_block_comment, - [95118] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95167] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7009), 1, - sym_raw_string_literal_content, + ACTIONS(7008), 1, + anon_sym_COLON_COLON, STATE(3494), 2, sym_line_comment, sym_block_comment, - [95132] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95181] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, + ACTIONS(5495), 1, + anon_sym_RPAREN, STATE(3495), 2, sym_line_comment, sym_block_comment, - [95146] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95195] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - anon_sym_RPAREN, + ACTIONS(6738), 1, + anon_sym_SEMI, STATE(3496), 2, sym_line_comment, sym_block_comment, - [95160] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95209] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, - sym_identifier, + ACTIONS(4954), 1, + anon_sym_COLON_COLON, STATE(3497), 2, sym_line_comment, sym_block_comment, - [95174] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95223] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, - anon_sym_COLON_COLON, + ACTIONS(7010), 1, + anon_sym_RBRACE, STATE(3498), 2, sym_line_comment, sym_block_comment, - [95188] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95237] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7017), 1, - anon_sym_SEMI, + ACTIONS(7012), 1, + anon_sym_COLON_COLON, STATE(3499), 2, sym_line_comment, sym_block_comment, - [95202] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95251] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7019), 1, - anon_sym_SEMI, + ACTIONS(7014), 1, + anon_sym_fn, STATE(3500), 2, sym_line_comment, sym_block_comment, - [95216] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95265] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, - anon_sym_COLON_COLON, + ACTIONS(7016), 1, + anon_sym_EQ_GT, STATE(3501), 2, sym_line_comment, sym_block_comment, - [95230] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95279] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - sym__line_doc_content, + ACTIONS(7018), 1, + anon_sym_LBRACE, STATE(3502), 2, sym_line_comment, sym_block_comment, - [95244] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95293] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, + ACTIONS(7020), 1, anon_sym_SEMI, STATE(3503), 2, sym_line_comment, sym_block_comment, - [95258] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95307] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, - anon_sym_COLON_COLON, + ACTIONS(7022), 1, + anon_sym_SEMI, STATE(3504), 2, sym_line_comment, sym_block_comment, - [95272] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95321] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, - anon_sym_SEMI, + ACTIONS(7024), 1, + ts_builtin_sym_end, STATE(3505), 2, sym_line_comment, sym_block_comment, - [95286] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95335] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - anon_sym_SEMI, + ACTIONS(7026), 1, + sym_self, STATE(3506), 2, sym_line_comment, sym_block_comment, - [95300] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95349] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, - anon_sym_COLON_COLON, + ACTIONS(7028), 1, + sym_identifier, STATE(3507), 2, sym_line_comment, sym_block_comment, - [95314] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95363] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, - anon_sym_LBRACE, + ACTIONS(7030), 1, + anon_sym_COLON, STATE(3508), 2, sym_line_comment, sym_block_comment, - [95328] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95377] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, + ACTIONS(7032), 1, sym_identifier, STATE(3509), 2, sym_line_comment, sym_block_comment, - [95342] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95391] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_COLON, + ACTIONS(7034), 1, + anon_sym_SEMI, STATE(3510), 2, sym_line_comment, sym_block_comment, - [95356] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95405] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3101), 1, - anon_sym_PLUS, + ACTIONS(7036), 1, + sym_raw_string_literal_content, STATE(3511), 2, sym_line_comment, sym_block_comment, - [95370] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95419] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, - ts_builtin_sym_end, + ACTIONS(7038), 1, + sym_identifier, STATE(3512), 2, sym_line_comment, sym_block_comment, - [95384] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95433] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, - sym_raw_string_literal_content, + ACTIONS(7040), 1, + sym_identifier, STATE(3513), 2, sym_line_comment, sym_block_comment, - [95398] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95447] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, + ACTIONS(7042), 1, + anon_sym_SEMI, STATE(3514), 2, sym_line_comment, sym_block_comment, - [95412] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95461] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_GT, + ACTIONS(7044), 1, + anon_sym_COLON_COLON, STATE(3515), 2, sym_line_comment, sym_block_comment, - [95426] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95475] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, - anon_sym_COLON_COLON, + ACTIONS(7046), 1, + anon_sym_COLON, STATE(3516), 2, sym_line_comment, sym_block_comment, - [95440] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95489] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, + ACTIONS(7048), 1, anon_sym_SEMI, STATE(3517), 2, sym_line_comment, sym_block_comment, - [95454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95503] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - anon_sym_LBRACE, + ACTIONS(7050), 1, + anon_sym_COLON_COLON, STATE(3518), 2, sym_line_comment, sym_block_comment, - [95468] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95517] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7051), 1, - sym_raw_string_literal_content, + ACTIONS(7052), 1, + sym_identifier, STATE(3519), 2, sym_line_comment, sym_block_comment, - [95482] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95531] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, + ACTIONS(4098), 1, + anon_sym_RPAREN, STATE(3520), 2, sym_line_comment, sym_block_comment, - [95496] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95545] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, + ACTIONS(7054), 1, anon_sym_COLON_COLON, STATE(3521), 2, sym_line_comment, sym_block_comment, - [95510] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95559] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, - anon_sym_LBRACE, + ACTIONS(5813), 1, + anon_sym_RPAREN, STATE(3522), 2, sym_line_comment, sym_block_comment, - [95524] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95573] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, + ACTIONS(7056), 1, + sym_identifier, STATE(3523), 2, sym_line_comment, sym_block_comment, - [95538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95587] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, + ACTIONS(7058), 1, anon_sym_COLON_COLON, STATE(3524), 2, sym_line_comment, sym_block_comment, - [95552] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95601] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, + ACTIONS(7060), 1, anon_sym_LBRACE, STATE(3525), 2, sym_line_comment, sym_block_comment, - [95566] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95615] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, - anon_sym_COLON_COLON, + ACTIONS(7062), 1, + anon_sym_LBRACK, STATE(3526), 2, sym_line_comment, sym_block_comment, - [95580] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95629] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, + ACTIONS(5627), 1, + anon_sym_RPAREN, STATE(3527), 2, sym_line_comment, sym_block_comment, - [95594] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95643] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_COLON_COLON, + ACTIONS(4512), 1, + anon_sym_fn, STATE(3528), 2, sym_line_comment, sym_block_comment, - [95608] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95657] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, + ACTIONS(7064), 1, + anon_sym_RBRACK, STATE(3529), 2, sym_line_comment, sym_block_comment, - [95622] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95671] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7059), 1, - anon_sym_COLON_COLON, + ACTIONS(7066), 1, + sym_raw_string_literal_content, STATE(3530), 2, sym_line_comment, sym_block_comment, - [95636] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95685] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, - sym_identifier, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, STATE(3531), 2, sym_line_comment, sym_block_comment, - [95650] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95699] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, + ACTIONS(7068), 1, + sym__line_doc_content, STATE(3532), 2, sym_line_comment, sym_block_comment, - [95664] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95713] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, + ACTIONS(7070), 1, + anon_sym_COLON_COLON, STATE(3533), 2, sym_line_comment, sym_block_comment, - [95678] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95727] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, - sym_identifier, + ACTIONS(7072), 1, + anon_sym_SEMI, STATE(3534), 2, sym_line_comment, sym_block_comment, - [95692] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95741] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, - anon_sym_COLON, + ACTIONS(7074), 1, + anon_sym_LBRACE, STATE(3535), 2, sym_line_comment, sym_block_comment, - [95706] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95755] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, - anon_sym_LBRACK, + ACTIONS(7076), 1, + sym_raw_string_literal_content, STATE(3536), 2, sym_line_comment, sym_block_comment, - [95720] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95769] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - sym_identifier, + ACTIONS(5156), 1, + anon_sym_COLON_COLON, STATE(3537), 2, sym_line_comment, sym_block_comment, - [95734] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95783] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, - anon_sym_LBRACK, + ACTIONS(7078), 1, + anon_sym_COLON_COLON, STATE(3538), 2, sym_line_comment, sym_block_comment, - [95748] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95797] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, - anon_sym_COLON, + ACTIONS(5871), 1, + anon_sym_LBRACE, STATE(3539), 2, sym_line_comment, sym_block_comment, - [95762] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95811] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_COLON, + ACTIONS(5719), 1, + anon_sym_COLON_COLON, STATE(3540), 2, sym_line_comment, sym_block_comment, - [95776] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95825] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4115), 1, - anon_sym_RPAREN, + ACTIONS(7080), 1, + anon_sym_COLON_COLON, STATE(3541), 2, sym_line_comment, sym_block_comment, - [95790] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95839] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - anon_sym_SEMI, + ACTIONS(5887), 1, + anon_sym_LBRACE, STATE(3542), 2, sym_line_comment, sym_block_comment, - [95804] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95853] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RPAREN, + ACTIONS(7082), 1, + anon_sym_COLON_COLON, STATE(3543), 2, sym_line_comment, sym_block_comment, - [95818] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95867] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7079), 1, - anon_sym_COLON, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, STATE(3544), 2, sym_line_comment, sym_block_comment, - [95832] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95881] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7081), 1, - anon_sym_COLON, + ACTIONS(5212), 1, + anon_sym_COLON_COLON, STATE(3545), 2, sym_line_comment, sym_block_comment, - [95846] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95895] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - anon_sym_RBRACE, + ACTIONS(4128), 1, + anon_sym_COLON_COLON, STATE(3546), 2, sym_line_comment, sym_block_comment, - [95860] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95909] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7085), 1, - sym_identifier, + ACTIONS(7084), 1, + anon_sym_COLON_COLON, STATE(3547), 2, sym_line_comment, sym_block_comment, - [95874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95923] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, + ACTIONS(7086), 1, anon_sym_SEMI, STATE(3548), 2, sym_line_comment, sym_block_comment, - [95888] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95937] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - sym_identifier, + ACTIONS(7088), 1, + anon_sym_RPAREN, STATE(3549), 2, sym_line_comment, sym_block_comment, - [95902] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95951] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7091), 1, - sym__raw_string_literal_end, + ACTIONS(6190), 1, + anon_sym_RBRACE, STATE(3550), 2, sym_line_comment, sym_block_comment, - [95916] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95965] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, - sym_identifier, + ACTIONS(7090), 1, + anon_sym_COLON, STATE(3551), 2, sym_line_comment, sym_block_comment, - [95930] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95979] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, - anon_sym_RPAREN, + ACTIONS(7092), 1, + anon_sym_COLON, STATE(3552), 2, sym_line_comment, sym_block_comment, - [95944] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95993] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, - sym__raw_string_literal_end, + ACTIONS(7094), 1, + anon_sym_LBRACK, STATE(3553), 2, sym_line_comment, sym_block_comment, - [95958] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96007] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, - anon_sym_COLON, + ACTIONS(7096), 1, + sym_identifier, STATE(3554), 2, sym_line_comment, sym_block_comment, - [95972] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96021] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - anon_sym_COLON, + ACTIONS(7098), 1, + anon_sym_LBRACK, STATE(3555), 2, sym_line_comment, sym_block_comment, - [95986] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96035] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_SEMI, + ACTIONS(7100), 1, + anon_sym_COLON, STATE(3556), 2, sym_line_comment, sym_block_comment, - [96000] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96049] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7105), 1, - sym_identifier, + ACTIONS(7102), 1, + anon_sym_COLON, STATE(3557), 2, sym_line_comment, sym_block_comment, - [96014] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96063] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, + ACTIONS(7104), 1, sym_identifier, STATE(3558), 2, sym_line_comment, sym_block_comment, - [96028] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96077] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - anon_sym_COLON, + ACTIONS(7106), 1, + anon_sym_SEMI, STATE(3559), 2, sym_line_comment, sym_block_comment, - [96042] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96091] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, - sym_identifier, + ACTIONS(5829), 1, + anon_sym_RBRACK, STATE(3560), 2, sym_line_comment, sym_block_comment, - [96056] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96105] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - sym__raw_string_literal_end, + ACTIONS(5206), 1, + anon_sym_SEMI, STATE(3561), 2, sym_line_comment, sym_block_comment, - [96070] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96119] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - sym_identifier, + ACTIONS(7108), 1, + anon_sym_COLON, STATE(3562), 2, sym_line_comment, sym_block_comment, - [96084] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96133] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, - anon_sym_RPAREN, + ACTIONS(7110), 1, + sym_identifier, STATE(3563), 2, sym_line_comment, sym_block_comment, - [96098] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96147] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, + ACTIONS(7112), 1, sym_identifier, STATE(3564), 2, sym_line_comment, sym_block_comment, - [96112] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96161] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_COLON, + ACTIONS(7114), 1, + anon_sym_SEMI, STATE(3565), 2, sym_line_comment, sym_block_comment, - [96126] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96175] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, + ACTIONS(7116), 1, sym_identifier, STATE(3566), 2, sym_line_comment, sym_block_comment, - [96140] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96189] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, - anon_sym_SEMI, + ACTIONS(5660), 1, + anon_sym_RPAREN, STATE(3567), 2, sym_line_comment, sym_block_comment, - [96154] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96203] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_RBRACE, + ACTIONS(7118), 1, + anon_sym_SEMI, STATE(3568), 2, sym_line_comment, sym_block_comment, - [96168] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96217] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - sym_identifier, + ACTIONS(7120), 1, + anon_sym_COLON, STATE(3569), 2, sym_line_comment, sym_block_comment, - [96182] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96231] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, - anon_sym_SEMI, + ACTIONS(7122), 1, + sym_identifier, STATE(3570), 2, sym_line_comment, sym_block_comment, - [96196] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96245] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, + ACTIONS(7124), 1, anon_sym_SEMI, STATE(3571), 2, sym_line_comment, sym_block_comment, - [96210] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96259] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_EQ, + ACTIONS(7126), 1, + anon_sym_COLON, STATE(3572), 2, sym_line_comment, sym_block_comment, - [96224] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96273] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, + ACTIONS(7128), 1, + anon_sym_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, - [96238] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96287] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - anon_sym_RPAREN, + ACTIONS(7130), 1, + anon_sym_EQ_GT, STATE(3574), 2, sym_line_comment, sym_block_comment, - [96252] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96301] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_SEMI, + ACTIONS(7132), 1, + sym_identifier, STATE(3575), 2, sym_line_comment, sym_block_comment, - [96266] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96315] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, - anon_sym_SEMI, + ACTIONS(7134), 1, + anon_sym_COLON, STATE(3576), 2, sym_line_comment, sym_block_comment, - [96280] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96329] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, + ACTIONS(7136), 1, anon_sym_COLON, STATE(3577), 2, sym_line_comment, sym_block_comment, - [96294] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96343] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5637), 1, - anon_sym_RPAREN, + ACTIONS(7138), 1, + anon_sym_RBRACE, STATE(3578), 2, sym_line_comment, sym_block_comment, - [96308] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96357] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - anon_sym_COLON, + ACTIONS(943), 1, + anon_sym_RBRACK, STATE(3579), 2, sym_line_comment, sym_block_comment, - [96322] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96371] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, - anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_SEMI, STATE(3580), 2, sym_line_comment, sym_block_comment, - [96336] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96385] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, - anon_sym_LBRACK, + ACTIONS(7142), 1, + sym__raw_string_literal_end, STATE(3581), 2, sym_line_comment, sym_block_comment, - [96350] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96399] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, + ACTIONS(7144), 1, anon_sym_COLON, STATE(3582), 2, sym_line_comment, sym_block_comment, - [96364] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96413] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, + ACTIONS(7146), 1, + anon_sym_SEMI, STATE(3583), 2, sym_line_comment, sym_block_comment, - [96378] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96427] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, + ACTIONS(7148), 1, + anon_sym_SEMI, STATE(3584), 2, sym_line_comment, sym_block_comment, - [96392] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96441] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - anon_sym_COLON, + ACTIONS(6516), 1, + anon_sym_SEMI, STATE(3585), 2, sym_line_comment, sym_block_comment, - [96406] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96455] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, - anon_sym_COLON, + ACTIONS(7150), 1, + anon_sym_RBRACK, STATE(3586), 2, sym_line_comment, sym_block_comment, - [96420] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96469] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - sym_identifier, + ACTIONS(7152), 1, + anon_sym_SEMI, STATE(3587), 2, sym_line_comment, sym_block_comment, - [96434] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96483] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_SEMI, STATE(3588), 2, sym_line_comment, sym_block_comment, - [96448] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96497] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, - anon_sym_COLON, + ACTIONS(7156), 1, + anon_sym_EQ, STATE(3589), 2, sym_line_comment, sym_block_comment, - [96462] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96511] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, - anon_sym_COLON, + ACTIONS(951), 1, + anon_sym_EQ_GT, STATE(3590), 2, sym_line_comment, sym_block_comment, - [96476] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96525] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, - anon_sym_COLON, + ACTIONS(7158), 1, + sym_identifier, STATE(3591), 2, sym_line_comment, sym_block_comment, - [96490] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96539] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - anon_sym_COLON, + ACTIONS(5228), 1, + anon_sym_SEMI, STATE(3592), 2, sym_line_comment, sym_block_comment, - [96504] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96553] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_fn, + ACTIONS(7160), 1, + anon_sym_COLON, STATE(3593), 2, sym_line_comment, sym_block_comment, - [96518] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96567] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_EQ_GT, + ACTIONS(7162), 1, + anon_sym_SEMI, STATE(3594), 2, sym_line_comment, sym_block_comment, - [96532] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96581] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3979), 1, - sym_identifier, + ACTIONS(7164), 1, + anon_sym_COLON, STATE(3595), 2, sym_line_comment, sym_block_comment, - [96546] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96595] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, - sym_identifier, + ACTIONS(7166), 1, + anon_sym_LBRACK, STATE(3596), 2, sym_line_comment, sym_block_comment, - [96560] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96609] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - anon_sym_SEMI, + ACTIONS(7168), 1, + anon_sym_LBRACK, STATE(3597), 2, sym_line_comment, sym_block_comment, - [96574] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96623] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, - anon_sym_SEMI, + ACTIONS(7170), 1, + anon_sym_COLON, STATE(3598), 2, sym_line_comment, sym_block_comment, - [96588] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96637] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, + ACTIONS(7172), 1, sym_identifier, STATE(3599), 2, sym_line_comment, sym_block_comment, - [96602] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96651] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_fn, + ACTIONS(7174), 1, + sym_identifier, STATE(3600), 2, sym_line_comment, sym_block_comment, - [96616] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96665] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, - sym_raw_string_literal_content, + ACTIONS(7176), 1, + anon_sym_COLON, STATE(3601), 2, sym_line_comment, sym_block_comment, - [96630] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96679] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - sym_identifier, + ACTIONS(7178), 1, + anon_sym_COLON, STATE(3602), 2, sym_line_comment, sym_block_comment, - [96644] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96693] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, - sym_identifier, + ACTIONS(7180), 1, + sym__line_doc_content, STATE(3603), 2, sym_line_comment, sym_block_comment, - [96658] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96707] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, - sym_identifier, + ACTIONS(7182), 1, + anon_sym_RBRACK, STATE(3604), 2, sym_line_comment, sym_block_comment, - [96672] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96721] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - anon_sym_EQ_GT, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(3605), 2, sym_line_comment, sym_block_comment, - [96686] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96735] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, + ACTIONS(7186), 1, + anon_sym_COLON, STATE(3606), 2, sym_line_comment, sym_block_comment, - [96700] = 4, - ACTIONS(101), 1, + [96749] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7188), 1, + anon_sym_COLON, + STATE(3607), 2, + sym_line_comment, + sym_block_comment, + [96763] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(883), 1, + anon_sym_RBRACK, + STATE(3608), 2, + sym_line_comment, + sym_block_comment, + [96777] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4538), 1, + anon_sym_fn, + STATE(3609), 2, + sym_line_comment, + sym_block_comment, + [96791] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7190), 1, + anon_sym_SEMI, + STATE(3610), 2, + sym_line_comment, + sym_block_comment, + [96805] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5166), 1, + anon_sym_SEMI, + STATE(3611), 2, + sym_line_comment, + sym_block_comment, + [96819] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, + ACTIONS(7192), 1, sym_identifier, - STATE(3607), 2, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [96714] = 4, - ACTIONS(101), 1, + [96833] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7194), 1, + anon_sym_COLON, + STATE(3613), 2, + sym_line_comment, + sym_block_comment, + [96847] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_RPAREN, - STATE(3608), 2, + ACTIONS(7196), 1, + sym_raw_string_literal_content, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [96728] = 4, - ACTIONS(101), 1, + [96861] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7198), 1, + sym_identifier, + STATE(3615), 2, + sym_line_comment, + sym_block_comment, + [96875] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - STATE(3609), 2, + ACTIONS(7200), 1, + anon_sym_fn, + STATE(3616), 2, + sym_line_comment, + sym_block_comment, + [96889] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7202), 1, + anon_sym_SEMI, + STATE(3617), 2, + sym_line_comment, + sym_block_comment, + [96903] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7204), 1, + sym_identifier, + STATE(3618), 2, + sym_line_comment, + sym_block_comment, + [96917] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7206), 1, + sym_identifier, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [96742] = 4, - ACTIONS(101), 1, + [96931] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7208), 1, + sym_identifier, + STATE(3620), 2, + sym_line_comment, + sym_block_comment, + [96945] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, + ACTIONS(7210), 1, anon_sym_RBRACK, - STATE(3610), 2, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [96756] = 4, - ACTIONS(101), 1, + [96959] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7212), 1, + anon_sym_SEMI, + STATE(3622), 2, + sym_line_comment, + sym_block_comment, + [96973] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, + ACTIONS(7214), 1, sym_identifier, - STATE(3611), 2, + STATE(3623), 2, + sym_line_comment, + sym_block_comment, + [96987] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7216), 1, + sym_identifier, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [96770] = 4, - ACTIONS(101), 1, + [97001] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7218), 1, + anon_sym_SEMI, + STATE(3625), 2, + sym_line_comment, + sym_block_comment, + [97015] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6709), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(3612), 2, + STATE(3626), 2, + sym_line_comment, + sym_block_comment, + [97029] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7222), 1, + anon_sym_RBRACK, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [96784] = 1, - ACTIONS(7193), 1, + [97043] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7224), 1, + anon_sym_COLON, + STATE(3628), 2, + sym_line_comment, + sym_block_comment, + [97057] = 1, + ACTIONS(7226), 1, ts_builtin_sym_end, - [96788] = 1, - ACTIONS(7195), 1, + [97061] = 1, + ACTIONS(7228), 1, ts_builtin_sym_end, - [96792] = 1, - ACTIONS(7197), 1, + [97065] = 1, + ACTIONS(7230), 1, ts_builtin_sym_end, - [96796] = 1, - ACTIONS(7199), 1, + [97069] = 1, + ACTIONS(7232), 1, ts_builtin_sym_end, - [96800] = 1, - ACTIONS(7201), 1, + [97073] = 1, + ACTIONS(7234), 1, ts_builtin_sym_end, - [96804] = 1, - ACTIONS(7203), 1, + [97077] = 1, + ACTIONS(7236), 1, ts_builtin_sym_end, - [96808] = 1, - ACTIONS(7205), 1, + [97081] = 1, + ACTIONS(7238), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1004)] = 0, - [SMALL_STATE(1005)] = 75, - [SMALL_STATE(1006)] = 150, - [SMALL_STATE(1007)] = 224, - [SMALL_STATE(1008)] = 294, - [SMALL_STATE(1009)] = 363, - [SMALL_STATE(1010)] = 462, - [SMALL_STATE(1011)] = 561, - [SMALL_STATE(1012)] = 638, - [SMALL_STATE(1013)] = 712, - [SMALL_STATE(1014)] = 786, - [SMALL_STATE(1015)] = 860, - [SMALL_STATE(1016)] = 923, - [SMALL_STATE(1017)] = 990, - [SMALL_STATE(1018)] = 1057, - [SMALL_STATE(1019)] = 1120, - [SMALL_STATE(1020)] = 1183, - [SMALL_STATE(1021)] = 1246, - [SMALL_STATE(1022)] = 1317, - [SMALL_STATE(1023)] = 1388, - [SMALL_STATE(1024)] = 1451, - [SMALL_STATE(1025)] = 1518, - [SMALL_STATE(1026)] = 1581, - [SMALL_STATE(1027)] = 1644, - [SMALL_STATE(1028)] = 1707, - [SMALL_STATE(1029)] = 1778, - [SMALL_STATE(1030)] = 1849, - [SMALL_STATE(1031)] = 1912, - [SMALL_STATE(1032)] = 1979, - [SMALL_STATE(1033)] = 2047, - [SMALL_STATE(1034)] = 2109, - [SMALL_STATE(1035)] = 2171, - [SMALL_STATE(1036)] = 2233, - [SMALL_STATE(1037)] = 2295, - [SMALL_STATE(1038)] = 2357, - [SMALL_STATE(1039)] = 2419, - [SMALL_STATE(1040)] = 2481, - [SMALL_STATE(1041)] = 2551, - [SMALL_STATE(1042)] = 2617, - [SMALL_STATE(1043)] = 2679, - [SMALL_STATE(1044)] = 2741, - [SMALL_STATE(1045)] = 2802, - [SMALL_STATE(1046)] = 2867, - [SMALL_STATE(1047)] = 2930, - [SMALL_STATE(1048)] = 2991, - [SMALL_STATE(1049)] = 3052, - [SMALL_STATE(1050)] = 3115, - [SMALL_STATE(1051)] = 3180, - [SMALL_STATE(1052)] = 3243, - [SMALL_STATE(1053)] = 3304, - [SMALL_STATE(1054)] = 3365, - [SMALL_STATE(1055)] = 3470, - [SMALL_STATE(1056)] = 3535, - [SMALL_STATE(1057)] = 3598, - [SMALL_STATE(1058)] = 3659, - [SMALL_STATE(1059)] = 3720, - [SMALL_STATE(1060)] = 3781, - [SMALL_STATE(1061)] = 3844, - [SMALL_STATE(1062)] = 3905, - [SMALL_STATE(1063)] = 4010, - [SMALL_STATE(1064)] = 4071, - [SMALL_STATE(1065)] = 4132, - [SMALL_STATE(1066)] = 4197, - [SMALL_STATE(1067)] = 4258, - [SMALL_STATE(1068)] = 4321, - [SMALL_STATE(1069)] = 4426, - [SMALL_STATE(1070)] = 4489, - [SMALL_STATE(1071)] = 4552, - [SMALL_STATE(1072)] = 4613, - [SMALL_STATE(1073)] = 4674, - [SMALL_STATE(1074)] = 4737, - [SMALL_STATE(1075)] = 4842, - [SMALL_STATE(1076)] = 4903, - [SMALL_STATE(1077)] = 4966, - [SMALL_STATE(1078)] = 5065, - [SMALL_STATE(1079)] = 5128, - [SMALL_STATE(1080)] = 5233, - [SMALL_STATE(1081)] = 5294, - [SMALL_STATE(1082)] = 5355, - [SMALL_STATE(1083)] = 5454, - [SMALL_STATE(1084)] = 5517, - [SMALL_STATE(1085)] = 5622, - [SMALL_STATE(1086)] = 5685, - [SMALL_STATE(1087)] = 5748, - [SMALL_STATE(1088)] = 5811, - [SMALL_STATE(1089)] = 5874, - [SMALL_STATE(1090)] = 5937, - [SMALL_STATE(1091)] = 6000, - [SMALL_STATE(1092)] = 6060, - [SMALL_STATE(1093)] = 6120, - [SMALL_STATE(1094)] = 6180, - [SMALL_STATE(1095)] = 6240, - [SMALL_STATE(1096)] = 6300, - [SMALL_STATE(1097)] = 6360, - [SMALL_STATE(1098)] = 6420, - [SMALL_STATE(1099)] = 6480, - [SMALL_STATE(1100)] = 6540, - [SMALL_STATE(1101)] = 6600, - [SMALL_STATE(1102)] = 6660, - [SMALL_STATE(1103)] = 6720, - [SMALL_STATE(1104)] = 6780, - [SMALL_STATE(1105)] = 6840, - [SMALL_STATE(1106)] = 6900, - [SMALL_STATE(1107)] = 6960, - [SMALL_STATE(1108)] = 7020, - [SMALL_STATE(1109)] = 7080, - [SMALL_STATE(1110)] = 7140, - [SMALL_STATE(1111)] = 7200, - [SMALL_STATE(1112)] = 7260, - [SMALL_STATE(1113)] = 7320, - [SMALL_STATE(1114)] = 7380, - [SMALL_STATE(1115)] = 7440, - [SMALL_STATE(1116)] = 7500, - [SMALL_STATE(1117)] = 7560, - [SMALL_STATE(1118)] = 7620, - [SMALL_STATE(1119)] = 7680, - [SMALL_STATE(1120)] = 7740, - [SMALL_STATE(1121)] = 7800, - [SMALL_STATE(1122)] = 7860, - [SMALL_STATE(1123)] = 7920, - [SMALL_STATE(1124)] = 7980, - [SMALL_STATE(1125)] = 8040, - [SMALL_STATE(1126)] = 8100, - [SMALL_STATE(1127)] = 8160, - [SMALL_STATE(1128)] = 8220, - [SMALL_STATE(1129)] = 8280, - [SMALL_STATE(1130)] = 8340, - [SMALL_STATE(1131)] = 8400, - [SMALL_STATE(1132)] = 8460, - [SMALL_STATE(1133)] = 8520, - [SMALL_STATE(1134)] = 8580, - [SMALL_STATE(1135)] = 8640, - [SMALL_STATE(1136)] = 8700, - [SMALL_STATE(1137)] = 8760, - [SMALL_STATE(1138)] = 8820, - [SMALL_STATE(1139)] = 8880, - [SMALL_STATE(1140)] = 8940, - [SMALL_STATE(1141)] = 9000, - [SMALL_STATE(1142)] = 9060, - [SMALL_STATE(1143)] = 9120, - [SMALL_STATE(1144)] = 9180, - [SMALL_STATE(1145)] = 9240, - [SMALL_STATE(1146)] = 9300, - [SMALL_STATE(1147)] = 9360, - [SMALL_STATE(1148)] = 9420, - [SMALL_STATE(1149)] = 9480, - [SMALL_STATE(1150)] = 9540, - [SMALL_STATE(1151)] = 9600, - [SMALL_STATE(1152)] = 9660, - [SMALL_STATE(1153)] = 9720, - [SMALL_STATE(1154)] = 9780, - [SMALL_STATE(1155)] = 9840, - [SMALL_STATE(1156)] = 9900, - [SMALL_STATE(1157)] = 9960, - [SMALL_STATE(1158)] = 10020, - [SMALL_STATE(1159)] = 10080, - [SMALL_STATE(1160)] = 10140, - [SMALL_STATE(1161)] = 10200, - [SMALL_STATE(1162)] = 10260, - [SMALL_STATE(1163)] = 10320, - [SMALL_STATE(1164)] = 10380, - [SMALL_STATE(1165)] = 10440, - [SMALL_STATE(1166)] = 10500, - [SMALL_STATE(1167)] = 10560, - [SMALL_STATE(1168)] = 10620, - [SMALL_STATE(1169)] = 10680, - [SMALL_STATE(1170)] = 10740, - [SMALL_STATE(1171)] = 10800, - [SMALL_STATE(1172)] = 10860, - [SMALL_STATE(1173)] = 10920, - [SMALL_STATE(1174)] = 10980, - [SMALL_STATE(1175)] = 11040, - [SMALL_STATE(1176)] = 11100, - [SMALL_STATE(1177)] = 11160, - [SMALL_STATE(1178)] = 11220, - [SMALL_STATE(1179)] = 11280, - [SMALL_STATE(1180)] = 11340, - [SMALL_STATE(1181)] = 11400, - [SMALL_STATE(1182)] = 11460, - [SMALL_STATE(1183)] = 11520, - [SMALL_STATE(1184)] = 11580, - [SMALL_STATE(1185)] = 11640, - [SMALL_STATE(1186)] = 11700, - [SMALL_STATE(1187)] = 11760, - [SMALL_STATE(1188)] = 11820, - [SMALL_STATE(1189)] = 11880, - [SMALL_STATE(1190)] = 11940, - [SMALL_STATE(1191)] = 12000, - [SMALL_STATE(1192)] = 12060, - [SMALL_STATE(1193)] = 12120, - [SMALL_STATE(1194)] = 12180, - [SMALL_STATE(1195)] = 12240, - [SMALL_STATE(1196)] = 12300, - [SMALL_STATE(1197)] = 12360, - [SMALL_STATE(1198)] = 12420, - [SMALL_STATE(1199)] = 12480, - [SMALL_STATE(1200)] = 12540, - [SMALL_STATE(1201)] = 12600, - [SMALL_STATE(1202)] = 12660, - [SMALL_STATE(1203)] = 12720, - [SMALL_STATE(1204)] = 12780, - [SMALL_STATE(1205)] = 12840, - [SMALL_STATE(1206)] = 12900, - [SMALL_STATE(1207)] = 12960, - [SMALL_STATE(1208)] = 13020, - [SMALL_STATE(1209)] = 13080, - [SMALL_STATE(1210)] = 13140, - [SMALL_STATE(1211)] = 13200, - [SMALL_STATE(1212)] = 13260, - [SMALL_STATE(1213)] = 13320, - [SMALL_STATE(1214)] = 13380, - [SMALL_STATE(1215)] = 13440, - [SMALL_STATE(1216)] = 13500, - [SMALL_STATE(1217)] = 13592, - [SMALL_STATE(1218)] = 13652, - [SMALL_STATE(1219)] = 13712, - [SMALL_STATE(1220)] = 13772, - [SMALL_STATE(1221)] = 13832, - [SMALL_STATE(1222)] = 13892, - [SMALL_STATE(1223)] = 13952, - [SMALL_STATE(1224)] = 14012, - [SMALL_STATE(1225)] = 14072, - [SMALL_STATE(1226)] = 14132, - [SMALL_STATE(1227)] = 14192, - [SMALL_STATE(1228)] = 14252, - [SMALL_STATE(1229)] = 14312, - [SMALL_STATE(1230)] = 14372, - [SMALL_STATE(1231)] = 14432, - [SMALL_STATE(1232)] = 14492, - [SMALL_STATE(1233)] = 14552, - [SMALL_STATE(1234)] = 14612, - [SMALL_STATE(1235)] = 14672, - [SMALL_STATE(1236)] = 14732, - [SMALL_STATE(1237)] = 14792, - [SMALL_STATE(1238)] = 14852, - [SMALL_STATE(1239)] = 14916, - [SMALL_STATE(1240)] = 14976, - [SMALL_STATE(1241)] = 15036, - [SMALL_STATE(1242)] = 15096, - [SMALL_STATE(1243)] = 15156, - [SMALL_STATE(1244)] = 15218, - [SMALL_STATE(1245)] = 15278, - [SMALL_STATE(1246)] = 15338, - [SMALL_STATE(1247)] = 15398, - [SMALL_STATE(1248)] = 15458, - [SMALL_STATE(1249)] = 15518, - [SMALL_STATE(1250)] = 15578, - [SMALL_STATE(1251)] = 15638, - [SMALL_STATE(1252)] = 15706, - [SMALL_STATE(1253)] = 15766, - [SMALL_STATE(1254)] = 15826, - [SMALL_STATE(1255)] = 15886, - [SMALL_STATE(1256)] = 15946, - [SMALL_STATE(1257)] = 16006, - [SMALL_STATE(1258)] = 16066, - [SMALL_STATE(1259)] = 16126, - [SMALL_STATE(1260)] = 16186, - [SMALL_STATE(1261)] = 16246, - [SMALL_STATE(1262)] = 16306, - [SMALL_STATE(1263)] = 16366, - [SMALL_STATE(1264)] = 16426, - [SMALL_STATE(1265)] = 16486, - [SMALL_STATE(1266)] = 16546, - [SMALL_STATE(1267)] = 16606, - [SMALL_STATE(1268)] = 16666, - [SMALL_STATE(1269)] = 16726, - [SMALL_STATE(1270)] = 16786, - [SMALL_STATE(1271)] = 16846, - [SMALL_STATE(1272)] = 16906, - [SMALL_STATE(1273)] = 16966, - [SMALL_STATE(1274)] = 17026, - [SMALL_STATE(1275)] = 17086, - [SMALL_STATE(1276)] = 17146, - [SMALL_STATE(1277)] = 17206, - [SMALL_STATE(1278)] = 17266, - [SMALL_STATE(1279)] = 17326, - [SMALL_STATE(1280)] = 17386, - [SMALL_STATE(1281)] = 17446, - [SMALL_STATE(1282)] = 17506, - [SMALL_STATE(1283)] = 17566, - [SMALL_STATE(1284)] = 17626, - [SMALL_STATE(1285)] = 17686, - [SMALL_STATE(1286)] = 17746, - [SMALL_STATE(1287)] = 17806, - [SMALL_STATE(1288)] = 17866, - [SMALL_STATE(1289)] = 17928, - [SMALL_STATE(1290)] = 17988, - [SMALL_STATE(1291)] = 18048, - [SMALL_STATE(1292)] = 18108, - [SMALL_STATE(1293)] = 18168, - [SMALL_STATE(1294)] = 18228, - [SMALL_STATE(1295)] = 18288, - [SMALL_STATE(1296)] = 18348, - [SMALL_STATE(1297)] = 18408, - [SMALL_STATE(1298)] = 18468, - [SMALL_STATE(1299)] = 18528, - [SMALL_STATE(1300)] = 18588, - [SMALL_STATE(1301)] = 18648, - [SMALL_STATE(1302)] = 18708, - [SMALL_STATE(1303)] = 18768, - [SMALL_STATE(1304)] = 18860, - [SMALL_STATE(1305)] = 18920, - [SMALL_STATE(1306)] = 18980, - [SMALL_STATE(1307)] = 19040, - [SMALL_STATE(1308)] = 19100, - [SMALL_STATE(1309)] = 19160, - [SMALL_STATE(1310)] = 19220, - [SMALL_STATE(1311)] = 19280, - [SMALL_STATE(1312)] = 19340, - [SMALL_STATE(1313)] = 19400, - [SMALL_STATE(1314)] = 19460, - [SMALL_STATE(1315)] = 19520, - [SMALL_STATE(1316)] = 19580, - [SMALL_STATE(1317)] = 19640, - [SMALL_STATE(1318)] = 19700, - [SMALL_STATE(1319)] = 19760, - [SMALL_STATE(1320)] = 19820, - [SMALL_STATE(1321)] = 19880, - [SMALL_STATE(1322)] = 19940, - [SMALL_STATE(1323)] = 20000, - [SMALL_STATE(1324)] = 20066, - [SMALL_STATE(1325)] = 20126, - [SMALL_STATE(1326)] = 20186, - [SMALL_STATE(1327)] = 20246, - [SMALL_STATE(1328)] = 20306, - [SMALL_STATE(1329)] = 20366, - [SMALL_STATE(1330)] = 20426, - [SMALL_STATE(1331)] = 20486, - [SMALL_STATE(1332)] = 20546, - [SMALL_STATE(1333)] = 20606, - [SMALL_STATE(1334)] = 20666, - [SMALL_STATE(1335)] = 20726, - [SMALL_STATE(1336)] = 20786, - [SMALL_STATE(1337)] = 20846, - [SMALL_STATE(1338)] = 20912, - [SMALL_STATE(1339)] = 20972, - [SMALL_STATE(1340)] = 21032, - [SMALL_STATE(1341)] = 21092, - [SMALL_STATE(1342)] = 21152, - [SMALL_STATE(1343)] = 21212, - [SMALL_STATE(1344)] = 21272, - [SMALL_STATE(1345)] = 21332, - [SMALL_STATE(1346)] = 21392, - [SMALL_STATE(1347)] = 21452, - [SMALL_STATE(1348)] = 21512, - [SMALL_STATE(1349)] = 21572, - [SMALL_STATE(1350)] = 21632, - [SMALL_STATE(1351)] = 21692, - [SMALL_STATE(1352)] = 21752, - [SMALL_STATE(1353)] = 21812, - [SMALL_STATE(1354)] = 21878, - [SMALL_STATE(1355)] = 21938, - [SMALL_STATE(1356)] = 21998, - [SMALL_STATE(1357)] = 22058, - [SMALL_STATE(1358)] = 22118, - [SMALL_STATE(1359)] = 22178, - [SMALL_STATE(1360)] = 22238, - [SMALL_STATE(1361)] = 22298, - [SMALL_STATE(1362)] = 22358, - [SMALL_STATE(1363)] = 22418, - [SMALL_STATE(1364)] = 22478, - [SMALL_STATE(1365)] = 22538, - [SMALL_STATE(1366)] = 22598, - [SMALL_STATE(1367)] = 22658, - [SMALL_STATE(1368)] = 22718, - [SMALL_STATE(1369)] = 22778, - [SMALL_STATE(1370)] = 22838, - [SMALL_STATE(1371)] = 22898, - [SMALL_STATE(1372)] = 22958, - [SMALL_STATE(1373)] = 23018, - [SMALL_STATE(1374)] = 23078, - [SMALL_STATE(1375)] = 23138, - [SMALL_STATE(1376)] = 23198, - [SMALL_STATE(1377)] = 23258, - [SMALL_STATE(1378)] = 23320, - [SMALL_STATE(1379)] = 23380, - [SMALL_STATE(1380)] = 23440, - [SMALL_STATE(1381)] = 23500, - [SMALL_STATE(1382)] = 23560, - [SMALL_STATE(1383)] = 23620, - [SMALL_STATE(1384)] = 23680, - [SMALL_STATE(1385)] = 23740, - [SMALL_STATE(1386)] = 23800, - [SMALL_STATE(1387)] = 23860, - [SMALL_STATE(1388)] = 23920, - [SMALL_STATE(1389)] = 23980, - [SMALL_STATE(1390)] = 24040, - [SMALL_STATE(1391)] = 24100, - [SMALL_STATE(1392)] = 24160, - [SMALL_STATE(1393)] = 24220, - [SMALL_STATE(1394)] = 24284, - [SMALL_STATE(1395)] = 24344, - [SMALL_STATE(1396)] = 24404, - [SMALL_STATE(1397)] = 24464, - [SMALL_STATE(1398)] = 24524, - [SMALL_STATE(1399)] = 24584, - [SMALL_STATE(1400)] = 24644, - [SMALL_STATE(1401)] = 24704, - [SMALL_STATE(1402)] = 24764, - [SMALL_STATE(1403)] = 24824, - [SMALL_STATE(1404)] = 24884, - [SMALL_STATE(1405)] = 24944, - [SMALL_STATE(1406)] = 25004, - [SMALL_STATE(1407)] = 25064, - [SMALL_STATE(1408)] = 25124, - [SMALL_STATE(1409)] = 25184, - [SMALL_STATE(1410)] = 25244, - [SMALL_STATE(1411)] = 25304, - [SMALL_STATE(1412)] = 25364, - [SMALL_STATE(1413)] = 25424, - [SMALL_STATE(1414)] = 25484, - [SMALL_STATE(1415)] = 25544, - [SMALL_STATE(1416)] = 25604, - [SMALL_STATE(1417)] = 25664, - [SMALL_STATE(1418)] = 25724, - [SMALL_STATE(1419)] = 25784, - [SMALL_STATE(1420)] = 25846, - [SMALL_STATE(1421)] = 25906, - [SMALL_STATE(1422)] = 25966, - [SMALL_STATE(1423)] = 26026, - [SMALL_STATE(1424)] = 26086, - [SMALL_STATE(1425)] = 26146, - [SMALL_STATE(1426)] = 26206, - [SMALL_STATE(1427)] = 26266, - [SMALL_STATE(1428)] = 26326, - [SMALL_STATE(1429)] = 26386, - [SMALL_STATE(1430)] = 26446, - [SMALL_STATE(1431)] = 26506, - [SMALL_STATE(1432)] = 26566, - [SMALL_STATE(1433)] = 26626, - [SMALL_STATE(1434)] = 26686, - [SMALL_STATE(1435)] = 26746, - [SMALL_STATE(1436)] = 26806, - [SMALL_STATE(1437)] = 26866, - [SMALL_STATE(1438)] = 26926, - [SMALL_STATE(1439)] = 26986, - [SMALL_STATE(1440)] = 27046, - [SMALL_STATE(1441)] = 27106, - [SMALL_STATE(1442)] = 27166, - [SMALL_STATE(1443)] = 27226, - [SMALL_STATE(1444)] = 27286, - [SMALL_STATE(1445)] = 27346, - [SMALL_STATE(1446)] = 27406, - [SMALL_STATE(1447)] = 27466, - [SMALL_STATE(1448)] = 27526, - [SMALL_STATE(1449)] = 27586, - [SMALL_STATE(1450)] = 27646, - [SMALL_STATE(1451)] = 27706, - [SMALL_STATE(1452)] = 27766, - [SMALL_STATE(1453)] = 27826, - [SMALL_STATE(1454)] = 27886, - [SMALL_STATE(1455)] = 27946, - [SMALL_STATE(1456)] = 28006, - [SMALL_STATE(1457)] = 28066, - [SMALL_STATE(1458)] = 28126, - [SMALL_STATE(1459)] = 28186, - [SMALL_STATE(1460)] = 28246, - [SMALL_STATE(1461)] = 28306, - [SMALL_STATE(1462)] = 28366, - [SMALL_STATE(1463)] = 28426, - [SMALL_STATE(1464)] = 28486, - [SMALL_STATE(1465)] = 28546, - [SMALL_STATE(1466)] = 28606, - [SMALL_STATE(1467)] = 28666, - [SMALL_STATE(1468)] = 28726, - [SMALL_STATE(1469)] = 28786, - [SMALL_STATE(1470)] = 28846, - [SMALL_STATE(1471)] = 28906, - [SMALL_STATE(1472)] = 28965, - [SMALL_STATE(1473)] = 29024, - [SMALL_STATE(1474)] = 29083, - [SMALL_STATE(1475)] = 29142, - [SMALL_STATE(1476)] = 29203, - [SMALL_STATE(1477)] = 29262, - [SMALL_STATE(1478)] = 29321, - [SMALL_STATE(1479)] = 29382, - [SMALL_STATE(1480)] = 29441, - [SMALL_STATE(1481)] = 29536, - [SMALL_STATE(1482)] = 29631, - [SMALL_STATE(1483)] = 29717, - [SMALL_STATE(1484)] = 29807, - [SMALL_STATE(1485)] = 29873, - [SMALL_STATE(1486)] = 29947, - [SMALL_STATE(1487)] = 30019, - [SMALL_STATE(1488)] = 30111, - [SMALL_STATE(1489)] = 30187, - [SMALL_STATE(1490)] = 30277, - [SMALL_STATE(1491)] = 30359, - [SMALL_STATE(1492)] = 30457, - [SMALL_STATE(1493)] = 30527, - [SMALL_STATE(1494)] = 30613, - [SMALL_STATE(1495)] = 30703, - [SMALL_STATE(1496)] = 30771, - [SMALL_STATE(1497)] = 30863, - [SMALL_STATE(1498)] = 30941, - [SMALL_STATE(1499)] = 31039, - [SMALL_STATE(1500)] = 31129, - [SMALL_STATE(1501)] = 31213, - [SMALL_STATE(1502)] = 31283, - [SMALL_STATE(1503)] = 31373, - [SMALL_STATE(1504)] = 31463, - [SMALL_STATE(1505)] = 31561, - [SMALL_STATE(1506)] = 31653, - [SMALL_STATE(1507)] = 31720, - [SMALL_STATE(1508)] = 31785, - [SMALL_STATE(1509)] = 31852, - [SMALL_STATE(1510)] = 31915, - [SMALL_STATE(1511)] = 32000, - [SMALL_STATE(1512)] = 32063, - [SMALL_STATE(1513)] = 32148, - [SMALL_STATE(1514)] = 32215, - [SMALL_STATE(1515)] = 32300, - [SMALL_STATE(1516)] = 32385, - [SMALL_STATE(1517)] = 32441, - [SMALL_STATE(1518)] = 32499, - [SMALL_STATE(1519)] = 32557, - [SMALL_STATE(1520)] = 32617, - [SMALL_STATE(1521)] = 32681, - [SMALL_STATE(1522)] = 32737, - [SMALL_STATE(1523)] = 32795, - [SMALL_STATE(1524)] = 32851, - [SMALL_STATE(1525)] = 32909, - [SMALL_STATE(1526)] = 32965, - [SMALL_STATE(1527)] = 33029, - [SMALL_STATE(1528)] = 33089, - [SMALL_STATE(1529)] = 33145, - [SMALL_STATE(1530)] = 33205, - [SMALL_STATE(1531)] = 33269, - [SMALL_STATE(1532)] = 33327, - [SMALL_STATE(1533)] = 33391, - [SMALL_STATE(1534)] = 33451, - [SMALL_STATE(1535)] = 33511, - [SMALL_STATE(1536)] = 33571, - [SMALL_STATE(1537)] = 33627, - [SMALL_STATE(1538)] = 33687, - [SMALL_STATE(1539)] = 33745, - [SMALL_STATE(1540)] = 33801, - [SMALL_STATE(1541)] = 33857, - [SMALL_STATE(1542)] = 33913, - [SMALL_STATE(1543)] = 33970, - [SMALL_STATE(1544)] = 34065, - [SMALL_STATE(1545)] = 34124, - [SMALL_STATE(1546)] = 34179, - [SMALL_STATE(1547)] = 34238, - [SMALL_STATE(1548)] = 34293, - [SMALL_STATE(1549)] = 34352, - [SMALL_STATE(1550)] = 34447, - [SMALL_STATE(1551)] = 34502, - [SMALL_STATE(1552)] = 34597, - [SMALL_STATE(1553)] = 34654, - [SMALL_STATE(1554)] = 34711, - [SMALL_STATE(1555)] = 34770, - [SMALL_STATE(1556)] = 34865, - [SMALL_STATE(1557)] = 34920, - [SMALL_STATE(1558)] = 34975, - [SMALL_STATE(1559)] = 35032, - [SMALL_STATE(1560)] = 35087, - [SMALL_STATE(1561)] = 35182, - [SMALL_STATE(1562)] = 35237, - [SMALL_STATE(1563)] = 35332, - [SMALL_STATE(1564)] = 35427, - [SMALL_STATE(1565)] = 35482, - [SMALL_STATE(1566)] = 35539, - [SMALL_STATE(1567)] = 35634, - [SMALL_STATE(1568)] = 35729, - [SMALL_STATE(1569)] = 35786, - [SMALL_STATE(1570)] = 35881, - [SMALL_STATE(1571)] = 35938, - [SMALL_STATE(1572)] = 36033, - [SMALL_STATE(1573)] = 36128, - [SMALL_STATE(1574)] = 36216, - [SMALL_STATE(1575)] = 36308, - [SMALL_STATE(1576)] = 36394, - [SMALL_STATE(1577)] = 36486, - [SMALL_STATE(1578)] = 36572, - [SMALL_STATE(1579)] = 36664, - [SMALL_STATE(1580)] = 36746, - [SMALL_STATE(1581)] = 36814, - [SMALL_STATE(1582)] = 36868, - [SMALL_STATE(1583)] = 36922, - [SMALL_STATE(1584)] = 36976, - [SMALL_STATE(1585)] = 37030, - [SMALL_STATE(1586)] = 37118, - [SMALL_STATE(1587)] = 37172, - [SMALL_STATE(1588)] = 37226, - [SMALL_STATE(1589)] = 37298, - [SMALL_STATE(1590)] = 37390, - [SMALL_STATE(1591)] = 37468, - [SMALL_STATE(1592)] = 37524, - [SMALL_STATE(1593)] = 37612, - [SMALL_STATE(1594)] = 37692, - [SMALL_STATE(1595)] = 37748, - [SMALL_STATE(1596)] = 37802, - [SMALL_STATE(1597)] = 37858, - [SMALL_STATE(1598)] = 37914, - [SMALL_STATE(1599)] = 37970, - [SMALL_STATE(1600)] = 38024, - [SMALL_STATE(1601)] = 38080, - [SMALL_STATE(1602)] = 38166, - [SMALL_STATE(1603)] = 38222, - [SMALL_STATE(1604)] = 38276, - [SMALL_STATE(1605)] = 38334, - [SMALL_STATE(1606)] = 38388, - [SMALL_STATE(1607)] = 38454, - [SMALL_STATE(1608)] = 38542, - [SMALL_STATE(1609)] = 38598, - [SMALL_STATE(1610)] = 38652, - [SMALL_STATE(1611)] = 38740, - [SMALL_STATE(1612)] = 38794, - [SMALL_STATE(1613)] = 38850, - [SMALL_STATE(1614)] = 38938, - [SMALL_STATE(1615)] = 38994, - [SMALL_STATE(1616)] = 39080, - [SMALL_STATE(1617)] = 39166, - [SMALL_STATE(1618)] = 39220, - [SMALL_STATE(1619)] = 39308, - [SMALL_STATE(1620)] = 39382, - [SMALL_STATE(1621)] = 39438, - [SMALL_STATE(1622)] = 39492, - [SMALL_STATE(1623)] = 39548, - [SMALL_STATE(1624)] = 39604, - [SMALL_STATE(1625)] = 39658, - [SMALL_STATE(1626)] = 39744, - [SMALL_STATE(1627)] = 39800, - [SMALL_STATE(1628)] = 39882, - [SMALL_STATE(1629)] = 39974, - [SMALL_STATE(1630)] = 40038, - [SMALL_STATE(1631)] = 40108, - [SMALL_STATE(1632)] = 40162, - [SMALL_STATE(1633)] = 40254, - [SMALL_STATE(1634)] = 40310, - [SMALL_STATE(1635)] = 40398, - [SMALL_STATE(1636)] = 40454, - [SMALL_STATE(1637)] = 40543, - [SMALL_STATE(1638)] = 40596, - [SMALL_STATE(1639)] = 40681, - [SMALL_STATE(1640)] = 40734, - [SMALL_STATE(1641)] = 40787, - [SMALL_STATE(1642)] = 40840, - [SMALL_STATE(1643)] = 40893, - [SMALL_STATE(1644)] = 40952, - [SMALL_STATE(1645)] = 41011, - [SMALL_STATE(1646)] = 41092, - [SMALL_STATE(1647)] = 41177, - [SMALL_STATE(1648)] = 41230, - [SMALL_STATE(1649)] = 41315, - [SMALL_STATE(1650)] = 41400, - [SMALL_STATE(1651)] = 41453, - [SMALL_STATE(1652)] = 41506, - [SMALL_STATE(1653)] = 41559, - [SMALL_STATE(1654)] = 41612, - [SMALL_STATE(1655)] = 41701, - [SMALL_STATE(1656)] = 41754, - [SMALL_STATE(1657)] = 41807, - [SMALL_STATE(1658)] = 41860, - [SMALL_STATE(1659)] = 41913, - [SMALL_STATE(1660)] = 41972, - [SMALL_STATE(1661)] = 42061, - [SMALL_STATE(1662)] = 42114, - [SMALL_STATE(1663)] = 42167, - [SMALL_STATE(1664)] = 42220, - [SMALL_STATE(1665)] = 42273, - [SMALL_STATE(1666)] = 42334, - [SMALL_STATE(1667)] = 42387, - [SMALL_STATE(1668)] = 42440, - [SMALL_STATE(1669)] = 42493, - [SMALL_STATE(1670)] = 42546, - [SMALL_STATE(1671)] = 42599, - [SMALL_STATE(1672)] = 42686, - [SMALL_STATE(1673)] = 42739, - [SMALL_STATE(1674)] = 42792, - [SMALL_STATE(1675)] = 42881, - [SMALL_STATE(1676)] = 42934, - [SMALL_STATE(1677)] = 42987, - [SMALL_STATE(1678)] = 43040, - [SMALL_STATE(1679)] = 43093, - [SMALL_STATE(1680)] = 43146, - [SMALL_STATE(1681)] = 43199, - [SMALL_STATE(1682)] = 43252, - [SMALL_STATE(1683)] = 43341, - [SMALL_STATE(1684)] = 43394, - [SMALL_STATE(1685)] = 43447, - [SMALL_STATE(1686)] = 43500, - [SMALL_STATE(1687)] = 43553, - [SMALL_STATE(1688)] = 43606, - [SMALL_STATE(1689)] = 43659, - [SMALL_STATE(1690)] = 43712, - [SMALL_STATE(1691)] = 43797, - [SMALL_STATE(1692)] = 43850, - [SMALL_STATE(1693)] = 43903, - [SMALL_STATE(1694)] = 43956, - [SMALL_STATE(1695)] = 44009, - [SMALL_STATE(1696)] = 44098, - [SMALL_STATE(1697)] = 44151, - [SMALL_STATE(1698)] = 44238, - [SMALL_STATE(1699)] = 44325, - [SMALL_STATE(1700)] = 44412, - [SMALL_STATE(1701)] = 44465, - [SMALL_STATE(1702)] = 44518, - [SMALL_STATE(1703)] = 44607, - [SMALL_STATE(1704)] = 44694, - [SMALL_STATE(1705)] = 44783, - [SMALL_STATE(1706)] = 44836, - [SMALL_STATE(1707)] = 44889, - [SMALL_STATE(1708)] = 44942, - [SMALL_STATE(1709)] = 44995, - [SMALL_STATE(1710)] = 45048, - [SMALL_STATE(1711)] = 45133, - [SMALL_STATE(1712)] = 45220, - [SMALL_STATE(1713)] = 45283, - [SMALL_STATE(1714)] = 45352, - [SMALL_STATE(1715)] = 45419, - [SMALL_STATE(1716)] = 45490, - [SMALL_STATE(1717)] = 45567, - [SMALL_STATE(1718)] = 45646, - [SMALL_STATE(1719)] = 45711, - [SMALL_STATE(1720)] = 45796, - [SMALL_STATE(1721)] = 45881, - [SMALL_STATE(1722)] = 45954, - [SMALL_STATE(1723)] = 46035, - [SMALL_STATE(1724)] = 46088, - [SMALL_STATE(1725)] = 46141, - [SMALL_STATE(1726)] = 46194, - [SMALL_STATE(1727)] = 46247, - [SMALL_STATE(1728)] = 46334, - [SMALL_STATE(1729)] = 46387, - [SMALL_STATE(1730)] = 46440, - [SMALL_STATE(1731)] = 46493, - [SMALL_STATE(1732)] = 46546, - [SMALL_STATE(1733)] = 46599, - [SMALL_STATE(1734)] = 46686, - [SMALL_STATE(1735)] = 46739, - [SMALL_STATE(1736)] = 46792, - [SMALL_STATE(1737)] = 46845, - [SMALL_STATE(1738)] = 46898, - [SMALL_STATE(1739)] = 46951, - [SMALL_STATE(1740)] = 47004, - [SMALL_STATE(1741)] = 47093, - [SMALL_STATE(1742)] = 47146, - [SMALL_STATE(1743)] = 47199, - [SMALL_STATE(1744)] = 47252, - [SMALL_STATE(1745)] = 47305, - [SMALL_STATE(1746)] = 47358, - [SMALL_STATE(1747)] = 47445, - [SMALL_STATE(1748)] = 47498, - [SMALL_STATE(1749)] = 47587, - [SMALL_STATE(1750)] = 47672, - [SMALL_STATE(1751)] = 47725, - [SMALL_STATE(1752)] = 47812, - [SMALL_STATE(1753)] = 47865, - [SMALL_STATE(1754)] = 47928, - [SMALL_STATE(1755)] = 47997, - [SMALL_STATE(1756)] = 48064, - [SMALL_STATE(1757)] = 48135, - [SMALL_STATE(1758)] = 48212, - [SMALL_STATE(1759)] = 48291, - [SMALL_STATE(1760)] = 48356, - [SMALL_STATE(1761)] = 48441, - [SMALL_STATE(1762)] = 48526, - [SMALL_STATE(1763)] = 48599, - [SMALL_STATE(1764)] = 48680, - [SMALL_STATE(1765)] = 48733, - [SMALL_STATE(1766)] = 48786, - [SMALL_STATE(1767)] = 48839, - [SMALL_STATE(1768)] = 48892, - [SMALL_STATE(1769)] = 48979, - [SMALL_STATE(1770)] = 49032, - [SMALL_STATE(1771)] = 49085, - [SMALL_STATE(1772)] = 49138, - [SMALL_STATE(1773)] = 49191, - [SMALL_STATE(1774)] = 49244, - [SMALL_STATE(1775)] = 49297, - [SMALL_STATE(1776)] = 49350, - [SMALL_STATE(1777)] = 49403, - [SMALL_STATE(1778)] = 49456, - [SMALL_STATE(1779)] = 49509, - [SMALL_STATE(1780)] = 49562, - [SMALL_STATE(1781)] = 49615, - [SMALL_STATE(1782)] = 49668, - [SMALL_STATE(1783)] = 49757, - [SMALL_STATE(1784)] = 49844, - [SMALL_STATE(1785)] = 49897, - [SMALL_STATE(1786)] = 49950, - [SMALL_STATE(1787)] = 50039, - [SMALL_STATE(1788)] = 50126, - [SMALL_STATE(1789)] = 50179, - [SMALL_STATE(1790)] = 50232, - [SMALL_STATE(1791)] = 50319, - [SMALL_STATE(1792)] = 50372, - [SMALL_STATE(1793)] = 50425, - [SMALL_STATE(1794)] = 50514, - [SMALL_STATE(1795)] = 50603, - [SMALL_STATE(1796)] = 50682, - [SMALL_STATE(1797)] = 50771, - [SMALL_STATE(1798)] = 50860, - [SMALL_STATE(1799)] = 50947, - [SMALL_STATE(1800)] = 51034, - [SMALL_STATE(1801)] = 51123, - [SMALL_STATE(1802)] = 51212, - [SMALL_STATE(1803)] = 51301, - [SMALL_STATE(1804)] = 51390, - [SMALL_STATE(1805)] = 51479, - [SMALL_STATE(1806)] = 51568, - [SMALL_STATE(1807)] = 51657, - [SMALL_STATE(1808)] = 51746, - [SMALL_STATE(1809)] = 51835, - [SMALL_STATE(1810)] = 51924, - [SMALL_STATE(1811)] = 52013, - [SMALL_STATE(1812)] = 52094, - [SMALL_STATE(1813)] = 52179, - [SMALL_STATE(1814)] = 52268, - [SMALL_STATE(1815)] = 52353, - [SMALL_STATE(1816)] = 52438, - [SMALL_STATE(1817)] = 52527, - [SMALL_STATE(1818)] = 52614, - [SMALL_STATE(1819)] = 52701, - [SMALL_STATE(1820)] = 52790, - [SMALL_STATE(1821)] = 52879, - [SMALL_STATE(1822)] = 52968, - [SMALL_STATE(1823)] = 53057, - [SMALL_STATE(1824)] = 53146, - [SMALL_STATE(1825)] = 53235, - [SMALL_STATE(1826)] = 53324, - [SMALL_STATE(1827)] = 53413, - [SMALL_STATE(1828)] = 53502, - [SMALL_STATE(1829)] = 53591, - [SMALL_STATE(1830)] = 53680, - [SMALL_STATE(1831)] = 53769, - [SMALL_STATE(1832)] = 53858, - [SMALL_STATE(1833)] = 53947, - [SMALL_STATE(1834)] = 54036, - [SMALL_STATE(1835)] = 54125, - [SMALL_STATE(1836)] = 54214, - [SMALL_STATE(1837)] = 54303, - [SMALL_STATE(1838)] = 54392, - [SMALL_STATE(1839)] = 54481, - [SMALL_STATE(1840)] = 54568, - [SMALL_STATE(1841)] = 54657, - [SMALL_STATE(1842)] = 54710, - [SMALL_STATE(1843)] = 54796, - [SMALL_STATE(1844)] = 54882, - [SMALL_STATE(1845)] = 54968, - [SMALL_STATE(1846)] = 55054, - [SMALL_STATE(1847)] = 55130, - [SMALL_STATE(1848)] = 55214, - [SMALL_STATE(1849)] = 55300, - [SMALL_STATE(1850)] = 55386, - [SMALL_STATE(1851)] = 55472, - [SMALL_STATE(1852)] = 55558, - [SMALL_STATE(1853)] = 55644, - [SMALL_STATE(1854)] = 55730, - [SMALL_STATE(1855)] = 55816, - [SMALL_STATE(1856)] = 55902, - [SMALL_STATE(1857)] = 55988, - [SMALL_STATE(1858)] = 56074, - [SMALL_STATE(1859)] = 56160, - [SMALL_STATE(1860)] = 56246, - [SMALL_STATE(1861)] = 56332, - [SMALL_STATE(1862)] = 56418, - [SMALL_STATE(1863)] = 56504, - [SMALL_STATE(1864)] = 56590, - [SMALL_STATE(1865)] = 56676, - [SMALL_STATE(1866)] = 56760, - [SMALL_STATE(1867)] = 56846, - [SMALL_STATE(1868)] = 56932, - [SMALL_STATE(1869)] = 57018, - [SMALL_STATE(1870)] = 57104, - [SMALL_STATE(1871)] = 57190, - [SMALL_STATE(1872)] = 57276, - [SMALL_STATE(1873)] = 57362, - [SMALL_STATE(1874)] = 57448, - [SMALL_STATE(1875)] = 57524, - [SMALL_STATE(1876)] = 57610, - [SMALL_STATE(1877)] = 57683, - [SMALL_STATE(1878)] = 57756, - [SMALL_STATE(1879)] = 57829, - [SMALL_STATE(1880)] = 57902, - [SMALL_STATE(1881)] = 57975, - [SMALL_STATE(1882)] = 58049, - [SMALL_STATE(1883)] = 58123, - [SMALL_STATE(1884)] = 58197, - [SMALL_STATE(1885)] = 58271, - [SMALL_STATE(1886)] = 58345, - [SMALL_STATE(1887)] = 58419, - [SMALL_STATE(1888)] = 58493, - [SMALL_STATE(1889)] = 58567, - [SMALL_STATE(1890)] = 58613, - [SMALL_STATE(1891)] = 58659, - [SMALL_STATE(1892)] = 58705, - [SMALL_STATE(1893)] = 58766, - [SMALL_STATE(1894)] = 58827, - [SMALL_STATE(1895)] = 58888, - [SMALL_STATE(1896)] = 58949, - [SMALL_STATE(1897)] = 59010, - [SMALL_STATE(1898)] = 59071, - [SMALL_STATE(1899)] = 59132, - [SMALL_STATE(1900)] = 59193, - [SMALL_STATE(1901)] = 59251, - [SMALL_STATE(1902)] = 59309, - [SMALL_STATE(1903)] = 59345, - [SMALL_STATE(1904)] = 59393, - [SMALL_STATE(1905)] = 59429, - [SMALL_STATE(1906)] = 59474, - [SMALL_STATE(1907)] = 59511, - [SMALL_STATE(1908)] = 59556, - [SMALL_STATE(1909)] = 59593, - [SMALL_STATE(1910)] = 59630, - [SMALL_STATE(1911)] = 59683, - [SMALL_STATE(1912)] = 59728, - [SMALL_STATE(1913)] = 59765, - [SMALL_STATE(1914)] = 59801, - [SMALL_STATE(1915)] = 59841, - [SMALL_STATE(1916)] = 59877, - [SMALL_STATE(1917)] = 59917, - [SMALL_STATE(1918)] = 59957, - [SMALL_STATE(1919)] = 59993, - [SMALL_STATE(1920)] = 60029, - [SMALL_STATE(1921)] = 60069, - [SMALL_STATE(1922)] = 60102, - [SMALL_STATE(1923)] = 60135, - [SMALL_STATE(1924)] = 60168, - [SMALL_STATE(1925)] = 60201, - [SMALL_STATE(1926)] = 60234, - [SMALL_STATE(1927)] = 60265, - [SMALL_STATE(1928)] = 60298, - [SMALL_STATE(1929)] = 60331, - [SMALL_STATE(1930)] = 60364, - [SMALL_STATE(1931)] = 60396, - [SMALL_STATE(1932)] = 60428, - [SMALL_STATE(1933)] = 60488, - [SMALL_STATE(1934)] = 60520, - [SMALL_STATE(1935)] = 60580, - [SMALL_STATE(1936)] = 60624, - [SMALL_STATE(1937)] = 60670, - [SMALL_STATE(1938)] = 60713, - [SMALL_STATE(1939)] = 60746, - [SMALL_STATE(1940)] = 60775, - [SMALL_STATE(1941)] = 60808, - [SMALL_STATE(1942)] = 60839, - [SMALL_STATE(1943)] = 60894, - [SMALL_STATE(1944)] = 60923, - [SMALL_STATE(1945)] = 60956, - [SMALL_STATE(1946)] = 60987, - [SMALL_STATE(1947)] = 61016, - [SMALL_STATE(1948)] = 61047, - [SMALL_STATE(1949)] = 61078, - [SMALL_STATE(1950)] = 61111, - [SMALL_STATE(1951)] = 61140, - [SMALL_STATE(1952)] = 61173, - [SMALL_STATE(1953)] = 61206, - [SMALL_STATE(1954)] = 61235, - [SMALL_STATE(1955)] = 61264, - [SMALL_STATE(1956)] = 61317, - [SMALL_STATE(1957)] = 61346, - [SMALL_STATE(1958)] = 61375, - [SMALL_STATE(1959)] = 61428, - [SMALL_STATE(1960)] = 61457, - [SMALL_STATE(1961)] = 61488, - [SMALL_STATE(1962)] = 61529, - [SMALL_STATE(1963)] = 61560, - [SMALL_STATE(1964)] = 61591, - [SMALL_STATE(1965)] = 61622, - [SMALL_STATE(1966)] = 61650, - [SMALL_STATE(1967)] = 61678, - [SMALL_STATE(1968)] = 61706, - [SMALL_STATE(1969)] = 61734, - [SMALL_STATE(1970)] = 61762, - [SMALL_STATE(1971)] = 61790, - [SMALL_STATE(1972)] = 61818, - [SMALL_STATE(1973)] = 61846, - [SMALL_STATE(1974)] = 61874, - [SMALL_STATE(1975)] = 61902, - [SMALL_STATE(1976)] = 61930, - [SMALL_STATE(1977)] = 61958, - [SMALL_STATE(1978)] = 61986, - [SMALL_STATE(1979)] = 62014, - [SMALL_STATE(1980)] = 62042, - [SMALL_STATE(1981)] = 62070, - [SMALL_STATE(1982)] = 62114, - [SMALL_STATE(1983)] = 62144, - [SMALL_STATE(1984)] = 62172, - [SMALL_STATE(1985)] = 62200, - [SMALL_STATE(1986)] = 62228, - [SMALL_STATE(1987)] = 62256, - [SMALL_STATE(1988)] = 62286, - [SMALL_STATE(1989)] = 62314, - [SMALL_STATE(1990)] = 62342, - [SMALL_STATE(1991)] = 62370, - [SMALL_STATE(1992)] = 62398, - [SMALL_STATE(1993)] = 62426, - [SMALL_STATE(1994)] = 62454, - [SMALL_STATE(1995)] = 62482, - [SMALL_STATE(1996)] = 62510, - [SMALL_STATE(1997)] = 62538, - [SMALL_STATE(1998)] = 62567, - [SMALL_STATE(1999)] = 62598, - [SMALL_STATE(2000)] = 62633, - [SMALL_STATE(2001)] = 62684, - [SMALL_STATE(2002)] = 62713, - [SMALL_STATE(2003)] = 62745, - [SMALL_STATE(2004)] = 62777, - [SMALL_STATE(2005)] = 62805, - [SMALL_STATE(2006)] = 62835, - [SMALL_STATE(2007)] = 62867, - [SMALL_STATE(2008)] = 62911, - [SMALL_STATE(2009)] = 62943, - [SMALL_STATE(2010)] = 62975, - [SMALL_STATE(2011)] = 63007, - [SMALL_STATE(2012)] = 63035, - [SMALL_STATE(2013)] = 63067, - [SMALL_STATE(2014)] = 63099, - [SMALL_STATE(2015)] = 63131, - [SMALL_STATE(2016)] = 63163, - [SMALL_STATE(2017)] = 63195, - [SMALL_STATE(2018)] = 63227, - [SMALL_STATE(2019)] = 63272, - [SMALL_STATE(2020)] = 63317, - [SMALL_STATE(2021)] = 63362, - [SMALL_STATE(2022)] = 63407, - [SMALL_STATE(2023)] = 63452, - [SMALL_STATE(2024)] = 63497, - [SMALL_STATE(2025)] = 63542, - [SMALL_STATE(2026)] = 63587, - [SMALL_STATE(2027)] = 63624, - [SMALL_STATE(2028)] = 63669, - [SMALL_STATE(2029)] = 63714, - [SMALL_STATE(2030)] = 63759, - [SMALL_STATE(2031)] = 63804, - [SMALL_STATE(2032)] = 63849, - [SMALL_STATE(2033)] = 63894, - [SMALL_STATE(2034)] = 63939, - [SMALL_STATE(2035)] = 63977, - [SMALL_STATE(2036)] = 64005, - [SMALL_STATE(2037)] = 64033, - [SMALL_STATE(2038)] = 64071, - [SMALL_STATE(2039)] = 64111, - [SMALL_STATE(2040)] = 64135, - [SMALL_STATE(2041)] = 64163, - [SMALL_STATE(2042)] = 64191, - [SMALL_STATE(2043)] = 64231, - [SMALL_STATE(2044)] = 64259, - [SMALL_STATE(2045)] = 64297, - [SMALL_STATE(2046)] = 64325, - [SMALL_STATE(2047)] = 64353, - [SMALL_STATE(2048)] = 64377, - [SMALL_STATE(2049)] = 64405, - [SMALL_STATE(2050)] = 64445, - [SMALL_STATE(2051)] = 64475, - [SMALL_STATE(2052)] = 64517, - [SMALL_STATE(2053)] = 64559, - [SMALL_STATE(2054)] = 64583, - [SMALL_STATE(2055)] = 64611, - [SMALL_STATE(2056)] = 64653, - [SMALL_STATE(2057)] = 64677, - [SMALL_STATE(2058)] = 64719, - [SMALL_STATE(2059)] = 64757, - [SMALL_STATE(2060)] = 64781, - [SMALL_STATE(2061)] = 64823, - [SMALL_STATE(2062)] = 64857, - [SMALL_STATE(2063)] = 64899, - [SMALL_STATE(2064)] = 64933, - [SMALL_STATE(2065)] = 64963, - [SMALL_STATE(2066)] = 65001, - [SMALL_STATE(2067)] = 65029, - [SMALL_STATE(2068)] = 65057, - [SMALL_STATE(2069)] = 65087, - [SMALL_STATE(2070)] = 65115, - [SMALL_STATE(2071)] = 65153, - [SMALL_STATE(2072)] = 65183, - [SMALL_STATE(2073)] = 65221, - [SMALL_STATE(2074)] = 65259, - [SMALL_STATE(2075)] = 65297, - [SMALL_STATE(2076)] = 65339, - [SMALL_STATE(2077)] = 65362, - [SMALL_STATE(2078)] = 65385, - [SMALL_STATE(2079)] = 65408, - [SMALL_STATE(2080)] = 65431, - [SMALL_STATE(2081)] = 65454, - [SMALL_STATE(2082)] = 65477, - [SMALL_STATE(2083)] = 65500, - [SMALL_STATE(2084)] = 65523, - [SMALL_STATE(2085)] = 65546, - [SMALL_STATE(2086)] = 65569, - [SMALL_STATE(2087)] = 65592, - [SMALL_STATE(2088)] = 65629, - [SMALL_STATE(2089)] = 65652, - [SMALL_STATE(2090)] = 65693, - [SMALL_STATE(2091)] = 65734, - [SMALL_STATE(2092)] = 65757, - [SMALL_STATE(2093)] = 65780, - [SMALL_STATE(2094)] = 65803, - [SMALL_STATE(2095)] = 65826, - [SMALL_STATE(2096)] = 65849, - [SMALL_STATE(2097)] = 65872, - [SMALL_STATE(2098)] = 65895, - [SMALL_STATE(2099)] = 65918, - [SMALL_STATE(2100)] = 65941, - [SMALL_STATE(2101)] = 65964, - [SMALL_STATE(2102)] = 65987, - [SMALL_STATE(2103)] = 66010, - [SMALL_STATE(2104)] = 66033, - [SMALL_STATE(2105)] = 66056, - [SMALL_STATE(2106)] = 66093, - [SMALL_STATE(2107)] = 66116, - [SMALL_STATE(2108)] = 66139, - [SMALL_STATE(2109)] = 66180, - [SMALL_STATE(2110)] = 66211, - [SMALL_STATE(2111)] = 66234, - [SMALL_STATE(2112)] = 66271, - [SMALL_STATE(2113)] = 66294, - [SMALL_STATE(2114)] = 66329, - [SMALL_STATE(2115)] = 66362, - [SMALL_STATE(2116)] = 66385, - [SMALL_STATE(2117)] = 66426, - [SMALL_STATE(2118)] = 66461, - [SMALL_STATE(2119)] = 66492, - [SMALL_STATE(2120)] = 66523, - [SMALL_STATE(2121)] = 66558, - [SMALL_STATE(2122)] = 66581, - [SMALL_STATE(2123)] = 66604, - [SMALL_STATE(2124)] = 66641, - [SMALL_STATE(2125)] = 66672, - [SMALL_STATE(2126)] = 66695, - [SMALL_STATE(2127)] = 66718, - [SMALL_STATE(2128)] = 66741, - [SMALL_STATE(2129)] = 66765, - [SMALL_STATE(2130)] = 66799, - [SMALL_STATE(2131)] = 66831, - [SMALL_STATE(2132)] = 66863, - [SMALL_STATE(2133)] = 66901, - [SMALL_STATE(2134)] = 66929, - [SMALL_STATE(2135)] = 66953, - [SMALL_STATE(2136)] = 66987, - [SMALL_STATE(2137)] = 67019, - [SMALL_STATE(2138)] = 67047, - [SMALL_STATE(2139)] = 67071, - [SMALL_STATE(2140)] = 67109, - [SMALL_STATE(2141)] = 67141, - [SMALL_STATE(2142)] = 67179, - [SMALL_STATE(2143)] = 67217, - [SMALL_STATE(2144)] = 67255, - [SMALL_STATE(2145)] = 67293, - [SMALL_STATE(2146)] = 67331, - [SMALL_STATE(2147)] = 67357, - [SMALL_STATE(2148)] = 67389, - [SMALL_STATE(2149)] = 67427, - [SMALL_STATE(2150)] = 67451, - [SMALL_STATE(2151)] = 67487, - [SMALL_STATE(2152)] = 67515, - [SMALL_STATE(2153)] = 67547, - [SMALL_STATE(2154)] = 67573, - [SMALL_STATE(2155)] = 67601, - [SMALL_STATE(2156)] = 67633, - [SMALL_STATE(2157)] = 67657, - [SMALL_STATE(2158)] = 67689, - [SMALL_STATE(2159)] = 67727, - [SMALL_STATE(2160)] = 67765, - [SMALL_STATE(2161)] = 67793, - [SMALL_STATE(2162)] = 67831, - [SMALL_STATE(2163)] = 67859, - [SMALL_STATE(2164)] = 67885, - [SMALL_STATE(2165)] = 67923, - [SMALL_STATE(2166)] = 67955, - [SMALL_STATE(2167)] = 67993, - [SMALL_STATE(2168)] = 68031, - [SMALL_STATE(2169)] = 68063, - [SMALL_STATE(2170)] = 68101, - [SMALL_STATE(2171)] = 68133, - [SMALL_STATE(2172)] = 68171, - [SMALL_STATE(2173)] = 68203, - [SMALL_STATE(2174)] = 68229, - [SMALL_STATE(2175)] = 68261, - [SMALL_STATE(2176)] = 68289, - [SMALL_STATE(2177)] = 68324, - [SMALL_STATE(2178)] = 68345, - [SMALL_STATE(2179)] = 68366, - [SMALL_STATE(2180)] = 68387, - [SMALL_STATE(2181)] = 68422, - [SMALL_STATE(2182)] = 68457, - [SMALL_STATE(2183)] = 68492, - [SMALL_STATE(2184)] = 68527, - [SMALL_STATE(2185)] = 68562, - [SMALL_STATE(2186)] = 68597, - [SMALL_STATE(2187)] = 68632, - [SMALL_STATE(2188)] = 68667, - [SMALL_STATE(2189)] = 68702, - [SMALL_STATE(2190)] = 68737, - [SMALL_STATE(2191)] = 68772, - [SMALL_STATE(2192)] = 68807, - [SMALL_STATE(2193)] = 68842, - [SMALL_STATE(2194)] = 68877, - [SMALL_STATE(2195)] = 68912, - [SMALL_STATE(2196)] = 68947, - [SMALL_STATE(2197)] = 68982, - [SMALL_STATE(2198)] = 69017, - [SMALL_STATE(2199)] = 69052, - [SMALL_STATE(2200)] = 69087, - [SMALL_STATE(2201)] = 69122, - [SMALL_STATE(2202)] = 69147, - [SMALL_STATE(2203)] = 69182, - [SMALL_STATE(2204)] = 69207, - [SMALL_STATE(2205)] = 69242, - [SMALL_STATE(2206)] = 69277, - [SMALL_STATE(2207)] = 69306, - [SMALL_STATE(2208)] = 69327, - [SMALL_STATE(2209)] = 69348, - [SMALL_STATE(2210)] = 69383, - [SMALL_STATE(2211)] = 69418, - [SMALL_STATE(2212)] = 69451, - [SMALL_STATE(2213)] = 69486, - [SMALL_STATE(2214)] = 69511, - [SMALL_STATE(2215)] = 69546, - [SMALL_STATE(2216)] = 69581, - [SMALL_STATE(2217)] = 69614, - [SMALL_STATE(2218)] = 69649, - [SMALL_STATE(2219)] = 69684, - [SMALL_STATE(2220)] = 69719, - [SMALL_STATE(2221)] = 69746, - [SMALL_STATE(2222)] = 69779, - [SMALL_STATE(2223)] = 69812, - [SMALL_STATE(2224)] = 69833, - [SMALL_STATE(2225)] = 69868, - [SMALL_STATE(2226)] = 69903, - [SMALL_STATE(2227)] = 69938, - [SMALL_STATE(2228)] = 69973, - [SMALL_STATE(2229)] = 70008, - [SMALL_STATE(2230)] = 70043, - [SMALL_STATE(2231)] = 70076, - [SMALL_STATE(2232)] = 70111, - [SMALL_STATE(2233)] = 70137, - [SMALL_STATE(2234)] = 70163, - [SMALL_STATE(2235)] = 70193, - [SMALL_STATE(2236)] = 70223, - [SMALL_STATE(2237)] = 70253, - [SMALL_STATE(2238)] = 70283, - [SMALL_STATE(2239)] = 70311, - [SMALL_STATE(2240)] = 70343, - [SMALL_STATE(2241)] = 70365, - [SMALL_STATE(2242)] = 70397, - [SMALL_STATE(2243)] = 70429, - [SMALL_STATE(2244)] = 70461, - [SMALL_STATE(2245)] = 70493, - [SMALL_STATE(2246)] = 70525, - [SMALL_STATE(2247)] = 70557, - [SMALL_STATE(2248)] = 70589, - [SMALL_STATE(2249)] = 70621, - [SMALL_STATE(2250)] = 70651, - [SMALL_STATE(2251)] = 70681, - [SMALL_STATE(2252)] = 70713, - [SMALL_STATE(2253)] = 70745, - [SMALL_STATE(2254)] = 70777, - [SMALL_STATE(2255)] = 70809, - [SMALL_STATE(2256)] = 70841, - [SMALL_STATE(2257)] = 70873, - [SMALL_STATE(2258)] = 70901, - [SMALL_STATE(2259)] = 70933, - [SMALL_STATE(2260)] = 70965, - [SMALL_STATE(2261)] = 70997, - [SMALL_STATE(2262)] = 71027, - [SMALL_STATE(2263)] = 71057, - [SMALL_STATE(2264)] = 71089, - [SMALL_STATE(2265)] = 71119, - [SMALL_STATE(2266)] = 71149, - [SMALL_STATE(2267)] = 71171, - [SMALL_STATE(2268)] = 71203, - [SMALL_STATE(2269)] = 71235, - [SMALL_STATE(2270)] = 71267, - [SMALL_STATE(2271)] = 71295, - [SMALL_STATE(2272)] = 71327, - [SMALL_STATE(2273)] = 71349, - [SMALL_STATE(2274)] = 71381, - [SMALL_STATE(2275)] = 71413, - [SMALL_STATE(2276)] = 71445, - [SMALL_STATE(2277)] = 71477, - [SMALL_STATE(2278)] = 71509, - [SMALL_STATE(2279)] = 71541, - [SMALL_STATE(2280)] = 71573, - [SMALL_STATE(2281)] = 71605, - [SMALL_STATE(2282)] = 71633, - [SMALL_STATE(2283)] = 71659, - [SMALL_STATE(2284)] = 71681, - [SMALL_STATE(2285)] = 71709, - [SMALL_STATE(2286)] = 71735, - [SMALL_STATE(2287)] = 71767, - [SMALL_STATE(2288)] = 71789, - [SMALL_STATE(2289)] = 71811, - [SMALL_STATE(2290)] = 71843, - [SMALL_STATE(2291)] = 71872, - [SMALL_STATE(2292)] = 71901, - [SMALL_STATE(2293)] = 71922, - [SMALL_STATE(2294)] = 71951, - [SMALL_STATE(2295)] = 71980, - [SMALL_STATE(2296)] = 72009, - [SMALL_STATE(2297)] = 72038, - [SMALL_STATE(2298)] = 72067, - [SMALL_STATE(2299)] = 72096, - [SMALL_STATE(2300)] = 72117, - [SMALL_STATE(2301)] = 72146, - [SMALL_STATE(2302)] = 72175, - [SMALL_STATE(2303)] = 72198, - [SMALL_STATE(2304)] = 72227, - [SMALL_STATE(2305)] = 72252, - [SMALL_STATE(2306)] = 72279, - [SMALL_STATE(2307)] = 72308, - [SMALL_STATE(2308)] = 72337, - [SMALL_STATE(2309)] = 72366, - [SMALL_STATE(2310)] = 72395, - [SMALL_STATE(2311)] = 72424, - [SMALL_STATE(2312)] = 72447, - [SMALL_STATE(2313)] = 72476, - [SMALL_STATE(2314)] = 72505, - [SMALL_STATE(2315)] = 72534, - [SMALL_STATE(2316)] = 72555, - [SMALL_STATE(2317)] = 72584, - [SMALL_STATE(2318)] = 72613, - [SMALL_STATE(2319)] = 72642, - [SMALL_STATE(2320)] = 72665, - [SMALL_STATE(2321)] = 72684, - [SMALL_STATE(2322)] = 72713, - [SMALL_STATE(2323)] = 72742, - [SMALL_STATE(2324)] = 72771, - [SMALL_STATE(2325)] = 72800, - [SMALL_STATE(2326)] = 72829, - [SMALL_STATE(2327)] = 72858, - [SMALL_STATE(2328)] = 72887, - [SMALL_STATE(2329)] = 72916, - [SMALL_STATE(2330)] = 72945, - [SMALL_STATE(2331)] = 72974, - [SMALL_STATE(2332)] = 73003, - [SMALL_STATE(2333)] = 73032, - [SMALL_STATE(2334)] = 73061, - [SMALL_STATE(2335)] = 73090, - [SMALL_STATE(2336)] = 73119, - [SMALL_STATE(2337)] = 73142, - [SMALL_STATE(2338)] = 73169, - [SMALL_STATE(2339)] = 73198, - [SMALL_STATE(2340)] = 73227, - [SMALL_STATE(2341)] = 73246, - [SMALL_STATE(2342)] = 73269, - [SMALL_STATE(2343)] = 73294, - [SMALL_STATE(2344)] = 73323, - [SMALL_STATE(2345)] = 73344, - [SMALL_STATE(2346)] = 73373, - [SMALL_STATE(2347)] = 73402, - [SMALL_STATE(2348)] = 73431, - [SMALL_STATE(2349)] = 73458, - [SMALL_STATE(2350)] = 73487, - [SMALL_STATE(2351)] = 73516, - [SMALL_STATE(2352)] = 73545, - [SMALL_STATE(2353)] = 73574, - [SMALL_STATE(2354)] = 73603, - [SMALL_STATE(2355)] = 73630, - [SMALL_STATE(2356)] = 73659, - [SMALL_STATE(2357)] = 73682, - [SMALL_STATE(2358)] = 73711, - [SMALL_STATE(2359)] = 73740, - [SMALL_STATE(2360)] = 73769, - [SMALL_STATE(2361)] = 73790, - [SMALL_STATE(2362)] = 73811, - [SMALL_STATE(2363)] = 73832, - [SMALL_STATE(2364)] = 73853, - [SMALL_STATE(2365)] = 73882, - [SMALL_STATE(2366)] = 73905, - [SMALL_STATE(2367)] = 73934, - [SMALL_STATE(2368)] = 73963, - [SMALL_STATE(2369)] = 73992, - [SMALL_STATE(2370)] = 74021, - [SMALL_STATE(2371)] = 74050, - [SMALL_STATE(2372)] = 74077, - [SMALL_STATE(2373)] = 74102, - [SMALL_STATE(2374)] = 74131, - [SMALL_STATE(2375)] = 74156, - [SMALL_STATE(2376)] = 74185, - [SMALL_STATE(2377)] = 74214, - [SMALL_STATE(2378)] = 74241, - [SMALL_STATE(2379)] = 74270, - [SMALL_STATE(2380)] = 74293, - [SMALL_STATE(2381)] = 74316, - [SMALL_STATE(2382)] = 74345, - [SMALL_STATE(2383)] = 74368, - [SMALL_STATE(2384)] = 74397, - [SMALL_STATE(2385)] = 74420, - [SMALL_STATE(2386)] = 74443, - [SMALL_STATE(2387)] = 74466, - [SMALL_STATE(2388)] = 74489, - [SMALL_STATE(2389)] = 74518, - [SMALL_STATE(2390)] = 74544, - [SMALL_STATE(2391)] = 74570, - [SMALL_STATE(2392)] = 74594, - [SMALL_STATE(2393)] = 74618, - [SMALL_STATE(2394)] = 74644, - [SMALL_STATE(2395)] = 74670, - [SMALL_STATE(2396)] = 74696, - [SMALL_STATE(2397)] = 74720, - [SMALL_STATE(2398)] = 74746, - [SMALL_STATE(2399)] = 74772, - [SMALL_STATE(2400)] = 74798, - [SMALL_STATE(2401)] = 74822, - [SMALL_STATE(2402)] = 74848, - [SMALL_STATE(2403)] = 74874, - [SMALL_STATE(2404)] = 74892, - [SMALL_STATE(2405)] = 74918, - [SMALL_STATE(2406)] = 74944, - [SMALL_STATE(2407)] = 74964, - [SMALL_STATE(2408)] = 74986, - [SMALL_STATE(2409)] = 75012, - [SMALL_STATE(2410)] = 75038, - [SMALL_STATE(2411)] = 75064, - [SMALL_STATE(2412)] = 75090, - [SMALL_STATE(2413)] = 75116, - [SMALL_STATE(2414)] = 75142, - [SMALL_STATE(2415)] = 75168, - [SMALL_STATE(2416)] = 75194, - [SMALL_STATE(2417)] = 75212, - [SMALL_STATE(2418)] = 75230, - [SMALL_STATE(2419)] = 75248, - [SMALL_STATE(2420)] = 75274, - [SMALL_STATE(2421)] = 75300, - [SMALL_STATE(2422)] = 75320, - [SMALL_STATE(2423)] = 75346, - [SMALL_STATE(2424)] = 75372, - [SMALL_STATE(2425)] = 75394, - [SMALL_STATE(2426)] = 75420, - [SMALL_STATE(2427)] = 75446, - [SMALL_STATE(2428)] = 75470, - [SMALL_STATE(2429)] = 75492, - [SMALL_STATE(2430)] = 75518, - [SMALL_STATE(2431)] = 75542, - [SMALL_STATE(2432)] = 75568, - [SMALL_STATE(2433)] = 75594, - [SMALL_STATE(2434)] = 75618, - [SMALL_STATE(2435)] = 75644, - [SMALL_STATE(2436)] = 75662, - [SMALL_STATE(2437)] = 75688, - [SMALL_STATE(2438)] = 75714, - [SMALL_STATE(2439)] = 75736, - [SMALL_STATE(2440)] = 75754, - [SMALL_STATE(2441)] = 75778, - [SMALL_STATE(2442)] = 75804, - [SMALL_STATE(2443)] = 75822, - [SMALL_STATE(2444)] = 75840, - [SMALL_STATE(2445)] = 75858, - [SMALL_STATE(2446)] = 75884, - [SMALL_STATE(2447)] = 75902, - [SMALL_STATE(2448)] = 75928, - [SMALL_STATE(2449)] = 75946, - [SMALL_STATE(2450)] = 75964, - [SMALL_STATE(2451)] = 75990, - [SMALL_STATE(2452)] = 76016, - [SMALL_STATE(2453)] = 76034, - [SMALL_STATE(2454)] = 76052, - [SMALL_STATE(2455)] = 76070, - [SMALL_STATE(2456)] = 76088, - [SMALL_STATE(2457)] = 76106, - [SMALL_STATE(2458)] = 76132, - [SMALL_STATE(2459)] = 76154, - [SMALL_STATE(2460)] = 76180, - [SMALL_STATE(2461)] = 76204, - [SMALL_STATE(2462)] = 76222, - [SMALL_STATE(2463)] = 76244, - [SMALL_STATE(2464)] = 76262, - [SMALL_STATE(2465)] = 76288, - [SMALL_STATE(2466)] = 76314, - [SMALL_STATE(2467)] = 76340, - [SMALL_STATE(2468)] = 76366, - [SMALL_STATE(2469)] = 76390, - [SMALL_STATE(2470)] = 76414, - [SMALL_STATE(2471)] = 76432, - [SMALL_STATE(2472)] = 76456, - [SMALL_STATE(2473)] = 76474, - [SMALL_STATE(2474)] = 76498, - [SMALL_STATE(2475)] = 76524, - [SMALL_STATE(2476)] = 76546, - [SMALL_STATE(2477)] = 76568, - [SMALL_STATE(2478)] = 76586, - [SMALL_STATE(2479)] = 76604, - [SMALL_STATE(2480)] = 76622, - [SMALL_STATE(2481)] = 76642, - [SMALL_STATE(2482)] = 76666, - [SMALL_STATE(2483)] = 76690, - [SMALL_STATE(2484)] = 76716, - [SMALL_STATE(2485)] = 76742, - [SMALL_STATE(2486)] = 76768, - [SMALL_STATE(2487)] = 76794, - [SMALL_STATE(2488)] = 76816, - [SMALL_STATE(2489)] = 76838, - [SMALL_STATE(2490)] = 76864, - [SMALL_STATE(2491)] = 76890, - [SMALL_STATE(2492)] = 76916, - [SMALL_STATE(2493)] = 76942, - [SMALL_STATE(2494)] = 76960, - [SMALL_STATE(2495)] = 76981, - [SMALL_STATE(2496)] = 77004, - [SMALL_STATE(2497)] = 77025, - [SMALL_STATE(2498)] = 77048, - [SMALL_STATE(2499)] = 77071, - [SMALL_STATE(2500)] = 77094, - [SMALL_STATE(2501)] = 77117, - [SMALL_STATE(2502)] = 77140, - [SMALL_STATE(2503)] = 77163, - [SMALL_STATE(2504)] = 77186, - [SMALL_STATE(2505)] = 77209, - [SMALL_STATE(2506)] = 77232, - [SMALL_STATE(2507)] = 77255, - [SMALL_STATE(2508)] = 77278, - [SMALL_STATE(2509)] = 77297, - [SMALL_STATE(2510)] = 77320, - [SMALL_STATE(2511)] = 77339, - [SMALL_STATE(2512)] = 77362, - [SMALL_STATE(2513)] = 77385, - [SMALL_STATE(2514)] = 77408, - [SMALL_STATE(2515)] = 77431, - [SMALL_STATE(2516)] = 77454, - [SMALL_STATE(2517)] = 77473, - [SMALL_STATE(2518)] = 77496, - [SMALL_STATE(2519)] = 77519, - [SMALL_STATE(2520)] = 77542, - [SMALL_STATE(2521)] = 77563, - [SMALL_STATE(2522)] = 77586, - [SMALL_STATE(2523)] = 77609, - [SMALL_STATE(2524)] = 77632, - [SMALL_STATE(2525)] = 77655, - [SMALL_STATE(2526)] = 77678, - [SMALL_STATE(2527)] = 77701, - [SMALL_STATE(2528)] = 77722, - [SMALL_STATE(2529)] = 77743, - [SMALL_STATE(2530)] = 77764, - [SMALL_STATE(2531)] = 77787, - [SMALL_STATE(2532)] = 77810, - [SMALL_STATE(2533)] = 77833, - [SMALL_STATE(2534)] = 77850, - [SMALL_STATE(2535)] = 77873, - [SMALL_STATE(2536)] = 77894, - [SMALL_STATE(2537)] = 77917, - [SMALL_STATE(2538)] = 77938, - [SMALL_STATE(2539)] = 77961, - [SMALL_STATE(2540)] = 77984, - [SMALL_STATE(2541)] = 78007, - [SMALL_STATE(2542)] = 78030, - [SMALL_STATE(2543)] = 78053, - [SMALL_STATE(2544)] = 78076, - [SMALL_STATE(2545)] = 78099, - [SMALL_STATE(2546)] = 78122, - [SMALL_STATE(2547)] = 78139, - [SMALL_STATE(2548)] = 78162, - [SMALL_STATE(2549)] = 78185, - [SMALL_STATE(2550)] = 78204, - [SMALL_STATE(2551)] = 78223, - [SMALL_STATE(2552)] = 78242, - [SMALL_STATE(2553)] = 78259, - [SMALL_STATE(2554)] = 78282, - [SMALL_STATE(2555)] = 78305, - [SMALL_STATE(2556)] = 78328, - [SMALL_STATE(2557)] = 78351, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78397, - [SMALL_STATE(2560)] = 78420, - [SMALL_STATE(2561)] = 78443, - [SMALL_STATE(2562)] = 78466, - [SMALL_STATE(2563)] = 78489, - [SMALL_STATE(2564)] = 78510, - [SMALL_STATE(2565)] = 78531, - [SMALL_STATE(2566)] = 78550, - [SMALL_STATE(2567)] = 78573, - [SMALL_STATE(2568)] = 78596, - [SMALL_STATE(2569)] = 78619, - [SMALL_STATE(2570)] = 78638, - [SMALL_STATE(2571)] = 78661, - [SMALL_STATE(2572)] = 78684, - [SMALL_STATE(2573)] = 78707, - [SMALL_STATE(2574)] = 78730, - [SMALL_STATE(2575)] = 78753, - [SMALL_STATE(2576)] = 78774, - [SMALL_STATE(2577)] = 78797, - [SMALL_STATE(2578)] = 78820, - [SMALL_STATE(2579)] = 78843, - [SMALL_STATE(2580)] = 78866, - [SMALL_STATE(2581)] = 78889, - [SMALL_STATE(2582)] = 78908, - [SMALL_STATE(2583)] = 78931, - [SMALL_STATE(2584)] = 78954, - [SMALL_STATE(2585)] = 78975, - [SMALL_STATE(2586)] = 78998, - [SMALL_STATE(2587)] = 79021, - [SMALL_STATE(2588)] = 79040, - [SMALL_STATE(2589)] = 79061, - [SMALL_STATE(2590)] = 79080, - [SMALL_STATE(2591)] = 79103, - [SMALL_STATE(2592)] = 79126, - [SMALL_STATE(2593)] = 79149, - [SMALL_STATE(2594)] = 79172, - [SMALL_STATE(2595)] = 79195, - [SMALL_STATE(2596)] = 79216, - [SMALL_STATE(2597)] = 79239, - [SMALL_STATE(2598)] = 79262, - [SMALL_STATE(2599)] = 79285, - [SMALL_STATE(2600)] = 79308, - [SMALL_STATE(2601)] = 79331, - [SMALL_STATE(2602)] = 79354, - [SMALL_STATE(2603)] = 79377, - [SMALL_STATE(2604)] = 79400, - [SMALL_STATE(2605)] = 79417, - [SMALL_STATE(2606)] = 79438, - [SMALL_STATE(2607)] = 79455, - [SMALL_STATE(2608)] = 79478, - [SMALL_STATE(2609)] = 79501, - [SMALL_STATE(2610)] = 79524, - [SMALL_STATE(2611)] = 79547, - [SMALL_STATE(2612)] = 79570, - [SMALL_STATE(2613)] = 79593, - [SMALL_STATE(2614)] = 79616, - [SMALL_STATE(2615)] = 79639, - [SMALL_STATE(2616)] = 79662, - [SMALL_STATE(2617)] = 79685, - [SMALL_STATE(2618)] = 79706, - [SMALL_STATE(2619)] = 79729, - [SMALL_STATE(2620)] = 79752, - [SMALL_STATE(2621)] = 79775, - [SMALL_STATE(2622)] = 79798, - [SMALL_STATE(2623)] = 79817, - [SMALL_STATE(2624)] = 79838, - [SMALL_STATE(2625)] = 79861, - [SMALL_STATE(2626)] = 79884, - [SMALL_STATE(2627)] = 79907, - [SMALL_STATE(2628)] = 79930, - [SMALL_STATE(2629)] = 79953, - [SMALL_STATE(2630)] = 79976, - [SMALL_STATE(2631)] = 79997, - [SMALL_STATE(2632)] = 80020, - [SMALL_STATE(2633)] = 80041, - [SMALL_STATE(2634)] = 80064, - [SMALL_STATE(2635)] = 80085, - [SMALL_STATE(2636)] = 80108, - [SMALL_STATE(2637)] = 80131, - [SMALL_STATE(2638)] = 80154, - [SMALL_STATE(2639)] = 80177, - [SMALL_STATE(2640)] = 80200, - [SMALL_STATE(2641)] = 80223, - [SMALL_STATE(2642)] = 80244, - [SMALL_STATE(2643)] = 80265, - [SMALL_STATE(2644)] = 80288, - [SMALL_STATE(2645)] = 80311, - [SMALL_STATE(2646)] = 80334, - [SMALL_STATE(2647)] = 80357, - [SMALL_STATE(2648)] = 80380, - [SMALL_STATE(2649)] = 80403, - [SMALL_STATE(2650)] = 80426, - [SMALL_STATE(2651)] = 80449, - [SMALL_STATE(2652)] = 80472, - [SMALL_STATE(2653)] = 80495, - [SMALL_STATE(2654)] = 80518, - [SMALL_STATE(2655)] = 80541, - [SMALL_STATE(2656)] = 80564, - [SMALL_STATE(2657)] = 80587, - [SMALL_STATE(2658)] = 80610, - [SMALL_STATE(2659)] = 80633, - [SMALL_STATE(2660)] = 80656, - [SMALL_STATE(2661)] = 80679, - [SMALL_STATE(2662)] = 80698, - [SMALL_STATE(2663)] = 80715, - [SMALL_STATE(2664)] = 80736, - [SMALL_STATE(2665)] = 80755, - [SMALL_STATE(2666)] = 80778, - [SMALL_STATE(2667)] = 80797, - [SMALL_STATE(2668)] = 80816, - [SMALL_STATE(2669)] = 80839, - [SMALL_STATE(2670)] = 80862, - [SMALL_STATE(2671)] = 80881, - [SMALL_STATE(2672)] = 80904, - [SMALL_STATE(2673)] = 80927, - [SMALL_STATE(2674)] = 80950, - [SMALL_STATE(2675)] = 80973, - [SMALL_STATE(2676)] = 80996, - [SMALL_STATE(2677)] = 81019, - [SMALL_STATE(2678)] = 81042, - [SMALL_STATE(2679)] = 81065, - [SMALL_STATE(2680)] = 81084, - [SMALL_STATE(2681)] = 81103, - [SMALL_STATE(2682)] = 81120, - [SMALL_STATE(2683)] = 81139, - [SMALL_STATE(2684)] = 81162, - [SMALL_STATE(2685)] = 81185, - [SMALL_STATE(2686)] = 81208, - [SMALL_STATE(2687)] = 81231, - [SMALL_STATE(2688)] = 81254, - [SMALL_STATE(2689)] = 81275, - [SMALL_STATE(2690)] = 81298, - [SMALL_STATE(2691)] = 81321, - [SMALL_STATE(2692)] = 81340, - [SMALL_STATE(2693)] = 81357, - [SMALL_STATE(2694)] = 81380, - [SMALL_STATE(2695)] = 81403, - [SMALL_STATE(2696)] = 81426, - [SMALL_STATE(2697)] = 81445, - [SMALL_STATE(2698)] = 81468, - [SMALL_STATE(2699)] = 81491, - [SMALL_STATE(2700)] = 81514, - [SMALL_STATE(2701)] = 81537, - [SMALL_STATE(2702)] = 81560, - [SMALL_STATE(2703)] = 81583, - [SMALL_STATE(2704)] = 81606, - [SMALL_STATE(2705)] = 81629, - [SMALL_STATE(2706)] = 81652, - [SMALL_STATE(2707)] = 81675, - [SMALL_STATE(2708)] = 81696, - [SMALL_STATE(2709)] = 81717, - [SMALL_STATE(2710)] = 81740, - [SMALL_STATE(2711)] = 81763, - [SMALL_STATE(2712)] = 81784, - [SMALL_STATE(2713)] = 81807, - [SMALL_STATE(2714)] = 81828, - [SMALL_STATE(2715)] = 81851, - [SMALL_STATE(2716)] = 81874, - [SMALL_STATE(2717)] = 81893, - [SMALL_STATE(2718)] = 81916, - [SMALL_STATE(2719)] = 81935, - [SMALL_STATE(2720)] = 81958, - [SMALL_STATE(2721)] = 81981, - [SMALL_STATE(2722)] = 82004, - [SMALL_STATE(2723)] = 82027, - [SMALL_STATE(2724)] = 82046, - [SMALL_STATE(2725)] = 82069, - [SMALL_STATE(2726)] = 82092, - [SMALL_STATE(2727)] = 82111, - [SMALL_STATE(2728)] = 82134, - [SMALL_STATE(2729)] = 82157, - [SMALL_STATE(2730)] = 82180, - [SMALL_STATE(2731)] = 82203, - [SMALL_STATE(2732)] = 82219, - [SMALL_STATE(2733)] = 82239, - [SMALL_STATE(2734)] = 82259, - [SMALL_STATE(2735)] = 82279, - [SMALL_STATE(2736)] = 82299, - [SMALL_STATE(2737)] = 82319, - [SMALL_STATE(2738)] = 82339, - [SMALL_STATE(2739)] = 82359, - [SMALL_STATE(2740)] = 82379, - [SMALL_STATE(2741)] = 82395, - [SMALL_STATE(2742)] = 82415, - [SMALL_STATE(2743)] = 82435, - [SMALL_STATE(2744)] = 82455, - [SMALL_STATE(2745)] = 82475, - [SMALL_STATE(2746)] = 82495, - [SMALL_STATE(2747)] = 82511, - [SMALL_STATE(2748)] = 82531, - [SMALL_STATE(2749)] = 82549, - [SMALL_STATE(2750)] = 82567, - [SMALL_STATE(2751)] = 82585, - [SMALL_STATE(2752)] = 82605, - [SMALL_STATE(2753)] = 82625, - [SMALL_STATE(2754)] = 82645, - [SMALL_STATE(2755)] = 82663, - [SMALL_STATE(2756)] = 82683, - [SMALL_STATE(2757)] = 82699, - [SMALL_STATE(2758)] = 82719, - [SMALL_STATE(2759)] = 82739, - [SMALL_STATE(2760)] = 82755, - [SMALL_STATE(2761)] = 82773, - [SMALL_STATE(2762)] = 82789, - [SMALL_STATE(2763)] = 82809, - [SMALL_STATE(2764)] = 82827, - [SMALL_STATE(2765)] = 82847, - [SMALL_STATE(2766)] = 82865, - [SMALL_STATE(2767)] = 82881, - [SMALL_STATE(2768)] = 82901, - [SMALL_STATE(2769)] = 82919, - [SMALL_STATE(2770)] = 82937, - [SMALL_STATE(2771)] = 82957, - [SMALL_STATE(2772)] = 82977, - [SMALL_STATE(2773)] = 82997, - [SMALL_STATE(2774)] = 83017, - [SMALL_STATE(2775)] = 83037, - [SMALL_STATE(2776)] = 83057, - [SMALL_STATE(2777)] = 83073, - [SMALL_STATE(2778)] = 83093, - [SMALL_STATE(2779)] = 83113, - [SMALL_STATE(2780)] = 83129, - [SMALL_STATE(2781)] = 83149, - [SMALL_STATE(2782)] = 83169, - [SMALL_STATE(2783)] = 83189, - [SMALL_STATE(2784)] = 83209, - [SMALL_STATE(2785)] = 83229, - [SMALL_STATE(2786)] = 83245, - [SMALL_STATE(2787)] = 83265, - [SMALL_STATE(2788)] = 83285, - [SMALL_STATE(2789)] = 83305, - [SMALL_STATE(2790)] = 83325, - [SMALL_STATE(2791)] = 83345, - [SMALL_STATE(2792)] = 83365, - [SMALL_STATE(2793)] = 83385, - [SMALL_STATE(2794)] = 83405, - [SMALL_STATE(2795)] = 83421, - [SMALL_STATE(2796)] = 83441, - [SMALL_STATE(2797)] = 83459, - [SMALL_STATE(2798)] = 83475, - [SMALL_STATE(2799)] = 83495, - [SMALL_STATE(2800)] = 83513, - [SMALL_STATE(2801)] = 83529, - [SMALL_STATE(2802)] = 83549, - [SMALL_STATE(2803)] = 83565, - [SMALL_STATE(2804)] = 83581, - [SMALL_STATE(2805)] = 83599, - [SMALL_STATE(2806)] = 83619, - [SMALL_STATE(2807)] = 83639, - [SMALL_STATE(2808)] = 83657, - [SMALL_STATE(2809)] = 83677, - [SMALL_STATE(2810)] = 83697, - [SMALL_STATE(2811)] = 83717, - [SMALL_STATE(2812)] = 83737, - [SMALL_STATE(2813)] = 83757, - [SMALL_STATE(2814)] = 83777, - [SMALL_STATE(2815)] = 83797, - [SMALL_STATE(2816)] = 83817, - [SMALL_STATE(2817)] = 83837, - [SMALL_STATE(2818)] = 83857, - [SMALL_STATE(2819)] = 83877, - [SMALL_STATE(2820)] = 83897, - [SMALL_STATE(2821)] = 83913, - [SMALL_STATE(2822)] = 83933, - [SMALL_STATE(2823)] = 83953, - [SMALL_STATE(2824)] = 83971, - [SMALL_STATE(2825)] = 83991, - [SMALL_STATE(2826)] = 84011, - [SMALL_STATE(2827)] = 84031, - [SMALL_STATE(2828)] = 84049, - [SMALL_STATE(2829)] = 84069, - [SMALL_STATE(2830)] = 84089, - [SMALL_STATE(2831)] = 84109, - [SMALL_STATE(2832)] = 84127, - [SMALL_STATE(2833)] = 84147, - [SMALL_STATE(2834)] = 84167, - [SMALL_STATE(2835)] = 84187, - [SMALL_STATE(2836)] = 84207, - [SMALL_STATE(2837)] = 84227, - [SMALL_STATE(2838)] = 84245, - [SMALL_STATE(2839)] = 84265, - [SMALL_STATE(2840)] = 84285, - [SMALL_STATE(2841)] = 84305, - [SMALL_STATE(2842)] = 84321, - [SMALL_STATE(2843)] = 84337, - [SMALL_STATE(2844)] = 84353, - [SMALL_STATE(2845)] = 84371, - [SMALL_STATE(2846)] = 84387, - [SMALL_STATE(2847)] = 84407, - [SMALL_STATE(2848)] = 84425, - [SMALL_STATE(2849)] = 84441, - [SMALL_STATE(2850)] = 84461, - [SMALL_STATE(2851)] = 84481, - [SMALL_STATE(2852)] = 84501, - [SMALL_STATE(2853)] = 84521, - [SMALL_STATE(2854)] = 84541, - [SMALL_STATE(2855)] = 84561, - [SMALL_STATE(2856)] = 84581, - [SMALL_STATE(2857)] = 84601, - [SMALL_STATE(2858)] = 84621, - [SMALL_STATE(2859)] = 84637, - [SMALL_STATE(2860)] = 84657, - [SMALL_STATE(2861)] = 84675, - [SMALL_STATE(2862)] = 84691, - [SMALL_STATE(2863)] = 84711, - [SMALL_STATE(2864)] = 84729, - [SMALL_STATE(2865)] = 84749, - [SMALL_STATE(2866)] = 84769, - [SMALL_STATE(2867)] = 84789, - [SMALL_STATE(2868)] = 84809, - [SMALL_STATE(2869)] = 84827, - [SMALL_STATE(2870)] = 84847, - [SMALL_STATE(2871)] = 84867, - [SMALL_STATE(2872)] = 84883, - [SMALL_STATE(2873)] = 84903, - [SMALL_STATE(2874)] = 84923, - [SMALL_STATE(2875)] = 84941, - [SMALL_STATE(2876)] = 84961, - [SMALL_STATE(2877)] = 84981, - [SMALL_STATE(2878)] = 84997, - [SMALL_STATE(2879)] = 85013, - [SMALL_STATE(2880)] = 85033, - [SMALL_STATE(2881)] = 85051, - [SMALL_STATE(2882)] = 85071, - [SMALL_STATE(2883)] = 85087, - [SMALL_STATE(2884)] = 85107, - [SMALL_STATE(2885)] = 85127, - [SMALL_STATE(2886)] = 85147, - [SMALL_STATE(2887)] = 85167, - [SMALL_STATE(2888)] = 85185, - [SMALL_STATE(2889)] = 85201, - [SMALL_STATE(2890)] = 85217, - [SMALL_STATE(2891)] = 85237, - [SMALL_STATE(2892)] = 85257, - [SMALL_STATE(2893)] = 85277, - [SMALL_STATE(2894)] = 85297, - [SMALL_STATE(2895)] = 85313, - [SMALL_STATE(2896)] = 85329, - [SMALL_STATE(2897)] = 85347, - [SMALL_STATE(2898)] = 85363, - [SMALL_STATE(2899)] = 85383, - [SMALL_STATE(2900)] = 85399, - [SMALL_STATE(2901)] = 85419, - [SMALL_STATE(2902)] = 85439, - [SMALL_STATE(2903)] = 85459, - [SMALL_STATE(2904)] = 85479, - [SMALL_STATE(2905)] = 85499, - [SMALL_STATE(2906)] = 85519, - [SMALL_STATE(2907)] = 85539, - [SMALL_STATE(2908)] = 85559, - [SMALL_STATE(2909)] = 85579, - [SMALL_STATE(2910)] = 85599, - [SMALL_STATE(2911)] = 85619, - [SMALL_STATE(2912)] = 85639, - [SMALL_STATE(2913)] = 85655, - [SMALL_STATE(2914)] = 85673, - [SMALL_STATE(2915)] = 85693, - [SMALL_STATE(2916)] = 85711, - [SMALL_STATE(2917)] = 85731, - [SMALL_STATE(2918)] = 85751, - [SMALL_STATE(2919)] = 85771, - [SMALL_STATE(2920)] = 85791, - [SMALL_STATE(2921)] = 85809, - [SMALL_STATE(2922)] = 85829, - [SMALL_STATE(2923)] = 85847, - [SMALL_STATE(2924)] = 85863, - [SMALL_STATE(2925)] = 85881, - [SMALL_STATE(2926)] = 85901, - [SMALL_STATE(2927)] = 85917, - [SMALL_STATE(2928)] = 85935, - [SMALL_STATE(2929)] = 85953, - [SMALL_STATE(2930)] = 85973, - [SMALL_STATE(2931)] = 85991, - [SMALL_STATE(2932)] = 86009, - [SMALL_STATE(2933)] = 86029, - [SMALL_STATE(2934)] = 86049, - [SMALL_STATE(2935)] = 86069, - [SMALL_STATE(2936)] = 86089, - [SMALL_STATE(2937)] = 86109, - [SMALL_STATE(2938)] = 86129, - [SMALL_STATE(2939)] = 86147, - [SMALL_STATE(2940)] = 86167, - [SMALL_STATE(2941)] = 86183, - [SMALL_STATE(2942)] = 86203, - [SMALL_STATE(2943)] = 86223, - [SMALL_STATE(2944)] = 86243, - [SMALL_STATE(2945)] = 86263, - [SMALL_STATE(2946)] = 86281, - [SMALL_STATE(2947)] = 86301, - [SMALL_STATE(2948)] = 86321, - [SMALL_STATE(2949)] = 86339, - [SMALL_STATE(2950)] = 86355, - [SMALL_STATE(2951)] = 86375, - [SMALL_STATE(2952)] = 86395, - [SMALL_STATE(2953)] = 86415, - [SMALL_STATE(2954)] = 86431, - [SMALL_STATE(2955)] = 86447, - [SMALL_STATE(2956)] = 86467, - [SMALL_STATE(2957)] = 86487, - [SMALL_STATE(2958)] = 86507, - [SMALL_STATE(2959)] = 86523, - [SMALL_STATE(2960)] = 86543, - [SMALL_STATE(2961)] = 86563, - [SMALL_STATE(2962)] = 86583, - [SMALL_STATE(2963)] = 86599, - [SMALL_STATE(2964)] = 86619, - [SMALL_STATE(2965)] = 86635, - [SMALL_STATE(2966)] = 86653, - [SMALL_STATE(2967)] = 86669, - [SMALL_STATE(2968)] = 86689, - [SMALL_STATE(2969)] = 86709, - [SMALL_STATE(2970)] = 86729, - [SMALL_STATE(2971)] = 86749, - [SMALL_STATE(2972)] = 86765, - [SMALL_STATE(2973)] = 86785, - [SMALL_STATE(2974)] = 86801, - [SMALL_STATE(2975)] = 86817, - [SMALL_STATE(2976)] = 86837, - [SMALL_STATE(2977)] = 86857, - [SMALL_STATE(2978)] = 86873, - [SMALL_STATE(2979)] = 86889, - [SMALL_STATE(2980)] = 86909, - [SMALL_STATE(2981)] = 86929, - [SMALL_STATE(2982)] = 86949, - [SMALL_STATE(2983)] = 86969, - [SMALL_STATE(2984)] = 86985, - [SMALL_STATE(2985)] = 87005, - [SMALL_STATE(2986)] = 87025, - [SMALL_STATE(2987)] = 87045, - [SMALL_STATE(2988)] = 87063, - [SMALL_STATE(2989)] = 87079, - [SMALL_STATE(2990)] = 87099, - [SMALL_STATE(2991)] = 87115, - [SMALL_STATE(2992)] = 87135, - [SMALL_STATE(2993)] = 87155, - [SMALL_STATE(2994)] = 87175, - [SMALL_STATE(2995)] = 87195, - [SMALL_STATE(2996)] = 87211, - [SMALL_STATE(2997)] = 87231, - [SMALL_STATE(2998)] = 87251, - [SMALL_STATE(2999)] = 87267, - [SMALL_STATE(3000)] = 87287, - [SMALL_STATE(3001)] = 87303, - [SMALL_STATE(3002)] = 87323, - [SMALL_STATE(3003)] = 87343, - [SMALL_STATE(3004)] = 87363, - [SMALL_STATE(3005)] = 87383, - [SMALL_STATE(3006)] = 87403, - [SMALL_STATE(3007)] = 87421, - [SMALL_STATE(3008)] = 87441, - [SMALL_STATE(3009)] = 87459, - [SMALL_STATE(3010)] = 87479, - [SMALL_STATE(3011)] = 87499, - [SMALL_STATE(3012)] = 87519, - [SMALL_STATE(3013)] = 87539, - [SMALL_STATE(3014)] = 87559, - [SMALL_STATE(3015)] = 87577, - [SMALL_STATE(3016)] = 87597, - [SMALL_STATE(3017)] = 87613, - [SMALL_STATE(3018)] = 87633, - [SMALL_STATE(3019)] = 87653, - [SMALL_STATE(3020)] = 87673, - [SMALL_STATE(3021)] = 87693, - [SMALL_STATE(3022)] = 87713, - [SMALL_STATE(3023)] = 87733, - [SMALL_STATE(3024)] = 87753, - [SMALL_STATE(3025)] = 87773, - [SMALL_STATE(3026)] = 87793, - [SMALL_STATE(3027)] = 87811, - [SMALL_STATE(3028)] = 87831, - [SMALL_STATE(3029)] = 87851, - [SMALL_STATE(3030)] = 87871, - [SMALL_STATE(3031)] = 87891, - [SMALL_STATE(3032)] = 87911, - [SMALL_STATE(3033)] = 87927, - [SMALL_STATE(3034)] = 87942, - [SMALL_STATE(3035)] = 87959, - [SMALL_STATE(3036)] = 87976, - [SMALL_STATE(3037)] = 87991, - [SMALL_STATE(3038)] = 88008, - [SMALL_STATE(3039)] = 88025, - [SMALL_STATE(3040)] = 88040, - [SMALL_STATE(3041)] = 88057, - [SMALL_STATE(3042)] = 88072, - [SMALL_STATE(3043)] = 88089, - [SMALL_STATE(3044)] = 88106, - [SMALL_STATE(3045)] = 88123, + [SMALL_STATE(1010)] = 0, + [SMALL_STATE(1011)] = 75, + [SMALL_STATE(1012)] = 145, + [SMALL_STATE(1013)] = 214, + [SMALL_STATE(1014)] = 313, + [SMALL_STATE(1015)] = 412, + [SMALL_STATE(1016)] = 489, + [SMALL_STATE(1017)] = 563, + [SMALL_STATE(1018)] = 637, + [SMALL_STATE(1019)] = 711, + [SMALL_STATE(1020)] = 782, + [SMALL_STATE(1021)] = 845, + [SMALL_STATE(1022)] = 908, + [SMALL_STATE(1023)] = 975, + [SMALL_STATE(1024)] = 1046, + [SMALL_STATE(1025)] = 1109, + [SMALL_STATE(1026)] = 1176, + [SMALL_STATE(1027)] = 1239, + [SMALL_STATE(1028)] = 1302, + [SMALL_STATE(1029)] = 1369, + [SMALL_STATE(1030)] = 1432, + [SMALL_STATE(1031)] = 1503, + [SMALL_STATE(1032)] = 1574, + [SMALL_STATE(1033)] = 1637, + [SMALL_STATE(1034)] = 1704, + [SMALL_STATE(1035)] = 1767, + [SMALL_STATE(1036)] = 1830, + [SMALL_STATE(1037)] = 1892, + [SMALL_STATE(1038)] = 1958, + [SMALL_STATE(1039)] = 2020, + [SMALL_STATE(1040)] = 2082, + [SMALL_STATE(1041)] = 2152, + [SMALL_STATE(1042)] = 2214, + [SMALL_STATE(1043)] = 2276, + [SMALL_STATE(1044)] = 2338, + [SMALL_STATE(1045)] = 2400, + [SMALL_STATE(1046)] = 2462, + [SMALL_STATE(1047)] = 2524, + [SMALL_STATE(1048)] = 2592, + [SMALL_STATE(1049)] = 2657, + [SMALL_STATE(1050)] = 2720, + [SMALL_STATE(1051)] = 2783, + [SMALL_STATE(1052)] = 2846, + [SMALL_STATE(1053)] = 2911, + [SMALL_STATE(1054)] = 2972, + [SMALL_STATE(1055)] = 3033, + [SMALL_STATE(1056)] = 3094, + [SMALL_STATE(1057)] = 3193, + [SMALL_STATE(1058)] = 3254, + [SMALL_STATE(1059)] = 3317, + [SMALL_STATE(1060)] = 3380, + [SMALL_STATE(1061)] = 3443, + [SMALL_STATE(1062)] = 3506, + [SMALL_STATE(1063)] = 3569, + [SMALL_STATE(1064)] = 3634, + [SMALL_STATE(1065)] = 3695, + [SMALL_STATE(1066)] = 3756, + [SMALL_STATE(1067)] = 3819, + [SMALL_STATE(1068)] = 3882, + [SMALL_STATE(1069)] = 3945, + [SMALL_STATE(1070)] = 4006, + [SMALL_STATE(1071)] = 4067, + [SMALL_STATE(1072)] = 4130, + [SMALL_STATE(1073)] = 4193, + [SMALL_STATE(1074)] = 4254, + [SMALL_STATE(1075)] = 4315, + [SMALL_STATE(1076)] = 4376, + [SMALL_STATE(1077)] = 4437, + [SMALL_STATE(1078)] = 4498, + [SMALL_STATE(1079)] = 4559, + [SMALL_STATE(1080)] = 4622, + [SMALL_STATE(1081)] = 4685, + [SMALL_STATE(1082)] = 4746, + [SMALL_STATE(1083)] = 4807, + [SMALL_STATE(1084)] = 4872, + [SMALL_STATE(1085)] = 4971, + [SMALL_STATE(1086)] = 5076, + [SMALL_STATE(1087)] = 5181, + [SMALL_STATE(1088)] = 5286, + [SMALL_STATE(1089)] = 5391, + [SMALL_STATE(1090)] = 5454, + [SMALL_STATE(1091)] = 5559, + [SMALL_STATE(1092)] = 5664, + [SMALL_STATE(1093)] = 5727, + [SMALL_STATE(1094)] = 5788, + [SMALL_STATE(1095)] = 5851, + [SMALL_STATE(1096)] = 5911, + [SMALL_STATE(1097)] = 5971, + [SMALL_STATE(1098)] = 6031, + [SMALL_STATE(1099)] = 6091, + [SMALL_STATE(1100)] = 6151, + [SMALL_STATE(1101)] = 6211, + [SMALL_STATE(1102)] = 6271, + [SMALL_STATE(1103)] = 6331, + [SMALL_STATE(1104)] = 6391, + [SMALL_STATE(1105)] = 6451, + [SMALL_STATE(1106)] = 6511, + [SMALL_STATE(1107)] = 6571, + [SMALL_STATE(1108)] = 6631, + [SMALL_STATE(1109)] = 6691, + [SMALL_STATE(1110)] = 6751, + [SMALL_STATE(1111)] = 6811, + [SMALL_STATE(1112)] = 6871, + [SMALL_STATE(1113)] = 6931, + [SMALL_STATE(1114)] = 6991, + [SMALL_STATE(1115)] = 7051, + [SMALL_STATE(1116)] = 7111, + [SMALL_STATE(1117)] = 7171, + [SMALL_STATE(1118)] = 7231, + [SMALL_STATE(1119)] = 7291, + [SMALL_STATE(1120)] = 7351, + [SMALL_STATE(1121)] = 7411, + [SMALL_STATE(1122)] = 7471, + [SMALL_STATE(1123)] = 7531, + [SMALL_STATE(1124)] = 7591, + [SMALL_STATE(1125)] = 7651, + [SMALL_STATE(1126)] = 7711, + [SMALL_STATE(1127)] = 7771, + [SMALL_STATE(1128)] = 7831, + [SMALL_STATE(1129)] = 7891, + [SMALL_STATE(1130)] = 7951, + [SMALL_STATE(1131)] = 8011, + [SMALL_STATE(1132)] = 8071, + [SMALL_STATE(1133)] = 8131, + [SMALL_STATE(1134)] = 8191, + [SMALL_STATE(1135)] = 8251, + [SMALL_STATE(1136)] = 8311, + [SMALL_STATE(1137)] = 8371, + [SMALL_STATE(1138)] = 8431, + [SMALL_STATE(1139)] = 8491, + [SMALL_STATE(1140)] = 8551, + [SMALL_STATE(1141)] = 8611, + [SMALL_STATE(1142)] = 8671, + [SMALL_STATE(1143)] = 8731, + [SMALL_STATE(1144)] = 8791, + [SMALL_STATE(1145)] = 8851, + [SMALL_STATE(1146)] = 8911, + [SMALL_STATE(1147)] = 8971, + [SMALL_STATE(1148)] = 9031, + [SMALL_STATE(1149)] = 9091, + [SMALL_STATE(1150)] = 9151, + [SMALL_STATE(1151)] = 9211, + [SMALL_STATE(1152)] = 9271, + [SMALL_STATE(1153)] = 9331, + [SMALL_STATE(1154)] = 9391, + [SMALL_STATE(1155)] = 9451, + [SMALL_STATE(1156)] = 9511, + [SMALL_STATE(1157)] = 9571, + [SMALL_STATE(1158)] = 9631, + [SMALL_STATE(1159)] = 9691, + [SMALL_STATE(1160)] = 9751, + [SMALL_STATE(1161)] = 9811, + [SMALL_STATE(1162)] = 9871, + [SMALL_STATE(1163)] = 9931, + [SMALL_STATE(1164)] = 9991, + [SMALL_STATE(1165)] = 10051, + [SMALL_STATE(1166)] = 10111, + [SMALL_STATE(1167)] = 10171, + [SMALL_STATE(1168)] = 10231, + [SMALL_STATE(1169)] = 10291, + [SMALL_STATE(1170)] = 10351, + [SMALL_STATE(1171)] = 10411, + [SMALL_STATE(1172)] = 10471, + [SMALL_STATE(1173)] = 10531, + [SMALL_STATE(1174)] = 10591, + [SMALL_STATE(1175)] = 10651, + [SMALL_STATE(1176)] = 10711, + [SMALL_STATE(1177)] = 10771, + [SMALL_STATE(1178)] = 10831, + [SMALL_STATE(1179)] = 10891, + [SMALL_STATE(1180)] = 10951, + [SMALL_STATE(1181)] = 11011, + [SMALL_STATE(1182)] = 11071, + [SMALL_STATE(1183)] = 11131, + [SMALL_STATE(1184)] = 11191, + [SMALL_STATE(1185)] = 11251, + [SMALL_STATE(1186)] = 11311, + [SMALL_STATE(1187)] = 11371, + [SMALL_STATE(1188)] = 11431, + [SMALL_STATE(1189)] = 11491, + [SMALL_STATE(1190)] = 11551, + [SMALL_STATE(1191)] = 11611, + [SMALL_STATE(1192)] = 11671, + [SMALL_STATE(1193)] = 11731, + [SMALL_STATE(1194)] = 11791, + [SMALL_STATE(1195)] = 11851, + [SMALL_STATE(1196)] = 11911, + [SMALL_STATE(1197)] = 11971, + [SMALL_STATE(1198)] = 12031, + [SMALL_STATE(1199)] = 12091, + [SMALL_STATE(1200)] = 12151, + [SMALL_STATE(1201)] = 12211, + [SMALL_STATE(1202)] = 12271, + [SMALL_STATE(1203)] = 12331, + [SMALL_STATE(1204)] = 12391, + [SMALL_STATE(1205)] = 12451, + [SMALL_STATE(1206)] = 12511, + [SMALL_STATE(1207)] = 12571, + [SMALL_STATE(1208)] = 12631, + [SMALL_STATE(1209)] = 12691, + [SMALL_STATE(1210)] = 12751, + [SMALL_STATE(1211)] = 12811, + [SMALL_STATE(1212)] = 12871, + [SMALL_STATE(1213)] = 12931, + [SMALL_STATE(1214)] = 12991, + [SMALL_STATE(1215)] = 13051, + [SMALL_STATE(1216)] = 13111, + [SMALL_STATE(1217)] = 13171, + [SMALL_STATE(1218)] = 13231, + [SMALL_STATE(1219)] = 13291, + [SMALL_STATE(1220)] = 13351, + [SMALL_STATE(1221)] = 13411, + [SMALL_STATE(1222)] = 13471, + [SMALL_STATE(1223)] = 13531, + [SMALL_STATE(1224)] = 13591, + [SMALL_STATE(1225)] = 13651, + [SMALL_STATE(1226)] = 13711, + [SMALL_STATE(1227)] = 13771, + [SMALL_STATE(1228)] = 13831, + [SMALL_STATE(1229)] = 13891, + [SMALL_STATE(1230)] = 13951, + [SMALL_STATE(1231)] = 14011, + [SMALL_STATE(1232)] = 14071, + [SMALL_STATE(1233)] = 14131, + [SMALL_STATE(1234)] = 14191, + [SMALL_STATE(1235)] = 14251, + [SMALL_STATE(1236)] = 14311, + [SMALL_STATE(1237)] = 14371, + [SMALL_STATE(1238)] = 14431, + [SMALL_STATE(1239)] = 14491, + [SMALL_STATE(1240)] = 14583, + [SMALL_STATE(1241)] = 14643, + [SMALL_STATE(1242)] = 14703, + [SMALL_STATE(1243)] = 14769, + [SMALL_STATE(1244)] = 14829, + [SMALL_STATE(1245)] = 14889, + [SMALL_STATE(1246)] = 14955, + [SMALL_STATE(1247)] = 15015, + [SMALL_STATE(1248)] = 15075, + [SMALL_STATE(1249)] = 15135, + [SMALL_STATE(1250)] = 15195, + [SMALL_STATE(1251)] = 15255, + [SMALL_STATE(1252)] = 15315, + [SMALL_STATE(1253)] = 15375, + [SMALL_STATE(1254)] = 15435, + [SMALL_STATE(1255)] = 15495, + [SMALL_STATE(1256)] = 15555, + [SMALL_STATE(1257)] = 15615, + [SMALL_STATE(1258)] = 15675, + [SMALL_STATE(1259)] = 15735, + [SMALL_STATE(1260)] = 15795, + [SMALL_STATE(1261)] = 15855, + [SMALL_STATE(1262)] = 15915, + [SMALL_STATE(1263)] = 15975, + [SMALL_STATE(1264)] = 16035, + [SMALL_STATE(1265)] = 16095, + [SMALL_STATE(1266)] = 16155, + [SMALL_STATE(1267)] = 16215, + [SMALL_STATE(1268)] = 16275, + [SMALL_STATE(1269)] = 16335, + [SMALL_STATE(1270)] = 16395, + [SMALL_STATE(1271)] = 16455, + [SMALL_STATE(1272)] = 16515, + [SMALL_STATE(1273)] = 16575, + [SMALL_STATE(1274)] = 16635, + [SMALL_STATE(1275)] = 16695, + [SMALL_STATE(1276)] = 16755, + [SMALL_STATE(1277)] = 16815, + [SMALL_STATE(1278)] = 16875, + [SMALL_STATE(1279)] = 16935, + [SMALL_STATE(1280)] = 16995, + [SMALL_STATE(1281)] = 17055, + [SMALL_STATE(1282)] = 17115, + [SMALL_STATE(1283)] = 17175, + [SMALL_STATE(1284)] = 17235, + [SMALL_STATE(1285)] = 17295, + [SMALL_STATE(1286)] = 17355, + [SMALL_STATE(1287)] = 17415, + [SMALL_STATE(1288)] = 17475, + [SMALL_STATE(1289)] = 17535, + [SMALL_STATE(1290)] = 17595, + [SMALL_STATE(1291)] = 17655, + [SMALL_STATE(1292)] = 17715, + [SMALL_STATE(1293)] = 17775, + [SMALL_STATE(1294)] = 17835, + [SMALL_STATE(1295)] = 17895, + [SMALL_STATE(1296)] = 17955, + [SMALL_STATE(1297)] = 18015, + [SMALL_STATE(1298)] = 18075, + [SMALL_STATE(1299)] = 18135, + [SMALL_STATE(1300)] = 18195, + [SMALL_STATE(1301)] = 18255, + [SMALL_STATE(1302)] = 18315, + [SMALL_STATE(1303)] = 18407, + [SMALL_STATE(1304)] = 18467, + [SMALL_STATE(1305)] = 18527, + [SMALL_STATE(1306)] = 18587, + [SMALL_STATE(1307)] = 18647, + [SMALL_STATE(1308)] = 18707, + [SMALL_STATE(1309)] = 18767, + [SMALL_STATE(1310)] = 18827, + [SMALL_STATE(1311)] = 18887, + [SMALL_STATE(1312)] = 18947, + [SMALL_STATE(1313)] = 19007, + [SMALL_STATE(1314)] = 19067, + [SMALL_STATE(1315)] = 19127, + [SMALL_STATE(1316)] = 19187, + [SMALL_STATE(1317)] = 19247, + [SMALL_STATE(1318)] = 19307, + [SMALL_STATE(1319)] = 19367, + [SMALL_STATE(1320)] = 19427, + [SMALL_STATE(1321)] = 19487, + [SMALL_STATE(1322)] = 19547, + [SMALL_STATE(1323)] = 19607, + [SMALL_STATE(1324)] = 19667, + [SMALL_STATE(1325)] = 19727, + [SMALL_STATE(1326)] = 19787, + [SMALL_STATE(1327)] = 19847, + [SMALL_STATE(1328)] = 19907, + [SMALL_STATE(1329)] = 19967, + [SMALL_STATE(1330)] = 20027, + [SMALL_STATE(1331)] = 20087, + [SMALL_STATE(1332)] = 20147, + [SMALL_STATE(1333)] = 20207, + [SMALL_STATE(1334)] = 20267, + [SMALL_STATE(1335)] = 20327, + [SMALL_STATE(1336)] = 20387, + [SMALL_STATE(1337)] = 20447, + [SMALL_STATE(1338)] = 20507, + [SMALL_STATE(1339)] = 20567, + [SMALL_STATE(1340)] = 20627, + [SMALL_STATE(1341)] = 20687, + [SMALL_STATE(1342)] = 20747, + [SMALL_STATE(1343)] = 20807, + [SMALL_STATE(1344)] = 20867, + [SMALL_STATE(1345)] = 20927, + [SMALL_STATE(1346)] = 20987, + [SMALL_STATE(1347)] = 21047, + [SMALL_STATE(1348)] = 21107, + [SMALL_STATE(1349)] = 21167, + [SMALL_STATE(1350)] = 21227, + [SMALL_STATE(1351)] = 21287, + [SMALL_STATE(1352)] = 21347, + [SMALL_STATE(1353)] = 21407, + [SMALL_STATE(1354)] = 21467, + [SMALL_STATE(1355)] = 21527, + [SMALL_STATE(1356)] = 21587, + [SMALL_STATE(1357)] = 21647, + [SMALL_STATE(1358)] = 21707, + [SMALL_STATE(1359)] = 21767, + [SMALL_STATE(1360)] = 21827, + [SMALL_STATE(1361)] = 21887, + [SMALL_STATE(1362)] = 21947, + [SMALL_STATE(1363)] = 22007, + [SMALL_STATE(1364)] = 22067, + [SMALL_STATE(1365)] = 22127, + [SMALL_STATE(1366)] = 22187, + [SMALL_STATE(1367)] = 22247, + [SMALL_STATE(1368)] = 22307, + [SMALL_STATE(1369)] = 22367, + [SMALL_STATE(1370)] = 22427, + [SMALL_STATE(1371)] = 22487, + [SMALL_STATE(1372)] = 22547, + [SMALL_STATE(1373)] = 22607, + [SMALL_STATE(1374)] = 22667, + [SMALL_STATE(1375)] = 22727, + [SMALL_STATE(1376)] = 22787, + [SMALL_STATE(1377)] = 22847, + [SMALL_STATE(1378)] = 22907, + [SMALL_STATE(1379)] = 22967, + [SMALL_STATE(1380)] = 23027, + [SMALL_STATE(1381)] = 23087, + [SMALL_STATE(1382)] = 23147, + [SMALL_STATE(1383)] = 23207, + [SMALL_STATE(1384)] = 23267, + [SMALL_STATE(1385)] = 23327, + [SMALL_STATE(1386)] = 23387, + [SMALL_STATE(1387)] = 23447, + [SMALL_STATE(1388)] = 23507, + [SMALL_STATE(1389)] = 23567, + [SMALL_STATE(1390)] = 23627, + [SMALL_STATE(1391)] = 23687, + [SMALL_STATE(1392)] = 23747, + [SMALL_STATE(1393)] = 23807, + [SMALL_STATE(1394)] = 23867, + [SMALL_STATE(1395)] = 23927, + [SMALL_STATE(1396)] = 23987, + [SMALL_STATE(1397)] = 24047, + [SMALL_STATE(1398)] = 24107, + [SMALL_STATE(1399)] = 24167, + [SMALL_STATE(1400)] = 24227, + [SMALL_STATE(1401)] = 24287, + [SMALL_STATE(1402)] = 24347, + [SMALL_STATE(1403)] = 24407, + [SMALL_STATE(1404)] = 24467, + [SMALL_STATE(1405)] = 24527, + [SMALL_STATE(1406)] = 24587, + [SMALL_STATE(1407)] = 24647, + [SMALL_STATE(1408)] = 24707, + [SMALL_STATE(1409)] = 24769, + [SMALL_STATE(1410)] = 24829, + [SMALL_STATE(1411)] = 24889, + [SMALL_STATE(1412)] = 24949, + [SMALL_STATE(1413)] = 25009, + [SMALL_STATE(1414)] = 25069, + [SMALL_STATE(1415)] = 25137, + [SMALL_STATE(1416)] = 25197, + [SMALL_STATE(1417)] = 25257, + [SMALL_STATE(1418)] = 25317, + [SMALL_STATE(1419)] = 25377, + [SMALL_STATE(1420)] = 25437, + [SMALL_STATE(1421)] = 25499, + [SMALL_STATE(1422)] = 25559, + [SMALL_STATE(1423)] = 25619, + [SMALL_STATE(1424)] = 25679, + [SMALL_STATE(1425)] = 25739, + [SMALL_STATE(1426)] = 25799, + [SMALL_STATE(1427)] = 25859, + [SMALL_STATE(1428)] = 25919, + [SMALL_STATE(1429)] = 25979, + [SMALL_STATE(1430)] = 26039, + [SMALL_STATE(1431)] = 26099, + [SMALL_STATE(1432)] = 26159, + [SMALL_STATE(1433)] = 26219, + [SMALL_STATE(1434)] = 26279, + [SMALL_STATE(1435)] = 26339, + [SMALL_STATE(1436)] = 26399, + [SMALL_STATE(1437)] = 26459, + [SMALL_STATE(1438)] = 26519, + [SMALL_STATE(1439)] = 26579, + [SMALL_STATE(1440)] = 26639, + [SMALL_STATE(1441)] = 26699, + [SMALL_STATE(1442)] = 26759, + [SMALL_STATE(1443)] = 26819, + [SMALL_STATE(1444)] = 26879, + [SMALL_STATE(1445)] = 26939, + [SMALL_STATE(1446)] = 26999, + [SMALL_STATE(1447)] = 27059, + [SMALL_STATE(1448)] = 27119, + [SMALL_STATE(1449)] = 27185, + [SMALL_STATE(1450)] = 27245, + [SMALL_STATE(1451)] = 27305, + [SMALL_STATE(1452)] = 27365, + [SMALL_STATE(1453)] = 27425, + [SMALL_STATE(1454)] = 27485, + [SMALL_STATE(1455)] = 27545, + [SMALL_STATE(1456)] = 27605, + [SMALL_STATE(1457)] = 27665, + [SMALL_STATE(1458)] = 27725, + [SMALL_STATE(1459)] = 27785, + [SMALL_STATE(1460)] = 27845, + [SMALL_STATE(1461)] = 27905, + [SMALL_STATE(1462)] = 27969, + [SMALL_STATE(1463)] = 28029, + [SMALL_STATE(1464)] = 28089, + [SMALL_STATE(1465)] = 28151, + [SMALL_STATE(1466)] = 28211, + [SMALL_STATE(1467)] = 28271, + [SMALL_STATE(1468)] = 28331, + [SMALL_STATE(1469)] = 28391, + [SMALL_STATE(1470)] = 28451, + [SMALL_STATE(1471)] = 28515, + [SMALL_STATE(1472)] = 28577, + [SMALL_STATE(1473)] = 28637, + [SMALL_STATE(1474)] = 28697, + [SMALL_STATE(1475)] = 28757, + [SMALL_STATE(1476)] = 28817, + [SMALL_STATE(1477)] = 28877, + [SMALL_STATE(1478)] = 28972, + [SMALL_STATE(1479)] = 29033, + [SMALL_STATE(1480)] = 29092, + [SMALL_STATE(1481)] = 29151, + [SMALL_STATE(1482)] = 29210, + [SMALL_STATE(1483)] = 29271, + [SMALL_STATE(1484)] = 29330, + [SMALL_STATE(1485)] = 29389, + [SMALL_STATE(1486)] = 29484, + [SMALL_STATE(1487)] = 29543, + [SMALL_STATE(1488)] = 29602, + [SMALL_STATE(1489)] = 29692, + [SMALL_STATE(1490)] = 29758, + [SMALL_STATE(1491)] = 29840, + [SMALL_STATE(1492)] = 29924, + [SMALL_STATE(1493)] = 29994, + [SMALL_STATE(1494)] = 30084, + [SMALL_STATE(1495)] = 30176, + [SMALL_STATE(1496)] = 30254, + [SMALL_STATE(1497)] = 30340, + [SMALL_STATE(1498)] = 30430, + [SMALL_STATE(1499)] = 30500, + [SMALL_STATE(1500)] = 30590, + [SMALL_STATE(1501)] = 30682, + [SMALL_STATE(1502)] = 30780, + [SMALL_STATE(1503)] = 30878, + [SMALL_STATE(1504)] = 30976, + [SMALL_STATE(1505)] = 31062, + [SMALL_STATE(1506)] = 31130, + [SMALL_STATE(1507)] = 31220, + [SMALL_STATE(1508)] = 31294, + [SMALL_STATE(1509)] = 31366, + [SMALL_STATE(1510)] = 31458, + [SMALL_STATE(1511)] = 31548, + [SMALL_STATE(1512)] = 31624, + [SMALL_STATE(1513)] = 31687, + [SMALL_STATE(1514)] = 31754, + [SMALL_STATE(1515)] = 31819, + [SMALL_STATE(1516)] = 31904, + [SMALL_STATE(1517)] = 31989, + [SMALL_STATE(1518)] = 32074, + [SMALL_STATE(1519)] = 32141, + [SMALL_STATE(1520)] = 32208, + [SMALL_STATE(1521)] = 32271, + [SMALL_STATE(1522)] = 32356, + [SMALL_STATE(1523)] = 32416, + [SMALL_STATE(1524)] = 32476, + [SMALL_STATE(1525)] = 32532, + [SMALL_STATE(1526)] = 32590, + [SMALL_STATE(1527)] = 32654, + [SMALL_STATE(1528)] = 32710, + [SMALL_STATE(1529)] = 32768, + [SMALL_STATE(1530)] = 32832, + [SMALL_STATE(1531)] = 32888, + [SMALL_STATE(1532)] = 32944, + [SMALL_STATE(1533)] = 33000, + [SMALL_STATE(1534)] = 33056, + [SMALL_STATE(1535)] = 33114, + [SMALL_STATE(1536)] = 33170, + [SMALL_STATE(1537)] = 33230, + [SMALL_STATE(1538)] = 33286, + [SMALL_STATE(1539)] = 33350, + [SMALL_STATE(1540)] = 33410, + [SMALL_STATE(1541)] = 33474, + [SMALL_STATE(1542)] = 33530, + [SMALL_STATE(1543)] = 33590, + [SMALL_STATE(1544)] = 33650, + [SMALL_STATE(1545)] = 33708, + [SMALL_STATE(1546)] = 33766, + [SMALL_STATE(1547)] = 33826, + [SMALL_STATE(1548)] = 33884, + [SMALL_STATE(1549)] = 33939, + [SMALL_STATE(1550)] = 33994, + [SMALL_STATE(1551)] = 34053, + [SMALL_STATE(1552)] = 34112, + [SMALL_STATE(1553)] = 34167, + [SMALL_STATE(1554)] = 34222, + [SMALL_STATE(1555)] = 34277, + [SMALL_STATE(1556)] = 34336, + [SMALL_STATE(1557)] = 34431, + [SMALL_STATE(1558)] = 34488, + [SMALL_STATE(1559)] = 34545, + [SMALL_STATE(1560)] = 34640, + [SMALL_STATE(1561)] = 34735, + [SMALL_STATE(1562)] = 34830, + [SMALL_STATE(1563)] = 34925, + [SMALL_STATE(1564)] = 34980, + [SMALL_STATE(1565)] = 35075, + [SMALL_STATE(1566)] = 35170, + [SMALL_STATE(1567)] = 35265, + [SMALL_STATE(1568)] = 35360, + [SMALL_STATE(1569)] = 35455, + [SMALL_STATE(1570)] = 35550, + [SMALL_STATE(1571)] = 35605, + [SMALL_STATE(1572)] = 35662, + [SMALL_STATE(1573)] = 35719, + [SMALL_STATE(1574)] = 35778, + [SMALL_STATE(1575)] = 35833, + [SMALL_STATE(1576)] = 35890, + [SMALL_STATE(1577)] = 35947, + [SMALL_STATE(1578)] = 36004, + [SMALL_STATE(1579)] = 36099, + [SMALL_STATE(1580)] = 36153, + [SMALL_STATE(1581)] = 36209, + [SMALL_STATE(1582)] = 36265, + [SMALL_STATE(1583)] = 36347, + [SMALL_STATE(1584)] = 36433, + [SMALL_STATE(1585)] = 36519, + [SMALL_STATE(1586)] = 36605, + [SMALL_STATE(1587)] = 36661, + [SMALL_STATE(1588)] = 36753, + [SMALL_STATE(1589)] = 36845, + [SMALL_STATE(1590)] = 36901, + [SMALL_STATE(1591)] = 36955, + [SMALL_STATE(1592)] = 37047, + [SMALL_STATE(1593)] = 37103, + [SMALL_STATE(1594)] = 37167, + [SMALL_STATE(1595)] = 37255, + [SMALL_STATE(1596)] = 37325, + [SMALL_STATE(1597)] = 37413, + [SMALL_STATE(1598)] = 37481, + [SMALL_STATE(1599)] = 37537, + [SMALL_STATE(1600)] = 37609, + [SMALL_STATE(1601)] = 37665, + [SMALL_STATE(1602)] = 37743, + [SMALL_STATE(1603)] = 37823, + [SMALL_STATE(1604)] = 37911, + [SMALL_STATE(1605)] = 38003, + [SMALL_STATE(1606)] = 38091, + [SMALL_STATE(1607)] = 38145, + [SMALL_STATE(1608)] = 38199, + [SMALL_STATE(1609)] = 38291, + [SMALL_STATE(1610)] = 38357, + [SMALL_STATE(1611)] = 38413, + [SMALL_STATE(1612)] = 38469, + [SMALL_STATE(1613)] = 38555, + [SMALL_STATE(1614)] = 38641, + [SMALL_STATE(1615)] = 38695, + [SMALL_STATE(1616)] = 38749, + [SMALL_STATE(1617)] = 38807, + [SMALL_STATE(1618)] = 38861, + [SMALL_STATE(1619)] = 38915, + [SMALL_STATE(1620)] = 39001, + [SMALL_STATE(1621)] = 39075, + [SMALL_STATE(1622)] = 39129, + [SMALL_STATE(1623)] = 39183, + [SMALL_STATE(1624)] = 39237, + [SMALL_STATE(1625)] = 39325, + [SMALL_STATE(1626)] = 39381, + [SMALL_STATE(1627)] = 39437, + [SMALL_STATE(1628)] = 39491, + [SMALL_STATE(1629)] = 39545, + [SMALL_STATE(1630)] = 39633, + [SMALL_STATE(1631)] = 39721, + [SMALL_STATE(1632)] = 39803, + [SMALL_STATE(1633)] = 39859, + [SMALL_STATE(1634)] = 39913, + [SMALL_STATE(1635)] = 39969, + [SMALL_STATE(1636)] = 40025, + [SMALL_STATE(1637)] = 40081, + [SMALL_STATE(1638)] = 40137, + [SMALL_STATE(1639)] = 40225, + [SMALL_STATE(1640)] = 40279, + [SMALL_STATE(1641)] = 40371, + [SMALL_STATE(1642)] = 40425, + [SMALL_STATE(1643)] = 40478, + [SMALL_STATE(1644)] = 40531, + [SMALL_STATE(1645)] = 40584, + [SMALL_STATE(1646)] = 40637, + [SMALL_STATE(1647)] = 40690, + [SMALL_STATE(1648)] = 40743, + [SMALL_STATE(1649)] = 40796, + [SMALL_STATE(1650)] = 40849, + [SMALL_STATE(1651)] = 40902, + [SMALL_STATE(1652)] = 40955, + [SMALL_STATE(1653)] = 41008, + [SMALL_STATE(1654)] = 41061, + [SMALL_STATE(1655)] = 41114, + [SMALL_STATE(1656)] = 41167, + [SMALL_STATE(1657)] = 41220, + [SMALL_STATE(1658)] = 41273, + [SMALL_STATE(1659)] = 41362, + [SMALL_STATE(1660)] = 41415, + [SMALL_STATE(1661)] = 41468, + [SMALL_STATE(1662)] = 41521, + [SMALL_STATE(1663)] = 41606, + [SMALL_STATE(1664)] = 41695, + [SMALL_STATE(1665)] = 41784, + [SMALL_STATE(1666)] = 41837, + [SMALL_STATE(1667)] = 41922, + [SMALL_STATE(1668)] = 42001, + [SMALL_STATE(1669)] = 42054, + [SMALL_STATE(1670)] = 42107, + [SMALL_STATE(1671)] = 42160, + [SMALL_STATE(1672)] = 42213, + [SMALL_STATE(1673)] = 42266, + [SMALL_STATE(1674)] = 42319, + [SMALL_STATE(1675)] = 42372, + [SMALL_STATE(1676)] = 42461, + [SMALL_STATE(1677)] = 42514, + [SMALL_STATE(1678)] = 42567, + [SMALL_STATE(1679)] = 42620, + [SMALL_STATE(1680)] = 42707, + [SMALL_STATE(1681)] = 42760, + [SMALL_STATE(1682)] = 42813, + [SMALL_STATE(1683)] = 42866, + [SMALL_STATE(1684)] = 42951, + [SMALL_STATE(1685)] = 43004, + [SMALL_STATE(1686)] = 43057, + [SMALL_STATE(1687)] = 43110, + [SMALL_STATE(1688)] = 43197, + [SMALL_STATE(1689)] = 43250, + [SMALL_STATE(1690)] = 43313, + [SMALL_STATE(1691)] = 43382, + [SMALL_STATE(1692)] = 43449, + [SMALL_STATE(1693)] = 43520, + [SMALL_STATE(1694)] = 43597, + [SMALL_STATE(1695)] = 43676, + [SMALL_STATE(1696)] = 43741, + [SMALL_STATE(1697)] = 43826, + [SMALL_STATE(1698)] = 43911, + [SMALL_STATE(1699)] = 43984, + [SMALL_STATE(1700)] = 44065, + [SMALL_STATE(1701)] = 44118, + [SMALL_STATE(1702)] = 44171, + [SMALL_STATE(1703)] = 44224, + [SMALL_STATE(1704)] = 44277, + [SMALL_STATE(1705)] = 44330, + [SMALL_STATE(1706)] = 44417, + [SMALL_STATE(1707)] = 44470, + [SMALL_STATE(1708)] = 44523, + [SMALL_STATE(1709)] = 44576, + [SMALL_STATE(1710)] = 44629, + [SMALL_STATE(1711)] = 44682, + [SMALL_STATE(1712)] = 44735, + [SMALL_STATE(1713)] = 44788, + [SMALL_STATE(1714)] = 44841, + [SMALL_STATE(1715)] = 44894, + [SMALL_STATE(1716)] = 44947, + [SMALL_STATE(1717)] = 45000, + [SMALL_STATE(1718)] = 45053, + [SMALL_STATE(1719)] = 45106, + [SMALL_STATE(1720)] = 45193, + [SMALL_STATE(1721)] = 45246, + [SMALL_STATE(1722)] = 45299, + [SMALL_STATE(1723)] = 45386, + [SMALL_STATE(1724)] = 45439, + [SMALL_STATE(1725)] = 45492, + [SMALL_STATE(1726)] = 45545, + [SMALL_STATE(1727)] = 45632, + [SMALL_STATE(1728)] = 45685, + [SMALL_STATE(1729)] = 45772, + [SMALL_STATE(1730)] = 45825, + [SMALL_STATE(1731)] = 45878, + [SMALL_STATE(1732)] = 45931, + [SMALL_STATE(1733)] = 45984, + [SMALL_STATE(1734)] = 46071, + [SMALL_STATE(1735)] = 46130, + [SMALL_STATE(1736)] = 46189, + [SMALL_STATE(1737)] = 46242, + [SMALL_STATE(1738)] = 46331, + [SMALL_STATE(1739)] = 46420, + [SMALL_STATE(1740)] = 46473, + [SMALL_STATE(1741)] = 46526, + [SMALL_STATE(1742)] = 46579, + [SMALL_STATE(1743)] = 46668, + [SMALL_STATE(1744)] = 46721, + [SMALL_STATE(1745)] = 46774, + [SMALL_STATE(1746)] = 46863, + [SMALL_STATE(1747)] = 46952, + [SMALL_STATE(1748)] = 47041, + [SMALL_STATE(1749)] = 47094, + [SMALL_STATE(1750)] = 47147, + [SMALL_STATE(1751)] = 47236, + [SMALL_STATE(1752)] = 47289, + [SMALL_STATE(1753)] = 47342, + [SMALL_STATE(1754)] = 47431, + [SMALL_STATE(1755)] = 47484, + [SMALL_STATE(1756)] = 47573, + [SMALL_STATE(1757)] = 47662, + [SMALL_STATE(1758)] = 47715, + [SMALL_STATE(1759)] = 47804, + [SMALL_STATE(1760)] = 47893, + [SMALL_STATE(1761)] = 47946, + [SMALL_STATE(1762)] = 48035, + [SMALL_STATE(1763)] = 48116, + [SMALL_STATE(1764)] = 48203, + [SMALL_STATE(1765)] = 48290, + [SMALL_STATE(1766)] = 48351, + [SMALL_STATE(1767)] = 48440, + [SMALL_STATE(1768)] = 48529, + [SMALL_STATE(1769)] = 48582, + [SMALL_STATE(1770)] = 48667, + [SMALL_STATE(1771)] = 48720, + [SMALL_STATE(1772)] = 48809, + [SMALL_STATE(1773)] = 48898, + [SMALL_STATE(1774)] = 48951, + [SMALL_STATE(1775)] = 49038, + [SMALL_STATE(1776)] = 49119, + [SMALL_STATE(1777)] = 49204, + [SMALL_STATE(1778)] = 49293, + [SMALL_STATE(1779)] = 49378, + [SMALL_STATE(1780)] = 49463, + [SMALL_STATE(1781)] = 49552, + [SMALL_STATE(1782)] = 49639, + [SMALL_STATE(1783)] = 49726, + [SMALL_STATE(1784)] = 49811, + [SMALL_STATE(1785)] = 49900, + [SMALL_STATE(1786)] = 49985, + [SMALL_STATE(1787)] = 50074, + [SMALL_STATE(1788)] = 50127, + [SMALL_STATE(1789)] = 50212, + [SMALL_STATE(1790)] = 50301, + [SMALL_STATE(1791)] = 50364, + [SMALL_STATE(1792)] = 50453, + [SMALL_STATE(1793)] = 50542, + [SMALL_STATE(1794)] = 50611, + [SMALL_STATE(1795)] = 50678, + [SMALL_STATE(1796)] = 50749, + [SMALL_STATE(1797)] = 50826, + [SMALL_STATE(1798)] = 50915, + [SMALL_STATE(1799)] = 51004, + [SMALL_STATE(1800)] = 51083, + [SMALL_STATE(1801)] = 51172, + [SMALL_STATE(1802)] = 51261, + [SMALL_STATE(1803)] = 51326, + [SMALL_STATE(1804)] = 51415, + [SMALL_STATE(1805)] = 51502, + [SMALL_STATE(1806)] = 51591, + [SMALL_STATE(1807)] = 51644, + [SMALL_STATE(1808)] = 51733, + [SMALL_STATE(1809)] = 51822, + [SMALL_STATE(1810)] = 51909, + [SMALL_STATE(1811)] = 51994, + [SMALL_STATE(1812)] = 52079, + [SMALL_STATE(1813)] = 52152, + [SMALL_STATE(1814)] = 52241, + [SMALL_STATE(1815)] = 52330, + [SMALL_STATE(1816)] = 52419, + [SMALL_STATE(1817)] = 52500, + [SMALL_STATE(1818)] = 52589, + [SMALL_STATE(1819)] = 52678, + [SMALL_STATE(1820)] = 52767, + [SMALL_STATE(1821)] = 52856, + [SMALL_STATE(1822)] = 52945, + [SMALL_STATE(1823)] = 52998, + [SMALL_STATE(1824)] = 53051, + [SMALL_STATE(1825)] = 53104, + [SMALL_STATE(1826)] = 53157, + [SMALL_STATE(1827)] = 53210, + [SMALL_STATE(1828)] = 53269, + [SMALL_STATE(1829)] = 53358, + [SMALL_STATE(1830)] = 53411, + [SMALL_STATE(1831)] = 53500, + [SMALL_STATE(1832)] = 53553, + [SMALL_STATE(1833)] = 53606, + [SMALL_STATE(1834)] = 53659, + [SMALL_STATE(1835)] = 53748, + [SMALL_STATE(1836)] = 53801, + [SMALL_STATE(1837)] = 53854, + [SMALL_STATE(1838)] = 53941, + [SMALL_STATE(1839)] = 53994, + [SMALL_STATE(1840)] = 54047, + [SMALL_STATE(1841)] = 54134, + [SMALL_STATE(1842)] = 54221, + [SMALL_STATE(1843)] = 54274, + [SMALL_STATE(1844)] = 54327, + [SMALL_STATE(1845)] = 54380, + [SMALL_STATE(1846)] = 54467, + [SMALL_STATE(1847)] = 54556, + [SMALL_STATE(1848)] = 54645, + [SMALL_STATE(1849)] = 54734, + [SMALL_STATE(1850)] = 54787, + [SMALL_STATE(1851)] = 54873, + [SMALL_STATE(1852)] = 54959, + [SMALL_STATE(1853)] = 55045, + [SMALL_STATE(1854)] = 55131, + [SMALL_STATE(1855)] = 55217, + [SMALL_STATE(1856)] = 55303, + [SMALL_STATE(1857)] = 55389, + [SMALL_STATE(1858)] = 55475, + [SMALL_STATE(1859)] = 55561, + [SMALL_STATE(1860)] = 55647, + [SMALL_STATE(1861)] = 55733, + [SMALL_STATE(1862)] = 55819, + [SMALL_STATE(1863)] = 55905, + [SMALL_STATE(1864)] = 55991, + [SMALL_STATE(1865)] = 56077, + [SMALL_STATE(1866)] = 56163, + [SMALL_STATE(1867)] = 56249, + [SMALL_STATE(1868)] = 56335, + [SMALL_STATE(1869)] = 56411, + [SMALL_STATE(1870)] = 56497, + [SMALL_STATE(1871)] = 56581, + [SMALL_STATE(1872)] = 56667, + [SMALL_STATE(1873)] = 56753, + [SMALL_STATE(1874)] = 56839, + [SMALL_STATE(1875)] = 56925, + [SMALL_STATE(1876)] = 57001, + [SMALL_STATE(1877)] = 57087, + [SMALL_STATE(1878)] = 57173, + [SMALL_STATE(1879)] = 57259, + [SMALL_STATE(1880)] = 57345, + [SMALL_STATE(1881)] = 57431, + [SMALL_STATE(1882)] = 57515, + [SMALL_STATE(1883)] = 57601, + [SMALL_STATE(1884)] = 57687, + [SMALL_STATE(1885)] = 57760, + [SMALL_STATE(1886)] = 57833, + [SMALL_STATE(1887)] = 57906, + [SMALL_STATE(1888)] = 57979, + [SMALL_STATE(1889)] = 58052, + [SMALL_STATE(1890)] = 58126, + [SMALL_STATE(1891)] = 58200, + [SMALL_STATE(1892)] = 58274, + [SMALL_STATE(1893)] = 58348, + [SMALL_STATE(1894)] = 58422, + [SMALL_STATE(1895)] = 58496, + [SMALL_STATE(1896)] = 58570, + [SMALL_STATE(1897)] = 58644, + [SMALL_STATE(1898)] = 58690, + [SMALL_STATE(1899)] = 58736, + [SMALL_STATE(1900)] = 58782, + [SMALL_STATE(1901)] = 58843, + [SMALL_STATE(1902)] = 58904, + [SMALL_STATE(1903)] = 58965, + [SMALL_STATE(1904)] = 59026, + [SMALL_STATE(1905)] = 59087, + [SMALL_STATE(1906)] = 59148, + [SMALL_STATE(1907)] = 59209, + [SMALL_STATE(1908)] = 59270, + [SMALL_STATE(1909)] = 59328, + [SMALL_STATE(1910)] = 59386, + [SMALL_STATE(1911)] = 59422, + [SMALL_STATE(1912)] = 59458, + [SMALL_STATE(1913)] = 59506, + [SMALL_STATE(1914)] = 59543, + [SMALL_STATE(1915)] = 59588, + [SMALL_STATE(1916)] = 59625, + [SMALL_STATE(1917)] = 59670, + [SMALL_STATE(1918)] = 59723, + [SMALL_STATE(1919)] = 59760, + [SMALL_STATE(1920)] = 59797, + [SMALL_STATE(1921)] = 59842, + [SMALL_STATE(1922)] = 59878, + [SMALL_STATE(1923)] = 59918, + [SMALL_STATE(1924)] = 59958, + [SMALL_STATE(1925)] = 59998, + [SMALL_STATE(1926)] = 60034, + [SMALL_STATE(1927)] = 60070, + [SMALL_STATE(1928)] = 60106, + [SMALL_STATE(1929)] = 60146, + [SMALL_STATE(1930)] = 60179, + [SMALL_STATE(1931)] = 60212, + [SMALL_STATE(1932)] = 60245, + [SMALL_STATE(1933)] = 60278, + [SMALL_STATE(1934)] = 60311, + [SMALL_STATE(1935)] = 60344, + [SMALL_STATE(1936)] = 60377, + [SMALL_STATE(1937)] = 60410, + [SMALL_STATE(1938)] = 60441, + [SMALL_STATE(1939)] = 60487, + [SMALL_STATE(1940)] = 60519, + [SMALL_STATE(1941)] = 60551, + [SMALL_STATE(1942)] = 60611, + [SMALL_STATE(1943)] = 60655, + [SMALL_STATE(1944)] = 60687, + [SMALL_STATE(1945)] = 60747, + [SMALL_STATE(1946)] = 60802, + [SMALL_STATE(1947)] = 60831, + [SMALL_STATE(1948)] = 60864, + [SMALL_STATE(1949)] = 60893, + [SMALL_STATE(1950)] = 60926, + [SMALL_STATE(1951)] = 60955, + [SMALL_STATE(1952)] = 60984, + [SMALL_STATE(1953)] = 61015, + [SMALL_STATE(1954)] = 61044, + [SMALL_STATE(1955)] = 61087, + [SMALL_STATE(1956)] = 61120, + [SMALL_STATE(1957)] = 61151, + [SMALL_STATE(1958)] = 61182, + [SMALL_STATE(1959)] = 61235, + [SMALL_STATE(1960)] = 61264, + [SMALL_STATE(1961)] = 61297, + [SMALL_STATE(1962)] = 61330, + [SMALL_STATE(1963)] = 61361, + [SMALL_STATE(1964)] = 61394, + [SMALL_STATE(1965)] = 61425, + [SMALL_STATE(1966)] = 61454, + [SMALL_STATE(1967)] = 61507, + [SMALL_STATE(1968)] = 61538, + [SMALL_STATE(1969)] = 61567, + [SMALL_STATE(1970)] = 61598, + [SMALL_STATE(1971)] = 61629, + [SMALL_STATE(1972)] = 61670, + [SMALL_STATE(1973)] = 61699, + [SMALL_STATE(1974)] = 61727, + [SMALL_STATE(1975)] = 61755, + [SMALL_STATE(1976)] = 61783, + [SMALL_STATE(1977)] = 61811, + [SMALL_STATE(1978)] = 61839, + [SMALL_STATE(1979)] = 61867, + [SMALL_STATE(1980)] = 61895, + [SMALL_STATE(1981)] = 61939, + [SMALL_STATE(1982)] = 61967, + [SMALL_STATE(1983)] = 61995, + [SMALL_STATE(1984)] = 62023, + [SMALL_STATE(1985)] = 62051, + [SMALL_STATE(1986)] = 62079, + [SMALL_STATE(1987)] = 62107, + [SMALL_STATE(1988)] = 62135, + [SMALL_STATE(1989)] = 62165, + [SMALL_STATE(1990)] = 62193, + [SMALL_STATE(1991)] = 62221, + [SMALL_STATE(1992)] = 62249, + [SMALL_STATE(1993)] = 62277, + [SMALL_STATE(1994)] = 62305, + [SMALL_STATE(1995)] = 62333, + [SMALL_STATE(1996)] = 62363, + [SMALL_STATE(1997)] = 62391, + [SMALL_STATE(1998)] = 62419, + [SMALL_STATE(1999)] = 62447, + [SMALL_STATE(2000)] = 62475, + [SMALL_STATE(2001)] = 62503, + [SMALL_STATE(2002)] = 62531, + [SMALL_STATE(2003)] = 62559, + [SMALL_STATE(2004)] = 62587, + [SMALL_STATE(2005)] = 62615, + [SMALL_STATE(2006)] = 62644, + [SMALL_STATE(2007)] = 62673, + [SMALL_STATE(2008)] = 62704, + [SMALL_STATE(2009)] = 62755, + [SMALL_STATE(2010)] = 62790, + [SMALL_STATE(2011)] = 62822, + [SMALL_STATE(2012)] = 62854, + [SMALL_STATE(2013)] = 62886, + [SMALL_STATE(2014)] = 62918, + [SMALL_STATE(2015)] = 62950, + [SMALL_STATE(2016)] = 62982, + [SMALL_STATE(2017)] = 63010, + [SMALL_STATE(2018)] = 63040, + [SMALL_STATE(2019)] = 63072, + [SMALL_STATE(2020)] = 63100, + [SMALL_STATE(2021)] = 63132, + [SMALL_STATE(2022)] = 63164, + [SMALL_STATE(2023)] = 63208, + [SMALL_STATE(2024)] = 63240, + [SMALL_STATE(2025)] = 63272, + [SMALL_STATE(2026)] = 63304, + [SMALL_STATE(2027)] = 63349, + [SMALL_STATE(2028)] = 63394, + [SMALL_STATE(2029)] = 63439, + [SMALL_STATE(2030)] = 63484, + [SMALL_STATE(2031)] = 63529, + [SMALL_STATE(2032)] = 63574, + [SMALL_STATE(2033)] = 63619, + [SMALL_STATE(2034)] = 63664, + [SMALL_STATE(2035)] = 63709, + [SMALL_STATE(2036)] = 63754, + [SMALL_STATE(2037)] = 63799, + [SMALL_STATE(2038)] = 63836, + [SMALL_STATE(2039)] = 63881, + [SMALL_STATE(2040)] = 63926, + [SMALL_STATE(2041)] = 63971, + [SMALL_STATE(2042)] = 64016, + [SMALL_STATE(2043)] = 64040, + [SMALL_STATE(2044)] = 64068, + [SMALL_STATE(2045)] = 64096, + [SMALL_STATE(2046)] = 64138, + [SMALL_STATE(2047)] = 64166, + [SMALL_STATE(2048)] = 64208, + [SMALL_STATE(2049)] = 64250, + [SMALL_STATE(2050)] = 64280, + [SMALL_STATE(2051)] = 64320, + [SMALL_STATE(2052)] = 64350, + [SMALL_STATE(2053)] = 64374, + [SMALL_STATE(2054)] = 64416, + [SMALL_STATE(2055)] = 64458, + [SMALL_STATE(2056)] = 64496, + [SMALL_STATE(2057)] = 64530, + [SMALL_STATE(2058)] = 64564, + [SMALL_STATE(2059)] = 64588, + [SMALL_STATE(2060)] = 64616, + [SMALL_STATE(2061)] = 64654, + [SMALL_STATE(2062)] = 64682, + [SMALL_STATE(2063)] = 64706, + [SMALL_STATE(2064)] = 64734, + [SMALL_STATE(2065)] = 64762, + [SMALL_STATE(2066)] = 64790, + [SMALL_STATE(2067)] = 64818, + [SMALL_STATE(2068)] = 64846, + [SMALL_STATE(2069)] = 64886, + [SMALL_STATE(2070)] = 64928, + [SMALL_STATE(2071)] = 64966, + [SMALL_STATE(2072)] = 65004, + [SMALL_STATE(2073)] = 65042, + [SMALL_STATE(2074)] = 65066, + [SMALL_STATE(2075)] = 65108, + [SMALL_STATE(2076)] = 65136, + [SMALL_STATE(2077)] = 65166, + [SMALL_STATE(2078)] = 65204, + [SMALL_STATE(2079)] = 65234, + [SMALL_STATE(2080)] = 65272, + [SMALL_STATE(2081)] = 65310, + [SMALL_STATE(2082)] = 65348, + [SMALL_STATE(2083)] = 65388, + [SMALL_STATE(2084)] = 65416, + [SMALL_STATE(2085)] = 65451, + [SMALL_STATE(2086)] = 65492, + [SMALL_STATE(2087)] = 65515, + [SMALL_STATE(2088)] = 65538, + [SMALL_STATE(2089)] = 65561, + [SMALL_STATE(2090)] = 65584, + [SMALL_STATE(2091)] = 65607, + [SMALL_STATE(2092)] = 65630, + [SMALL_STATE(2093)] = 65653, + [SMALL_STATE(2094)] = 65676, + [SMALL_STATE(2095)] = 65707, + [SMALL_STATE(2096)] = 65730, + [SMALL_STATE(2097)] = 65753, + [SMALL_STATE(2098)] = 65776, + [SMALL_STATE(2099)] = 65799, + [SMALL_STATE(2100)] = 65822, + [SMALL_STATE(2101)] = 65845, + [SMALL_STATE(2102)] = 65876, + [SMALL_STATE(2103)] = 65911, + [SMALL_STATE(2104)] = 65934, + [SMALL_STATE(2105)] = 65971, + [SMALL_STATE(2106)] = 65994, + [SMALL_STATE(2107)] = 66017, + [SMALL_STATE(2108)] = 66040, + [SMALL_STATE(2109)] = 66063, + [SMALL_STATE(2110)] = 66086, + [SMALL_STATE(2111)] = 66109, + [SMALL_STATE(2112)] = 66132, + [SMALL_STATE(2113)] = 66155, + [SMALL_STATE(2114)] = 66178, + [SMALL_STATE(2115)] = 66215, + [SMALL_STATE(2116)] = 66238, + [SMALL_STATE(2117)] = 66271, + [SMALL_STATE(2118)] = 66294, + [SMALL_STATE(2119)] = 66317, + [SMALL_STATE(2120)] = 66340, + [SMALL_STATE(2121)] = 66363, + [SMALL_STATE(2122)] = 66394, + [SMALL_STATE(2123)] = 66431, + [SMALL_STATE(2124)] = 66454, + [SMALL_STATE(2125)] = 66477, + [SMALL_STATE(2126)] = 66518, + [SMALL_STATE(2127)] = 66553, + [SMALL_STATE(2128)] = 66594, + [SMALL_STATE(2129)] = 66625, + [SMALL_STATE(2130)] = 66648, + [SMALL_STATE(2131)] = 66671, + [SMALL_STATE(2132)] = 66694, + [SMALL_STATE(2133)] = 66735, + [SMALL_STATE(2134)] = 66758, + [SMALL_STATE(2135)] = 66795, + [SMALL_STATE(2136)] = 66818, + [SMALL_STATE(2137)] = 66850, + [SMALL_STATE(2138)] = 66874, + [SMALL_STATE(2139)] = 66912, + [SMALL_STATE(2140)] = 66948, + [SMALL_STATE(2141)] = 66986, + [SMALL_STATE(2142)] = 67024, + [SMALL_STATE(2143)] = 67048, + [SMALL_STATE(2144)] = 67086, + [SMALL_STATE(2145)] = 67112, + [SMALL_STATE(2146)] = 67144, + [SMALL_STATE(2147)] = 67182, + [SMALL_STATE(2148)] = 67210, + [SMALL_STATE(2149)] = 67236, + [SMALL_STATE(2150)] = 67274, + [SMALL_STATE(2151)] = 67300, + [SMALL_STATE(2152)] = 67332, + [SMALL_STATE(2153)] = 67358, + [SMALL_STATE(2154)] = 67390, + [SMALL_STATE(2155)] = 67422, + [SMALL_STATE(2156)] = 67446, + [SMALL_STATE(2157)] = 67484, + [SMALL_STATE(2158)] = 67512, + [SMALL_STATE(2159)] = 67544, + [SMALL_STATE(2160)] = 67582, + [SMALL_STATE(2161)] = 67606, + [SMALL_STATE(2162)] = 67634, + [SMALL_STATE(2163)] = 67668, + [SMALL_STATE(2164)] = 67696, + [SMALL_STATE(2165)] = 67734, + [SMALL_STATE(2166)] = 67762, + [SMALL_STATE(2167)] = 67800, + [SMALL_STATE(2168)] = 67838, + [SMALL_STATE(2169)] = 67876, + [SMALL_STATE(2170)] = 67914, + [SMALL_STATE(2171)] = 67946, + [SMALL_STATE(2172)] = 67978, + [SMALL_STATE(2173)] = 68016, + [SMALL_STATE(2174)] = 68054, + [SMALL_STATE(2175)] = 68086, + [SMALL_STATE(2176)] = 68114, + [SMALL_STATE(2177)] = 68146, + [SMALL_STATE(2178)] = 68178, + [SMALL_STATE(2179)] = 68210, + [SMALL_STATE(2180)] = 68248, + [SMALL_STATE(2181)] = 68282, + [SMALL_STATE(2182)] = 68310, + [SMALL_STATE(2183)] = 68342, + [SMALL_STATE(2184)] = 68366, + [SMALL_STATE(2185)] = 68401, + [SMALL_STATE(2186)] = 68436, + [SMALL_STATE(2187)] = 68471, + [SMALL_STATE(2188)] = 68506, + [SMALL_STATE(2189)] = 68531, + [SMALL_STATE(2190)] = 68566, + [SMALL_STATE(2191)] = 68601, + [SMALL_STATE(2192)] = 68626, + [SMALL_STATE(2193)] = 68647, + [SMALL_STATE(2194)] = 68682, + [SMALL_STATE(2195)] = 68717, + [SMALL_STATE(2196)] = 68738, + [SMALL_STATE(2197)] = 68773, + [SMALL_STATE(2198)] = 68794, + [SMALL_STATE(2199)] = 68827, + [SMALL_STATE(2200)] = 68862, + [SMALL_STATE(2201)] = 68897, + [SMALL_STATE(2202)] = 68932, + [SMALL_STATE(2203)] = 68965, + [SMALL_STATE(2204)] = 68990, + [SMALL_STATE(2205)] = 69023, + [SMALL_STATE(2206)] = 69058, + [SMALL_STATE(2207)] = 69093, + [SMALL_STATE(2208)] = 69114, + [SMALL_STATE(2209)] = 69149, + [SMALL_STATE(2210)] = 69170, + [SMALL_STATE(2211)] = 69205, + [SMALL_STATE(2212)] = 69240, + [SMALL_STATE(2213)] = 69275, + [SMALL_STATE(2214)] = 69302, + [SMALL_STATE(2215)] = 69335, + [SMALL_STATE(2216)] = 69370, + [SMALL_STATE(2217)] = 69405, + [SMALL_STATE(2218)] = 69440, + [SMALL_STATE(2219)] = 69475, + [SMALL_STATE(2220)] = 69510, + [SMALL_STATE(2221)] = 69545, + [SMALL_STATE(2222)] = 69580, + [SMALL_STATE(2223)] = 69609, + [SMALL_STATE(2224)] = 69644, + [SMALL_STATE(2225)] = 69679, + [SMALL_STATE(2226)] = 69714, + [SMALL_STATE(2227)] = 69749, + [SMALL_STATE(2228)] = 69784, + [SMALL_STATE(2229)] = 69819, + [SMALL_STATE(2230)] = 69840, + [SMALL_STATE(2231)] = 69875, + [SMALL_STATE(2232)] = 69910, + [SMALL_STATE(2233)] = 69945, + [SMALL_STATE(2234)] = 69980, + [SMALL_STATE(2235)] = 70013, + [SMALL_STATE(2236)] = 70048, + [SMALL_STATE(2237)] = 70083, + [SMALL_STATE(2238)] = 70118, + [SMALL_STATE(2239)] = 70153, + [SMALL_STATE(2240)] = 70188, + [SMALL_STATE(2241)] = 70216, + [SMALL_STATE(2242)] = 70248, + [SMALL_STATE(2243)] = 70280, + [SMALL_STATE(2244)] = 70310, + [SMALL_STATE(2245)] = 70342, + [SMALL_STATE(2246)] = 70374, + [SMALL_STATE(2247)] = 70406, + [SMALL_STATE(2248)] = 70438, + [SMALL_STATE(2249)] = 70460, + [SMALL_STATE(2250)] = 70492, + [SMALL_STATE(2251)] = 70524, + [SMALL_STATE(2252)] = 70554, + [SMALL_STATE(2253)] = 70580, + [SMALL_STATE(2254)] = 70610, + [SMALL_STATE(2255)] = 70642, + [SMALL_STATE(2256)] = 70674, + [SMALL_STATE(2257)] = 70706, + [SMALL_STATE(2258)] = 70738, + [SMALL_STATE(2259)] = 70770, + [SMALL_STATE(2260)] = 70802, + [SMALL_STATE(2261)] = 70834, + [SMALL_STATE(2262)] = 70862, + [SMALL_STATE(2263)] = 70888, + [SMALL_STATE(2264)] = 70916, + [SMALL_STATE(2265)] = 70948, + [SMALL_STATE(2266)] = 70980, + [SMALL_STATE(2267)] = 71008, + [SMALL_STATE(2268)] = 71030, + [SMALL_STATE(2269)] = 71060, + [SMALL_STATE(2270)] = 71090, + [SMALL_STATE(2271)] = 71122, + [SMALL_STATE(2272)] = 71152, + [SMALL_STATE(2273)] = 71184, + [SMALL_STATE(2274)] = 71216, + [SMALL_STATE(2275)] = 71248, + [SMALL_STATE(2276)] = 71280, + [SMALL_STATE(2277)] = 71312, + [SMALL_STATE(2278)] = 71344, + [SMALL_STATE(2279)] = 71374, + [SMALL_STATE(2280)] = 71406, + [SMALL_STATE(2281)] = 71428, + [SMALL_STATE(2282)] = 71460, + [SMALL_STATE(2283)] = 71492, + [SMALL_STATE(2284)] = 71518, + [SMALL_STATE(2285)] = 71548, + [SMALL_STATE(2286)] = 71570, + [SMALL_STATE(2287)] = 71600, + [SMALL_STATE(2288)] = 71632, + [SMALL_STATE(2289)] = 71660, + [SMALL_STATE(2290)] = 71692, + [SMALL_STATE(2291)] = 71718, + [SMALL_STATE(2292)] = 71740, + [SMALL_STATE(2293)] = 71772, + [SMALL_STATE(2294)] = 71794, + [SMALL_STATE(2295)] = 71826, + [SMALL_STATE(2296)] = 71856, + [SMALL_STATE(2297)] = 71888, + [SMALL_STATE(2298)] = 71920, + [SMALL_STATE(2299)] = 71943, + [SMALL_STATE(2300)] = 71972, + [SMALL_STATE(2301)] = 71995, + [SMALL_STATE(2302)] = 72024, + [SMALL_STATE(2303)] = 72053, + [SMALL_STATE(2304)] = 72082, + [SMALL_STATE(2305)] = 72111, + [SMALL_STATE(2306)] = 72140, + [SMALL_STATE(2307)] = 72169, + [SMALL_STATE(2308)] = 72192, + [SMALL_STATE(2309)] = 72215, + [SMALL_STATE(2310)] = 72244, + [SMALL_STATE(2311)] = 72267, + [SMALL_STATE(2312)] = 72288, + [SMALL_STATE(2313)] = 72313, + [SMALL_STATE(2314)] = 72342, + [SMALL_STATE(2315)] = 72371, + [SMALL_STATE(2316)] = 72400, + [SMALL_STATE(2317)] = 72423, + [SMALL_STATE(2318)] = 72452, + [SMALL_STATE(2319)] = 72471, + [SMALL_STATE(2320)] = 72494, + [SMALL_STATE(2321)] = 72515, + [SMALL_STATE(2322)] = 72544, + [SMALL_STATE(2323)] = 72565, + [SMALL_STATE(2324)] = 72594, + [SMALL_STATE(2325)] = 72623, + [SMALL_STATE(2326)] = 72652, + [SMALL_STATE(2327)] = 72679, + [SMALL_STATE(2328)] = 72704, + [SMALL_STATE(2329)] = 72733, + [SMALL_STATE(2330)] = 72762, + [SMALL_STATE(2331)] = 72791, + [SMALL_STATE(2332)] = 72820, + [SMALL_STATE(2333)] = 72849, + [SMALL_STATE(2334)] = 72878, + [SMALL_STATE(2335)] = 72907, + [SMALL_STATE(2336)] = 72932, + [SMALL_STATE(2337)] = 72961, + [SMALL_STATE(2338)] = 72990, + [SMALL_STATE(2339)] = 73017, + [SMALL_STATE(2340)] = 73046, + [SMALL_STATE(2341)] = 73075, + [SMALL_STATE(2342)] = 73104, + [SMALL_STATE(2343)] = 73133, + [SMALL_STATE(2344)] = 73160, + [SMALL_STATE(2345)] = 73189, + [SMALL_STATE(2346)] = 73210, + [SMALL_STATE(2347)] = 73231, + [SMALL_STATE(2348)] = 73260, + [SMALL_STATE(2349)] = 73289, + [SMALL_STATE(2350)] = 73318, + [SMALL_STATE(2351)] = 73347, + [SMALL_STATE(2352)] = 73376, + [SMALL_STATE(2353)] = 73405, + [SMALL_STATE(2354)] = 73434, + [SMALL_STATE(2355)] = 73463, + [SMALL_STATE(2356)] = 73486, + [SMALL_STATE(2357)] = 73515, + [SMALL_STATE(2358)] = 73544, + [SMALL_STATE(2359)] = 73573, + [SMALL_STATE(2360)] = 73596, + [SMALL_STATE(2361)] = 73625, + [SMALL_STATE(2362)] = 73652, + [SMALL_STATE(2363)] = 73681, + [SMALL_STATE(2364)] = 73710, + [SMALL_STATE(2365)] = 73733, + [SMALL_STATE(2366)] = 73752, + [SMALL_STATE(2367)] = 73781, + [SMALL_STATE(2368)] = 73810, + [SMALL_STATE(2369)] = 73831, + [SMALL_STATE(2370)] = 73860, + [SMALL_STATE(2371)] = 73889, + [SMALL_STATE(2372)] = 73918, + [SMALL_STATE(2373)] = 73941, + [SMALL_STATE(2374)] = 73970, + [SMALL_STATE(2375)] = 73999, + [SMALL_STATE(2376)] = 74026, + [SMALL_STATE(2377)] = 74055, + [SMALL_STATE(2378)] = 74078, + [SMALL_STATE(2379)] = 74107, + [SMALL_STATE(2380)] = 74136, + [SMALL_STATE(2381)] = 74165, + [SMALL_STATE(2382)] = 74194, + [SMALL_STATE(2383)] = 74217, + [SMALL_STATE(2384)] = 74240, + [SMALL_STATE(2385)] = 74261, + [SMALL_STATE(2386)] = 74288, + [SMALL_STATE(2387)] = 74317, + [SMALL_STATE(2388)] = 74346, + [SMALL_STATE(2389)] = 74375, + [SMALL_STATE(2390)] = 74404, + [SMALL_STATE(2391)] = 74429, + [SMALL_STATE(2392)] = 74450, + [SMALL_STATE(2393)] = 74479, + [SMALL_STATE(2394)] = 74508, + [SMALL_STATE(2395)] = 74537, + [SMALL_STATE(2396)] = 74566, + [SMALL_STATE(2397)] = 74595, + [SMALL_STATE(2398)] = 74617, + [SMALL_STATE(2399)] = 74643, + [SMALL_STATE(2400)] = 74669, + [SMALL_STATE(2401)] = 74695, + [SMALL_STATE(2402)] = 74721, + [SMALL_STATE(2403)] = 74743, + [SMALL_STATE(2404)] = 74769, + [SMALL_STATE(2405)] = 74795, + [SMALL_STATE(2406)] = 74813, + [SMALL_STATE(2407)] = 74839, + [SMALL_STATE(2408)] = 74863, + [SMALL_STATE(2409)] = 74887, + [SMALL_STATE(2410)] = 74911, + [SMALL_STATE(2411)] = 74935, + [SMALL_STATE(2412)] = 74961, + [SMALL_STATE(2413)] = 74985, + [SMALL_STATE(2414)] = 75007, + [SMALL_STATE(2415)] = 75027, + [SMALL_STATE(2416)] = 75053, + [SMALL_STATE(2417)] = 75071, + [SMALL_STATE(2418)] = 75097, + [SMALL_STATE(2419)] = 75115, + [SMALL_STATE(2420)] = 75133, + [SMALL_STATE(2421)] = 75157, + [SMALL_STATE(2422)] = 75183, + [SMALL_STATE(2423)] = 75209, + [SMALL_STATE(2424)] = 75235, + [SMALL_STATE(2425)] = 75261, + [SMALL_STATE(2426)] = 75287, + [SMALL_STATE(2427)] = 75305, + [SMALL_STATE(2428)] = 75331, + [SMALL_STATE(2429)] = 75353, + [SMALL_STATE(2430)] = 75371, + [SMALL_STATE(2431)] = 75397, + [SMALL_STATE(2432)] = 75415, + [SMALL_STATE(2433)] = 75441, + [SMALL_STATE(2434)] = 75465, + [SMALL_STATE(2435)] = 75483, + [SMALL_STATE(2436)] = 75501, + [SMALL_STATE(2437)] = 75519, + [SMALL_STATE(2438)] = 75545, + [SMALL_STATE(2439)] = 75569, + [SMALL_STATE(2440)] = 75595, + [SMALL_STATE(2441)] = 75621, + [SMALL_STATE(2442)] = 75647, + [SMALL_STATE(2443)] = 75673, + [SMALL_STATE(2444)] = 75697, + [SMALL_STATE(2445)] = 75723, + [SMALL_STATE(2446)] = 75747, + [SMALL_STATE(2447)] = 75773, + [SMALL_STATE(2448)] = 75799, + [SMALL_STATE(2449)] = 75821, + [SMALL_STATE(2450)] = 75847, + [SMALL_STATE(2451)] = 75873, + [SMALL_STATE(2452)] = 75895, + [SMALL_STATE(2453)] = 75921, + [SMALL_STATE(2454)] = 75943, + [SMALL_STATE(2455)] = 75961, + [SMALL_STATE(2456)] = 75979, + [SMALL_STATE(2457)] = 75997, + [SMALL_STATE(2458)] = 76019, + [SMALL_STATE(2459)] = 76045, + [SMALL_STATE(2460)] = 76071, + [SMALL_STATE(2461)] = 76097, + [SMALL_STATE(2462)] = 76123, + [SMALL_STATE(2463)] = 76149, + [SMALL_STATE(2464)] = 76175, + [SMALL_STATE(2465)] = 76201, + [SMALL_STATE(2466)] = 76227, + [SMALL_STATE(2467)] = 76253, + [SMALL_STATE(2468)] = 76279, + [SMALL_STATE(2469)] = 76305, + [SMALL_STATE(2470)] = 76331, + [SMALL_STATE(2471)] = 76357, + [SMALL_STATE(2472)] = 76381, + [SMALL_STATE(2473)] = 76399, + [SMALL_STATE(2474)] = 76423, + [SMALL_STATE(2475)] = 76441, + [SMALL_STATE(2476)] = 76459, + [SMALL_STATE(2477)] = 76477, + [SMALL_STATE(2478)] = 76503, + [SMALL_STATE(2479)] = 76521, + [SMALL_STATE(2480)] = 76539, + [SMALL_STATE(2481)] = 76565, + [SMALL_STATE(2482)] = 76585, + [SMALL_STATE(2483)] = 76611, + [SMALL_STATE(2484)] = 76637, + [SMALL_STATE(2485)] = 76661, + [SMALL_STATE(2486)] = 76687, + [SMALL_STATE(2487)] = 76713, + [SMALL_STATE(2488)] = 76731, + [SMALL_STATE(2489)] = 76749, + [SMALL_STATE(2490)] = 76767, + [SMALL_STATE(2491)] = 76789, + [SMALL_STATE(2492)] = 76815, + [SMALL_STATE(2493)] = 76841, + [SMALL_STATE(2494)] = 76865, + [SMALL_STATE(2495)] = 76891, + [SMALL_STATE(2496)] = 76917, + [SMALL_STATE(2497)] = 76935, + [SMALL_STATE(2498)] = 76961, + [SMALL_STATE(2499)] = 76985, + [SMALL_STATE(2500)] = 77005, + [SMALL_STATE(2501)] = 77031, + [SMALL_STATE(2502)] = 77049, + [SMALL_STATE(2503)] = 77067, + [SMALL_STATE(2504)] = 77093, + [SMALL_STATE(2505)] = 77115, + [SMALL_STATE(2506)] = 77141, + [SMALL_STATE(2507)] = 77164, + [SMALL_STATE(2508)] = 77181, + [SMALL_STATE(2509)] = 77204, + [SMALL_STATE(2510)] = 77223, + [SMALL_STATE(2511)] = 77242, + [SMALL_STATE(2512)] = 77261, + [SMALL_STATE(2513)] = 77280, + [SMALL_STATE(2514)] = 77303, + [SMALL_STATE(2515)] = 77326, + [SMALL_STATE(2516)] = 77345, + [SMALL_STATE(2517)] = 77368, + [SMALL_STATE(2518)] = 77389, + [SMALL_STATE(2519)] = 77410, + [SMALL_STATE(2520)] = 77429, + [SMALL_STATE(2521)] = 77448, + [SMALL_STATE(2522)] = 77467, + [SMALL_STATE(2523)] = 77490, + [SMALL_STATE(2524)] = 77509, + [SMALL_STATE(2525)] = 77532, + [SMALL_STATE(2526)] = 77555, + [SMALL_STATE(2527)] = 77578, + [SMALL_STATE(2528)] = 77601, + [SMALL_STATE(2529)] = 77624, + [SMALL_STATE(2530)] = 77647, + [SMALL_STATE(2531)] = 77670, + [SMALL_STATE(2532)] = 77689, + [SMALL_STATE(2533)] = 77712, + [SMALL_STATE(2534)] = 77733, + [SMALL_STATE(2535)] = 77756, + [SMALL_STATE(2536)] = 77779, + [SMALL_STATE(2537)] = 77802, + [SMALL_STATE(2538)] = 77825, + [SMALL_STATE(2539)] = 77848, + [SMALL_STATE(2540)] = 77871, + [SMALL_STATE(2541)] = 77894, + [SMALL_STATE(2542)] = 77917, + [SMALL_STATE(2543)] = 77934, + [SMALL_STATE(2544)] = 77955, + [SMALL_STATE(2545)] = 77978, + [SMALL_STATE(2546)] = 78001, + [SMALL_STATE(2547)] = 78024, + [SMALL_STATE(2548)] = 78047, + [SMALL_STATE(2549)] = 78068, + [SMALL_STATE(2550)] = 78087, + [SMALL_STATE(2551)] = 78110, + [SMALL_STATE(2552)] = 78133, + [SMALL_STATE(2553)] = 78150, + [SMALL_STATE(2554)] = 78173, + [SMALL_STATE(2555)] = 78196, + [SMALL_STATE(2556)] = 78217, + [SMALL_STATE(2557)] = 78240, + [SMALL_STATE(2558)] = 78257, + [SMALL_STATE(2559)] = 78280, + [SMALL_STATE(2560)] = 78303, + [SMALL_STATE(2561)] = 78326, + [SMALL_STATE(2562)] = 78345, + [SMALL_STATE(2563)] = 78368, + [SMALL_STATE(2564)] = 78391, + [SMALL_STATE(2565)] = 78414, + [SMALL_STATE(2566)] = 78433, + [SMALL_STATE(2567)] = 78456, + [SMALL_STATE(2568)] = 78479, + [SMALL_STATE(2569)] = 78502, + [SMALL_STATE(2570)] = 78525, + [SMALL_STATE(2571)] = 78548, + [SMALL_STATE(2572)] = 78571, + [SMALL_STATE(2573)] = 78594, + [SMALL_STATE(2574)] = 78613, + [SMALL_STATE(2575)] = 78636, + [SMALL_STATE(2576)] = 78657, + [SMALL_STATE(2577)] = 78678, + [SMALL_STATE(2578)] = 78699, + [SMALL_STATE(2579)] = 78722, + [SMALL_STATE(2580)] = 78745, + [SMALL_STATE(2581)] = 78768, + [SMALL_STATE(2582)] = 78789, + [SMALL_STATE(2583)] = 78812, + [SMALL_STATE(2584)] = 78835, + [SMALL_STATE(2585)] = 78856, + [SMALL_STATE(2586)] = 78879, + [SMALL_STATE(2587)] = 78902, + [SMALL_STATE(2588)] = 78923, + [SMALL_STATE(2589)] = 78946, + [SMALL_STATE(2590)] = 78969, + [SMALL_STATE(2591)] = 78992, + [SMALL_STATE(2592)] = 79013, + [SMALL_STATE(2593)] = 79036, + [SMALL_STATE(2594)] = 79059, + [SMALL_STATE(2595)] = 79082, + [SMALL_STATE(2596)] = 79105, + [SMALL_STATE(2597)] = 79128, + [SMALL_STATE(2598)] = 79151, + [SMALL_STATE(2599)] = 79172, + [SMALL_STATE(2600)] = 79195, + [SMALL_STATE(2601)] = 79218, + [SMALL_STATE(2602)] = 79241, + [SMALL_STATE(2603)] = 79264, + [SMALL_STATE(2604)] = 79287, + [SMALL_STATE(2605)] = 79310, + [SMALL_STATE(2606)] = 79329, + [SMALL_STATE(2607)] = 79352, + [SMALL_STATE(2608)] = 79375, + [SMALL_STATE(2609)] = 79394, + [SMALL_STATE(2610)] = 79411, + [SMALL_STATE(2611)] = 79434, + [SMALL_STATE(2612)] = 79457, + [SMALL_STATE(2613)] = 79478, + [SMALL_STATE(2614)] = 79501, + [SMALL_STATE(2615)] = 79524, + [SMALL_STATE(2616)] = 79547, + [SMALL_STATE(2617)] = 79570, + [SMALL_STATE(2618)] = 79589, + [SMALL_STATE(2619)] = 79612, + [SMALL_STATE(2620)] = 79635, + [SMALL_STATE(2621)] = 79658, + [SMALL_STATE(2622)] = 79681, + [SMALL_STATE(2623)] = 79704, + [SMALL_STATE(2624)] = 79727, + [SMALL_STATE(2625)] = 79750, + [SMALL_STATE(2626)] = 79773, + [SMALL_STATE(2627)] = 79796, + [SMALL_STATE(2628)] = 79819, + [SMALL_STATE(2629)] = 79842, + [SMALL_STATE(2630)] = 79863, + [SMALL_STATE(2631)] = 79886, + [SMALL_STATE(2632)] = 79909, + [SMALL_STATE(2633)] = 79932, + [SMALL_STATE(2634)] = 79955, + [SMALL_STATE(2635)] = 79978, + [SMALL_STATE(2636)] = 80001, + [SMALL_STATE(2637)] = 80022, + [SMALL_STATE(2638)] = 80045, + [SMALL_STATE(2639)] = 80068, + [SMALL_STATE(2640)] = 80091, + [SMALL_STATE(2641)] = 80114, + [SMALL_STATE(2642)] = 80137, + [SMALL_STATE(2643)] = 80160, + [SMALL_STATE(2644)] = 80179, + [SMALL_STATE(2645)] = 80202, + [SMALL_STATE(2646)] = 80223, + [SMALL_STATE(2647)] = 80246, + [SMALL_STATE(2648)] = 80269, + [SMALL_STATE(2649)] = 80290, + [SMALL_STATE(2650)] = 80313, + [SMALL_STATE(2651)] = 80336, + [SMALL_STATE(2652)] = 80359, + [SMALL_STATE(2653)] = 80382, + [SMALL_STATE(2654)] = 80405, + [SMALL_STATE(2655)] = 80428, + [SMALL_STATE(2656)] = 80451, + [SMALL_STATE(2657)] = 80472, + [SMALL_STATE(2658)] = 80495, + [SMALL_STATE(2659)] = 80516, + [SMALL_STATE(2660)] = 80539, + [SMALL_STATE(2661)] = 80562, + [SMALL_STATE(2662)] = 80581, + [SMALL_STATE(2663)] = 80604, + [SMALL_STATE(2664)] = 80627, + [SMALL_STATE(2665)] = 80646, + [SMALL_STATE(2666)] = 80669, + [SMALL_STATE(2667)] = 80692, + [SMALL_STATE(2668)] = 80715, + [SMALL_STATE(2669)] = 80738, + [SMALL_STATE(2670)] = 80761, + [SMALL_STATE(2671)] = 80784, + [SMALL_STATE(2672)] = 80807, + [SMALL_STATE(2673)] = 80830, + [SMALL_STATE(2674)] = 80853, + [SMALL_STATE(2675)] = 80876, + [SMALL_STATE(2676)] = 80899, + [SMALL_STATE(2677)] = 80922, + [SMALL_STATE(2678)] = 80941, + [SMALL_STATE(2679)] = 80958, + [SMALL_STATE(2680)] = 80981, + [SMALL_STATE(2681)] = 81004, + [SMALL_STATE(2682)] = 81025, + [SMALL_STATE(2683)] = 81048, + [SMALL_STATE(2684)] = 81071, + [SMALL_STATE(2685)] = 81090, + [SMALL_STATE(2686)] = 81113, + [SMALL_STATE(2687)] = 81136, + [SMALL_STATE(2688)] = 81159, + [SMALL_STATE(2689)] = 81182, + [SMALL_STATE(2690)] = 81205, + [SMALL_STATE(2691)] = 81222, + [SMALL_STATE(2692)] = 81239, + [SMALL_STATE(2693)] = 81258, + [SMALL_STATE(2694)] = 81281, + [SMALL_STATE(2695)] = 81304, + [SMALL_STATE(2696)] = 81327, + [SMALL_STATE(2697)] = 81350, + [SMALL_STATE(2698)] = 81373, + [SMALL_STATE(2699)] = 81396, + [SMALL_STATE(2700)] = 81419, + [SMALL_STATE(2701)] = 81442, + [SMALL_STATE(2702)] = 81463, + [SMALL_STATE(2703)] = 81486, + [SMALL_STATE(2704)] = 81509, + [SMALL_STATE(2705)] = 81532, + [SMALL_STATE(2706)] = 81551, + [SMALL_STATE(2707)] = 81574, + [SMALL_STATE(2708)] = 81597, + [SMALL_STATE(2709)] = 81620, + [SMALL_STATE(2710)] = 81643, + [SMALL_STATE(2711)] = 81666, + [SMALL_STATE(2712)] = 81689, + [SMALL_STATE(2713)] = 81712, + [SMALL_STATE(2714)] = 81735, + [SMALL_STATE(2715)] = 81758, + [SMALL_STATE(2716)] = 81781, + [SMALL_STATE(2717)] = 81800, + [SMALL_STATE(2718)] = 81823, + [SMALL_STATE(2719)] = 81846, + [SMALL_STATE(2720)] = 81869, + [SMALL_STATE(2721)] = 81892, + [SMALL_STATE(2722)] = 81915, + [SMALL_STATE(2723)] = 81938, + [SMALL_STATE(2724)] = 81961, + [SMALL_STATE(2725)] = 81982, + [SMALL_STATE(2726)] = 82005, + [SMALL_STATE(2727)] = 82028, + [SMALL_STATE(2728)] = 82047, + [SMALL_STATE(2729)] = 82070, + [SMALL_STATE(2730)] = 82093, + [SMALL_STATE(2731)] = 82116, + [SMALL_STATE(2732)] = 82139, + [SMALL_STATE(2733)] = 82160, + [SMALL_STATE(2734)] = 82183, + [SMALL_STATE(2735)] = 82206, + [SMALL_STATE(2736)] = 82229, + [SMALL_STATE(2737)] = 82252, + [SMALL_STATE(2738)] = 82275, + [SMALL_STATE(2739)] = 82298, + [SMALL_STATE(2740)] = 82321, + [SMALL_STATE(2741)] = 82344, + [SMALL_STATE(2742)] = 82367, + [SMALL_STATE(2743)] = 82390, + [SMALL_STATE(2744)] = 82411, + [SMALL_STATE(2745)] = 82432, + [SMALL_STATE(2746)] = 82455, + [SMALL_STATE(2747)] = 82476, + [SMALL_STATE(2748)] = 82496, + [SMALL_STATE(2749)] = 82516, + [SMALL_STATE(2750)] = 82536, + [SMALL_STATE(2751)] = 82556, + [SMALL_STATE(2752)] = 82572, + [SMALL_STATE(2753)] = 82592, + [SMALL_STATE(2754)] = 82612, + [SMALL_STATE(2755)] = 82630, + [SMALL_STATE(2756)] = 82646, + [SMALL_STATE(2757)] = 82662, + [SMALL_STATE(2758)] = 82682, + [SMALL_STATE(2759)] = 82700, + [SMALL_STATE(2760)] = 82716, + [SMALL_STATE(2761)] = 82736, + [SMALL_STATE(2762)] = 82754, + [SMALL_STATE(2763)] = 82770, + [SMALL_STATE(2764)] = 82790, + [SMALL_STATE(2765)] = 82810, + [SMALL_STATE(2766)] = 82830, + [SMALL_STATE(2767)] = 82850, + [SMALL_STATE(2768)] = 82870, + [SMALL_STATE(2769)] = 82890, + [SMALL_STATE(2770)] = 82910, + [SMALL_STATE(2771)] = 82926, + [SMALL_STATE(2772)] = 82946, + [SMALL_STATE(2773)] = 82966, + [SMALL_STATE(2774)] = 82982, + [SMALL_STATE(2775)] = 83002, + [SMALL_STATE(2776)] = 83022, + [SMALL_STATE(2777)] = 83042, + [SMALL_STATE(2778)] = 83062, + [SMALL_STATE(2779)] = 83078, + [SMALL_STATE(2780)] = 83094, + [SMALL_STATE(2781)] = 83114, + [SMALL_STATE(2782)] = 83130, + [SMALL_STATE(2783)] = 83150, + [SMALL_STATE(2784)] = 83166, + [SMALL_STATE(2785)] = 83182, + [SMALL_STATE(2786)] = 83202, + [SMALL_STATE(2787)] = 83222, + [SMALL_STATE(2788)] = 83240, + [SMALL_STATE(2789)] = 83260, + [SMALL_STATE(2790)] = 83276, + [SMALL_STATE(2791)] = 83296, + [SMALL_STATE(2792)] = 83312, + [SMALL_STATE(2793)] = 83332, + [SMALL_STATE(2794)] = 83352, + [SMALL_STATE(2795)] = 83368, + [SMALL_STATE(2796)] = 83388, + [SMALL_STATE(2797)] = 83404, + [SMALL_STATE(2798)] = 83422, + [SMALL_STATE(2799)] = 83440, + [SMALL_STATE(2800)] = 83460, + [SMALL_STATE(2801)] = 83476, + [SMALL_STATE(2802)] = 83496, + [SMALL_STATE(2803)] = 83516, + [SMALL_STATE(2804)] = 83536, + [SMALL_STATE(2805)] = 83556, + [SMALL_STATE(2806)] = 83574, + [SMALL_STATE(2807)] = 83592, + [SMALL_STATE(2808)] = 83608, + [SMALL_STATE(2809)] = 83626, + [SMALL_STATE(2810)] = 83646, + [SMALL_STATE(2811)] = 83666, + [SMALL_STATE(2812)] = 83686, + [SMALL_STATE(2813)] = 83706, + [SMALL_STATE(2814)] = 83724, + [SMALL_STATE(2815)] = 83744, + [SMALL_STATE(2816)] = 83764, + [SMALL_STATE(2817)] = 83782, + [SMALL_STATE(2818)] = 83802, + [SMALL_STATE(2819)] = 83818, + [SMALL_STATE(2820)] = 83838, + [SMALL_STATE(2821)] = 83854, + [SMALL_STATE(2822)] = 83870, + [SMALL_STATE(2823)] = 83888, + [SMALL_STATE(2824)] = 83904, + [SMALL_STATE(2825)] = 83924, + [SMALL_STATE(2826)] = 83944, + [SMALL_STATE(2827)] = 83964, + [SMALL_STATE(2828)] = 83984, + [SMALL_STATE(2829)] = 84004, + [SMALL_STATE(2830)] = 84022, + [SMALL_STATE(2831)] = 84042, + [SMALL_STATE(2832)] = 84062, + [SMALL_STATE(2833)] = 84082, + [SMALL_STATE(2834)] = 84098, + [SMALL_STATE(2835)] = 84118, + [SMALL_STATE(2836)] = 84138, + [SMALL_STATE(2837)] = 84158, + [SMALL_STATE(2838)] = 84178, + [SMALL_STATE(2839)] = 84198, + [SMALL_STATE(2840)] = 84218, + [SMALL_STATE(2841)] = 84238, + [SMALL_STATE(2842)] = 84258, + [SMALL_STATE(2843)] = 84278, + [SMALL_STATE(2844)] = 84294, + [SMALL_STATE(2845)] = 84314, + [SMALL_STATE(2846)] = 84334, + [SMALL_STATE(2847)] = 84354, + [SMALL_STATE(2848)] = 84372, + [SMALL_STATE(2849)] = 84390, + [SMALL_STATE(2850)] = 84406, + [SMALL_STATE(2851)] = 84426, + [SMALL_STATE(2852)] = 84446, + [SMALL_STATE(2853)] = 84466, + [SMALL_STATE(2854)] = 84486, + [SMALL_STATE(2855)] = 84506, + [SMALL_STATE(2856)] = 84526, + [SMALL_STATE(2857)] = 84544, + [SMALL_STATE(2858)] = 84560, + [SMALL_STATE(2859)] = 84576, + [SMALL_STATE(2860)] = 84592, + [SMALL_STATE(2861)] = 84612, + [SMALL_STATE(2862)] = 84628, + [SMALL_STATE(2863)] = 84644, + [SMALL_STATE(2864)] = 84660, + [SMALL_STATE(2865)] = 84680, + [SMALL_STATE(2866)] = 84698, + [SMALL_STATE(2867)] = 84718, + [SMALL_STATE(2868)] = 84738, + [SMALL_STATE(2869)] = 84758, + [SMALL_STATE(2870)] = 84774, + [SMALL_STATE(2871)] = 84794, + [SMALL_STATE(2872)] = 84810, + [SMALL_STATE(2873)] = 84830, + [SMALL_STATE(2874)] = 84850, + [SMALL_STATE(2875)] = 84868, + [SMALL_STATE(2876)] = 84888, + [SMALL_STATE(2877)] = 84908, + [SMALL_STATE(2878)] = 84928, + [SMALL_STATE(2879)] = 84948, + [SMALL_STATE(2880)] = 84966, + [SMALL_STATE(2881)] = 84986, + [SMALL_STATE(2882)] = 85006, + [SMALL_STATE(2883)] = 85026, + [SMALL_STATE(2884)] = 85046, + [SMALL_STATE(2885)] = 85064, + [SMALL_STATE(2886)] = 85084, + [SMALL_STATE(2887)] = 85100, + [SMALL_STATE(2888)] = 85120, + [SMALL_STATE(2889)] = 85140, + [SMALL_STATE(2890)] = 85160, + [SMALL_STATE(2891)] = 85180, + [SMALL_STATE(2892)] = 85200, + [SMALL_STATE(2893)] = 85220, + [SMALL_STATE(2894)] = 85240, + [SMALL_STATE(2895)] = 85260, + [SMALL_STATE(2896)] = 85280, + [SMALL_STATE(2897)] = 85298, + [SMALL_STATE(2898)] = 85318, + [SMALL_STATE(2899)] = 85338, + [SMALL_STATE(2900)] = 85358, + [SMALL_STATE(2901)] = 85376, + [SMALL_STATE(2902)] = 85396, + [SMALL_STATE(2903)] = 85416, + [SMALL_STATE(2904)] = 85436, + [SMALL_STATE(2905)] = 85456, + [SMALL_STATE(2906)] = 85474, + [SMALL_STATE(2907)] = 85494, + [SMALL_STATE(2908)] = 85514, + [SMALL_STATE(2909)] = 85532, + [SMALL_STATE(2910)] = 85552, + [SMALL_STATE(2911)] = 85570, + [SMALL_STATE(2912)] = 85590, + [SMALL_STATE(2913)] = 85610, + [SMALL_STATE(2914)] = 85630, + [SMALL_STATE(2915)] = 85650, + [SMALL_STATE(2916)] = 85670, + [SMALL_STATE(2917)] = 85690, + [SMALL_STATE(2918)] = 85710, + [SMALL_STATE(2919)] = 85728, + [SMALL_STATE(2920)] = 85746, + [SMALL_STATE(2921)] = 85766, + [SMALL_STATE(2922)] = 85782, + [SMALL_STATE(2923)] = 85802, + [SMALL_STATE(2924)] = 85822, + [SMALL_STATE(2925)] = 85840, + [SMALL_STATE(2926)] = 85856, + [SMALL_STATE(2927)] = 85876, + [SMALL_STATE(2928)] = 85896, + [SMALL_STATE(2929)] = 85916, + [SMALL_STATE(2930)] = 85934, + [SMALL_STATE(2931)] = 85954, + [SMALL_STATE(2932)] = 85974, + [SMALL_STATE(2933)] = 85994, + [SMALL_STATE(2934)] = 86014, + [SMALL_STATE(2935)] = 86034, + [SMALL_STATE(2936)] = 86054, + [SMALL_STATE(2937)] = 86072, + [SMALL_STATE(2938)] = 86092, + [SMALL_STATE(2939)] = 86112, + [SMALL_STATE(2940)] = 86132, + [SMALL_STATE(2941)] = 86152, + [SMALL_STATE(2942)] = 86172, + [SMALL_STATE(2943)] = 86192, + [SMALL_STATE(2944)] = 86210, + [SMALL_STATE(2945)] = 86230, + [SMALL_STATE(2946)] = 86250, + [SMALL_STATE(2947)] = 86268, + [SMALL_STATE(2948)] = 86288, + [SMALL_STATE(2949)] = 86308, + [SMALL_STATE(2950)] = 86328, + [SMALL_STATE(2951)] = 86348, + [SMALL_STATE(2952)] = 86364, + [SMALL_STATE(2953)] = 86384, + [SMALL_STATE(2954)] = 86404, + [SMALL_STATE(2955)] = 86424, + [SMALL_STATE(2956)] = 86444, + [SMALL_STATE(2957)] = 86464, + [SMALL_STATE(2958)] = 86482, + [SMALL_STATE(2959)] = 86502, + [SMALL_STATE(2960)] = 86522, + [SMALL_STATE(2961)] = 86540, + [SMALL_STATE(2962)] = 86560, + [SMALL_STATE(2963)] = 86578, + [SMALL_STATE(2964)] = 86596, + [SMALL_STATE(2965)] = 86616, + [SMALL_STATE(2966)] = 86636, + [SMALL_STATE(2967)] = 86656, + [SMALL_STATE(2968)] = 86674, + [SMALL_STATE(2969)] = 86690, + [SMALL_STATE(2970)] = 86708, + [SMALL_STATE(2971)] = 86728, + [SMALL_STATE(2972)] = 86748, + [SMALL_STATE(2973)] = 86768, + [SMALL_STATE(2974)] = 86784, + [SMALL_STATE(2975)] = 86804, + [SMALL_STATE(2976)] = 86820, + [SMALL_STATE(2977)] = 86838, + [SMALL_STATE(2978)] = 86858, + [SMALL_STATE(2979)] = 86876, + [SMALL_STATE(2980)] = 86896, + [SMALL_STATE(2981)] = 86914, + [SMALL_STATE(2982)] = 86930, + [SMALL_STATE(2983)] = 86950, + [SMALL_STATE(2984)] = 86970, + [SMALL_STATE(2985)] = 86990, + [SMALL_STATE(2986)] = 87010, + [SMALL_STATE(2987)] = 87028, + [SMALL_STATE(2988)] = 87046, + [SMALL_STATE(2989)] = 87066, + [SMALL_STATE(2990)] = 87086, + [SMALL_STATE(2991)] = 87106, + [SMALL_STATE(2992)] = 87126, + [SMALL_STATE(2993)] = 87146, + [SMALL_STATE(2994)] = 87162, + [SMALL_STATE(2995)] = 87182, + [SMALL_STATE(2996)] = 87202, + [SMALL_STATE(2997)] = 87222, + [SMALL_STATE(2998)] = 87242, + [SMALL_STATE(2999)] = 87258, + [SMALL_STATE(3000)] = 87278, + [SMALL_STATE(3001)] = 87294, + [SMALL_STATE(3002)] = 87314, + [SMALL_STATE(3003)] = 87330, + [SMALL_STATE(3004)] = 87350, + [SMALL_STATE(3005)] = 87366, + [SMALL_STATE(3006)] = 87386, + [SMALL_STATE(3007)] = 87406, + [SMALL_STATE(3008)] = 87426, + [SMALL_STATE(3009)] = 87442, + [SMALL_STATE(3010)] = 87462, + [SMALL_STATE(3011)] = 87482, + [SMALL_STATE(3012)] = 87498, + [SMALL_STATE(3013)] = 87518, + [SMALL_STATE(3014)] = 87538, + [SMALL_STATE(3015)] = 87558, + [SMALL_STATE(3016)] = 87578, + [SMALL_STATE(3017)] = 87598, + [SMALL_STATE(3018)] = 87618, + [SMALL_STATE(3019)] = 87634, + [SMALL_STATE(3020)] = 87650, + [SMALL_STATE(3021)] = 87666, + [SMALL_STATE(3022)] = 87686, + [SMALL_STATE(3023)] = 87706, + [SMALL_STATE(3024)] = 87726, + [SMALL_STATE(3025)] = 87746, + [SMALL_STATE(3026)] = 87766, + [SMALL_STATE(3027)] = 87782, + [SMALL_STATE(3028)] = 87802, + [SMALL_STATE(3029)] = 87820, + [SMALL_STATE(3030)] = 87840, + [SMALL_STATE(3031)] = 87860, + [SMALL_STATE(3032)] = 87876, + [SMALL_STATE(3033)] = 87892, + [SMALL_STATE(3034)] = 87908, + [SMALL_STATE(3035)] = 87928, + [SMALL_STATE(3036)] = 87948, + [SMALL_STATE(3037)] = 87964, + [SMALL_STATE(3038)] = 87984, + [SMALL_STATE(3039)] = 88004, + [SMALL_STATE(3040)] = 88024, + [SMALL_STATE(3041)] = 88044, + [SMALL_STATE(3042)] = 88064, + [SMALL_STATE(3043)] = 88084, + [SMALL_STATE(3044)] = 88104, + [SMALL_STATE(3045)] = 88120, [SMALL_STATE(3046)] = 88140, - [SMALL_STATE(3047)] = 88157, - [SMALL_STATE(3048)] = 88174, - [SMALL_STATE(3049)] = 88191, - [SMALL_STATE(3050)] = 88206, - [SMALL_STATE(3051)] = 88223, - [SMALL_STATE(3052)] = 88240, - [SMALL_STATE(3053)] = 88257, - [SMALL_STATE(3054)] = 88274, - [SMALL_STATE(3055)] = 88291, - [SMALL_STATE(3056)] = 88306, - [SMALL_STATE(3057)] = 88323, - [SMALL_STATE(3058)] = 88340, - [SMALL_STATE(3059)] = 88357, - [SMALL_STATE(3060)] = 88374, - [SMALL_STATE(3061)] = 88391, - [SMALL_STATE(3062)] = 88408, - [SMALL_STATE(3063)] = 88425, - [SMALL_STATE(3064)] = 88440, - [SMALL_STATE(3065)] = 88457, - [SMALL_STATE(3066)] = 88472, - [SMALL_STATE(3067)] = 88489, - [SMALL_STATE(3068)] = 88506, - [SMALL_STATE(3069)] = 88523, - [SMALL_STATE(3070)] = 88540, - [SMALL_STATE(3071)] = 88557, - [SMALL_STATE(3072)] = 88574, - [SMALL_STATE(3073)] = 88591, - [SMALL_STATE(3074)] = 88606, - [SMALL_STATE(3075)] = 88623, - [SMALL_STATE(3076)] = 88640, - [SMALL_STATE(3077)] = 88655, - [SMALL_STATE(3078)] = 88670, - [SMALL_STATE(3079)] = 88685, - [SMALL_STATE(3080)] = 88702, - [SMALL_STATE(3081)] = 88719, - [SMALL_STATE(3082)] = 88736, - [SMALL_STATE(3083)] = 88751, - [SMALL_STATE(3084)] = 88768, - [SMALL_STATE(3085)] = 88783, - [SMALL_STATE(3086)] = 88800, - [SMALL_STATE(3087)] = 88817, - [SMALL_STATE(3088)] = 88834, - [SMALL_STATE(3089)] = 88849, - [SMALL_STATE(3090)] = 88864, - [SMALL_STATE(3091)] = 88881, - [SMALL_STATE(3092)] = 88898, - [SMALL_STATE(3093)] = 88915, - [SMALL_STATE(3094)] = 88932, - [SMALL_STATE(3095)] = 88949, - [SMALL_STATE(3096)] = 88966, - [SMALL_STATE(3097)] = 88983, - [SMALL_STATE(3098)] = 89000, - [SMALL_STATE(3099)] = 89017, - [SMALL_STATE(3100)] = 89034, - [SMALL_STATE(3101)] = 89051, - [SMALL_STATE(3102)] = 89068, - [SMALL_STATE(3103)] = 89085, - [SMALL_STATE(3104)] = 89102, - [SMALL_STATE(3105)] = 89119, - [SMALL_STATE(3106)] = 89136, - [SMALL_STATE(3107)] = 89153, - [SMALL_STATE(3108)] = 89170, - [SMALL_STATE(3109)] = 89187, - [SMALL_STATE(3110)] = 89202, - [SMALL_STATE(3111)] = 89219, - [SMALL_STATE(3112)] = 89236, - [SMALL_STATE(3113)] = 89253, - [SMALL_STATE(3114)] = 89270, - [SMALL_STATE(3115)] = 89287, - [SMALL_STATE(3116)] = 89304, - [SMALL_STATE(3117)] = 89321, - [SMALL_STATE(3118)] = 89338, - [SMALL_STATE(3119)] = 89355, - [SMALL_STATE(3120)] = 89372, - [SMALL_STATE(3121)] = 89387, - [SMALL_STATE(3122)] = 89404, - [SMALL_STATE(3123)] = 89421, - [SMALL_STATE(3124)] = 89438, - [SMALL_STATE(3125)] = 89455, - [SMALL_STATE(3126)] = 89472, - [SMALL_STATE(3127)] = 89489, - [SMALL_STATE(3128)] = 89506, - [SMALL_STATE(3129)] = 89523, - [SMALL_STATE(3130)] = 89540, - [SMALL_STATE(3131)] = 89557, - [SMALL_STATE(3132)] = 89572, - [SMALL_STATE(3133)] = 89589, - [SMALL_STATE(3134)] = 89606, - [SMALL_STATE(3135)] = 89623, - [SMALL_STATE(3136)] = 89638, - [SMALL_STATE(3137)] = 89655, - [SMALL_STATE(3138)] = 89672, - [SMALL_STATE(3139)] = 89687, - [SMALL_STATE(3140)] = 89704, - [SMALL_STATE(3141)] = 89721, - [SMALL_STATE(3142)] = 89738, - [SMALL_STATE(3143)] = 89755, - [SMALL_STATE(3144)] = 89770, - [SMALL_STATE(3145)] = 89787, - [SMALL_STATE(3146)] = 89804, - [SMALL_STATE(3147)] = 89821, - [SMALL_STATE(3148)] = 89838, - [SMALL_STATE(3149)] = 89853, - [SMALL_STATE(3150)] = 89870, - [SMALL_STATE(3151)] = 89887, - [SMALL_STATE(3152)] = 89904, - [SMALL_STATE(3153)] = 89921, - [SMALL_STATE(3154)] = 89938, - [SMALL_STATE(3155)] = 89955, - [SMALL_STATE(3156)] = 89972, - [SMALL_STATE(3157)] = 89989, - [SMALL_STATE(3158)] = 90006, - [SMALL_STATE(3159)] = 90023, - [SMALL_STATE(3160)] = 90040, - [SMALL_STATE(3161)] = 90057, - [SMALL_STATE(3162)] = 90074, - [SMALL_STATE(3163)] = 90091, - [SMALL_STATE(3164)] = 90108, - [SMALL_STATE(3165)] = 90125, - [SMALL_STATE(3166)] = 90142, - [SMALL_STATE(3167)] = 90159, - [SMALL_STATE(3168)] = 90176, - [SMALL_STATE(3169)] = 90193, - [SMALL_STATE(3170)] = 90210, - [SMALL_STATE(3171)] = 90227, - [SMALL_STATE(3172)] = 90244, - [SMALL_STATE(3173)] = 90261, - [SMALL_STATE(3174)] = 90278, - [SMALL_STATE(3175)] = 90295, - [SMALL_STATE(3176)] = 90312, - [SMALL_STATE(3177)] = 90327, - [SMALL_STATE(3178)] = 90344, - [SMALL_STATE(3179)] = 90361, - [SMALL_STATE(3180)] = 90378, - [SMALL_STATE(3181)] = 90395, - [SMALL_STATE(3182)] = 90412, - [SMALL_STATE(3183)] = 90429, - [SMALL_STATE(3184)] = 90446, - [SMALL_STATE(3185)] = 90461, - [SMALL_STATE(3186)] = 90476, - [SMALL_STATE(3187)] = 90493, - [SMALL_STATE(3188)] = 90510, - [SMALL_STATE(3189)] = 90527, - [SMALL_STATE(3190)] = 90542, - [SMALL_STATE(3191)] = 90559, - [SMALL_STATE(3192)] = 90576, - [SMALL_STATE(3193)] = 90593, - [SMALL_STATE(3194)] = 90610, - [SMALL_STATE(3195)] = 90627, - [SMALL_STATE(3196)] = 90642, - [SMALL_STATE(3197)] = 90657, - [SMALL_STATE(3198)] = 90672, - [SMALL_STATE(3199)] = 90689, - [SMALL_STATE(3200)] = 90704, - [SMALL_STATE(3201)] = 90719, - [SMALL_STATE(3202)] = 90734, - [SMALL_STATE(3203)] = 90751, - [SMALL_STATE(3204)] = 90766, - [SMALL_STATE(3205)] = 90783, - [SMALL_STATE(3206)] = 90798, - [SMALL_STATE(3207)] = 90815, - [SMALL_STATE(3208)] = 90832, - [SMALL_STATE(3209)] = 90849, - [SMALL_STATE(3210)] = 90866, - [SMALL_STATE(3211)] = 90883, - [SMALL_STATE(3212)] = 90900, - [SMALL_STATE(3213)] = 90917, - [SMALL_STATE(3214)] = 90934, - [SMALL_STATE(3215)] = 90951, - [SMALL_STATE(3216)] = 90968, - [SMALL_STATE(3217)] = 90985, - [SMALL_STATE(3218)] = 91000, - [SMALL_STATE(3219)] = 91017, - [SMALL_STATE(3220)] = 91034, - [SMALL_STATE(3221)] = 91051, - [SMALL_STATE(3222)] = 91068, - [SMALL_STATE(3223)] = 91085, - [SMALL_STATE(3224)] = 91102, - [SMALL_STATE(3225)] = 91119, - [SMALL_STATE(3226)] = 91136, - [SMALL_STATE(3227)] = 91153, - [SMALL_STATE(3228)] = 91170, - [SMALL_STATE(3229)] = 91187, - [SMALL_STATE(3230)] = 91204, - [SMALL_STATE(3231)] = 91221, - [SMALL_STATE(3232)] = 91238, - [SMALL_STATE(3233)] = 91253, - [SMALL_STATE(3234)] = 91270, - [SMALL_STATE(3235)] = 91287, - [SMALL_STATE(3236)] = 91302, - [SMALL_STATE(3237)] = 91319, - [SMALL_STATE(3238)] = 91336, - [SMALL_STATE(3239)] = 91351, - [SMALL_STATE(3240)] = 91368, - [SMALL_STATE(3241)] = 91385, - [SMALL_STATE(3242)] = 91402, - [SMALL_STATE(3243)] = 91419, - [SMALL_STATE(3244)] = 91436, - [SMALL_STATE(3245)] = 91453, - [SMALL_STATE(3246)] = 91470, - [SMALL_STATE(3247)] = 91487, - [SMALL_STATE(3248)] = 91504, - [SMALL_STATE(3249)] = 91521, - [SMALL_STATE(3250)] = 91538, - [SMALL_STATE(3251)] = 91553, - [SMALL_STATE(3252)] = 91570, - [SMALL_STATE(3253)] = 91585, - [SMALL_STATE(3254)] = 91602, - [SMALL_STATE(3255)] = 91617, - [SMALL_STATE(3256)] = 91634, - [SMALL_STATE(3257)] = 91649, - [SMALL_STATE(3258)] = 91666, - [SMALL_STATE(3259)] = 91683, - [SMALL_STATE(3260)] = 91700, - [SMALL_STATE(3261)] = 91715, - [SMALL_STATE(3262)] = 91730, - [SMALL_STATE(3263)] = 91747, - [SMALL_STATE(3264)] = 91762, - [SMALL_STATE(3265)] = 91779, - [SMALL_STATE(3266)] = 91796, - [SMALL_STATE(3267)] = 91813, - [SMALL_STATE(3268)] = 91830, - [SMALL_STATE(3269)] = 91847, - [SMALL_STATE(3270)] = 91864, - [SMALL_STATE(3271)] = 91881, - [SMALL_STATE(3272)] = 91898, - [SMALL_STATE(3273)] = 91915, - [SMALL_STATE(3274)] = 91932, - [SMALL_STATE(3275)] = 91949, - [SMALL_STATE(3276)] = 91966, - [SMALL_STATE(3277)] = 91983, - [SMALL_STATE(3278)] = 92000, - [SMALL_STATE(3279)] = 92017, - [SMALL_STATE(3280)] = 92034, - [SMALL_STATE(3281)] = 92051, - [SMALL_STATE(3282)] = 92066, - [SMALL_STATE(3283)] = 92083, - [SMALL_STATE(3284)] = 92100, - [SMALL_STATE(3285)] = 92117, - [SMALL_STATE(3286)] = 92132, - [SMALL_STATE(3287)] = 92149, - [SMALL_STATE(3288)] = 92166, - [SMALL_STATE(3289)] = 92183, - [SMALL_STATE(3290)] = 92200, - [SMALL_STATE(3291)] = 92217, - [SMALL_STATE(3292)] = 92232, - [SMALL_STATE(3293)] = 92249, - [SMALL_STATE(3294)] = 92266, - [SMALL_STATE(3295)] = 92283, - [SMALL_STATE(3296)] = 92300, - [SMALL_STATE(3297)] = 92317, - [SMALL_STATE(3298)] = 92334, - [SMALL_STATE(3299)] = 92351, - [SMALL_STATE(3300)] = 92368, - [SMALL_STATE(3301)] = 92385, - [SMALL_STATE(3302)] = 92402, - [SMALL_STATE(3303)] = 92419, - [SMALL_STATE(3304)] = 92436, - [SMALL_STATE(3305)] = 92453, - [SMALL_STATE(3306)] = 92470, - [SMALL_STATE(3307)] = 92487, - [SMALL_STATE(3308)] = 92504, - [SMALL_STATE(3309)] = 92521, - [SMALL_STATE(3310)] = 92538, - [SMALL_STATE(3311)] = 92553, - [SMALL_STATE(3312)] = 92570, - [SMALL_STATE(3313)] = 92584, - [SMALL_STATE(3314)] = 92598, - [SMALL_STATE(3315)] = 92612, - [SMALL_STATE(3316)] = 92626, - [SMALL_STATE(3317)] = 92640, - [SMALL_STATE(3318)] = 92654, - [SMALL_STATE(3319)] = 92668, - [SMALL_STATE(3320)] = 92682, - [SMALL_STATE(3321)] = 92696, - [SMALL_STATE(3322)] = 92710, - [SMALL_STATE(3323)] = 92724, - [SMALL_STATE(3324)] = 92738, - [SMALL_STATE(3325)] = 92752, - [SMALL_STATE(3326)] = 92766, - [SMALL_STATE(3327)] = 92780, - [SMALL_STATE(3328)] = 92794, - [SMALL_STATE(3329)] = 92808, - [SMALL_STATE(3330)] = 92822, - [SMALL_STATE(3331)] = 92836, - [SMALL_STATE(3332)] = 92850, - [SMALL_STATE(3333)] = 92864, - [SMALL_STATE(3334)] = 92878, - [SMALL_STATE(3335)] = 92892, - [SMALL_STATE(3336)] = 92906, - [SMALL_STATE(3337)] = 92920, - [SMALL_STATE(3338)] = 92934, - [SMALL_STATE(3339)] = 92948, - [SMALL_STATE(3340)] = 92962, - [SMALL_STATE(3341)] = 92976, - [SMALL_STATE(3342)] = 92990, - [SMALL_STATE(3343)] = 93004, - [SMALL_STATE(3344)] = 93018, - [SMALL_STATE(3345)] = 93032, - [SMALL_STATE(3346)] = 93046, - [SMALL_STATE(3347)] = 93060, - [SMALL_STATE(3348)] = 93074, - [SMALL_STATE(3349)] = 93088, - [SMALL_STATE(3350)] = 93102, - [SMALL_STATE(3351)] = 93116, - [SMALL_STATE(3352)] = 93130, - [SMALL_STATE(3353)] = 93144, - [SMALL_STATE(3354)] = 93158, - [SMALL_STATE(3355)] = 93172, - [SMALL_STATE(3356)] = 93186, - [SMALL_STATE(3357)] = 93200, - [SMALL_STATE(3358)] = 93214, - [SMALL_STATE(3359)] = 93228, - [SMALL_STATE(3360)] = 93242, - [SMALL_STATE(3361)] = 93256, - [SMALL_STATE(3362)] = 93270, - [SMALL_STATE(3363)] = 93284, - [SMALL_STATE(3364)] = 93298, - [SMALL_STATE(3365)] = 93312, - [SMALL_STATE(3366)] = 93326, - [SMALL_STATE(3367)] = 93340, - [SMALL_STATE(3368)] = 93354, - [SMALL_STATE(3369)] = 93368, - [SMALL_STATE(3370)] = 93382, - [SMALL_STATE(3371)] = 93396, - [SMALL_STATE(3372)] = 93410, - [SMALL_STATE(3373)] = 93424, - [SMALL_STATE(3374)] = 93438, - [SMALL_STATE(3375)] = 93452, - [SMALL_STATE(3376)] = 93466, - [SMALL_STATE(3377)] = 93480, - [SMALL_STATE(3378)] = 93494, - [SMALL_STATE(3379)] = 93508, - [SMALL_STATE(3380)] = 93522, - [SMALL_STATE(3381)] = 93536, - [SMALL_STATE(3382)] = 93550, - [SMALL_STATE(3383)] = 93564, - [SMALL_STATE(3384)] = 93578, - [SMALL_STATE(3385)] = 93592, - [SMALL_STATE(3386)] = 93606, - [SMALL_STATE(3387)] = 93620, - [SMALL_STATE(3388)] = 93634, - [SMALL_STATE(3389)] = 93648, - [SMALL_STATE(3390)] = 93662, - [SMALL_STATE(3391)] = 93676, - [SMALL_STATE(3392)] = 93690, - [SMALL_STATE(3393)] = 93704, - [SMALL_STATE(3394)] = 93718, - [SMALL_STATE(3395)] = 93732, - [SMALL_STATE(3396)] = 93746, - [SMALL_STATE(3397)] = 93760, - [SMALL_STATE(3398)] = 93774, - [SMALL_STATE(3399)] = 93788, - [SMALL_STATE(3400)] = 93802, - [SMALL_STATE(3401)] = 93816, - [SMALL_STATE(3402)] = 93830, - [SMALL_STATE(3403)] = 93844, - [SMALL_STATE(3404)] = 93858, - [SMALL_STATE(3405)] = 93872, - [SMALL_STATE(3406)] = 93886, - [SMALL_STATE(3407)] = 93900, - [SMALL_STATE(3408)] = 93914, - [SMALL_STATE(3409)] = 93928, - [SMALL_STATE(3410)] = 93942, - [SMALL_STATE(3411)] = 93956, - [SMALL_STATE(3412)] = 93970, - [SMALL_STATE(3413)] = 93984, - [SMALL_STATE(3414)] = 93998, - [SMALL_STATE(3415)] = 94012, - [SMALL_STATE(3416)] = 94026, - [SMALL_STATE(3417)] = 94040, - [SMALL_STATE(3418)] = 94054, - [SMALL_STATE(3419)] = 94068, - [SMALL_STATE(3420)] = 94082, - [SMALL_STATE(3421)] = 94096, - [SMALL_STATE(3422)] = 94110, - [SMALL_STATE(3423)] = 94124, - [SMALL_STATE(3424)] = 94138, - [SMALL_STATE(3425)] = 94152, - [SMALL_STATE(3426)] = 94166, - [SMALL_STATE(3427)] = 94180, - [SMALL_STATE(3428)] = 94194, - [SMALL_STATE(3429)] = 94208, - [SMALL_STATE(3430)] = 94222, - [SMALL_STATE(3431)] = 94236, - [SMALL_STATE(3432)] = 94250, - [SMALL_STATE(3433)] = 94264, - [SMALL_STATE(3434)] = 94278, - [SMALL_STATE(3435)] = 94292, - [SMALL_STATE(3436)] = 94306, - [SMALL_STATE(3437)] = 94320, - [SMALL_STATE(3438)] = 94334, - [SMALL_STATE(3439)] = 94348, - [SMALL_STATE(3440)] = 94362, - [SMALL_STATE(3441)] = 94376, - [SMALL_STATE(3442)] = 94390, - [SMALL_STATE(3443)] = 94404, - [SMALL_STATE(3444)] = 94418, - [SMALL_STATE(3445)] = 94432, - [SMALL_STATE(3446)] = 94446, - [SMALL_STATE(3447)] = 94460, - [SMALL_STATE(3448)] = 94474, - [SMALL_STATE(3449)] = 94488, - [SMALL_STATE(3450)] = 94502, - [SMALL_STATE(3451)] = 94516, - [SMALL_STATE(3452)] = 94530, - [SMALL_STATE(3453)] = 94544, - [SMALL_STATE(3454)] = 94558, - [SMALL_STATE(3455)] = 94572, - [SMALL_STATE(3456)] = 94586, - [SMALL_STATE(3457)] = 94600, - [SMALL_STATE(3458)] = 94614, - [SMALL_STATE(3459)] = 94628, - [SMALL_STATE(3460)] = 94642, - [SMALL_STATE(3461)] = 94656, - [SMALL_STATE(3462)] = 94670, - [SMALL_STATE(3463)] = 94684, - [SMALL_STATE(3464)] = 94698, - [SMALL_STATE(3465)] = 94712, - [SMALL_STATE(3466)] = 94726, - [SMALL_STATE(3467)] = 94740, - [SMALL_STATE(3468)] = 94754, - [SMALL_STATE(3469)] = 94768, - [SMALL_STATE(3470)] = 94782, - [SMALL_STATE(3471)] = 94796, - [SMALL_STATE(3472)] = 94810, - [SMALL_STATE(3473)] = 94824, - [SMALL_STATE(3474)] = 94838, - [SMALL_STATE(3475)] = 94852, - [SMALL_STATE(3476)] = 94866, - [SMALL_STATE(3477)] = 94880, - [SMALL_STATE(3478)] = 94894, - [SMALL_STATE(3479)] = 94908, - [SMALL_STATE(3480)] = 94922, - [SMALL_STATE(3481)] = 94936, - [SMALL_STATE(3482)] = 94950, - [SMALL_STATE(3483)] = 94964, - [SMALL_STATE(3484)] = 94978, - [SMALL_STATE(3485)] = 94992, - [SMALL_STATE(3486)] = 95006, - [SMALL_STATE(3487)] = 95020, - [SMALL_STATE(3488)] = 95034, - [SMALL_STATE(3489)] = 95048, - [SMALL_STATE(3490)] = 95062, - [SMALL_STATE(3491)] = 95076, - [SMALL_STATE(3492)] = 95090, - [SMALL_STATE(3493)] = 95104, - [SMALL_STATE(3494)] = 95118, - [SMALL_STATE(3495)] = 95132, - [SMALL_STATE(3496)] = 95146, - [SMALL_STATE(3497)] = 95160, - [SMALL_STATE(3498)] = 95174, - [SMALL_STATE(3499)] = 95188, - [SMALL_STATE(3500)] = 95202, - [SMALL_STATE(3501)] = 95216, - [SMALL_STATE(3502)] = 95230, - [SMALL_STATE(3503)] = 95244, - [SMALL_STATE(3504)] = 95258, - [SMALL_STATE(3505)] = 95272, - [SMALL_STATE(3506)] = 95286, - [SMALL_STATE(3507)] = 95300, - [SMALL_STATE(3508)] = 95314, - [SMALL_STATE(3509)] = 95328, - [SMALL_STATE(3510)] = 95342, - [SMALL_STATE(3511)] = 95356, - [SMALL_STATE(3512)] = 95370, - [SMALL_STATE(3513)] = 95384, - [SMALL_STATE(3514)] = 95398, - [SMALL_STATE(3515)] = 95412, - [SMALL_STATE(3516)] = 95426, - [SMALL_STATE(3517)] = 95440, - [SMALL_STATE(3518)] = 95454, - [SMALL_STATE(3519)] = 95468, - [SMALL_STATE(3520)] = 95482, - [SMALL_STATE(3521)] = 95496, - [SMALL_STATE(3522)] = 95510, - [SMALL_STATE(3523)] = 95524, - [SMALL_STATE(3524)] = 95538, - [SMALL_STATE(3525)] = 95552, - [SMALL_STATE(3526)] = 95566, - [SMALL_STATE(3527)] = 95580, - [SMALL_STATE(3528)] = 95594, - [SMALL_STATE(3529)] = 95608, - [SMALL_STATE(3530)] = 95622, - [SMALL_STATE(3531)] = 95636, - [SMALL_STATE(3532)] = 95650, - [SMALL_STATE(3533)] = 95664, - [SMALL_STATE(3534)] = 95678, - [SMALL_STATE(3535)] = 95692, - [SMALL_STATE(3536)] = 95706, - [SMALL_STATE(3537)] = 95720, - [SMALL_STATE(3538)] = 95734, - [SMALL_STATE(3539)] = 95748, - [SMALL_STATE(3540)] = 95762, - [SMALL_STATE(3541)] = 95776, - [SMALL_STATE(3542)] = 95790, - [SMALL_STATE(3543)] = 95804, - [SMALL_STATE(3544)] = 95818, - [SMALL_STATE(3545)] = 95832, - [SMALL_STATE(3546)] = 95846, - [SMALL_STATE(3547)] = 95860, - [SMALL_STATE(3548)] = 95874, - [SMALL_STATE(3549)] = 95888, - [SMALL_STATE(3550)] = 95902, - [SMALL_STATE(3551)] = 95916, - [SMALL_STATE(3552)] = 95930, - [SMALL_STATE(3553)] = 95944, - [SMALL_STATE(3554)] = 95958, - [SMALL_STATE(3555)] = 95972, - [SMALL_STATE(3556)] = 95986, - [SMALL_STATE(3557)] = 96000, - [SMALL_STATE(3558)] = 96014, - [SMALL_STATE(3559)] = 96028, - [SMALL_STATE(3560)] = 96042, - [SMALL_STATE(3561)] = 96056, - [SMALL_STATE(3562)] = 96070, - [SMALL_STATE(3563)] = 96084, - [SMALL_STATE(3564)] = 96098, - [SMALL_STATE(3565)] = 96112, - [SMALL_STATE(3566)] = 96126, - [SMALL_STATE(3567)] = 96140, - [SMALL_STATE(3568)] = 96154, - [SMALL_STATE(3569)] = 96168, - [SMALL_STATE(3570)] = 96182, - [SMALL_STATE(3571)] = 96196, - [SMALL_STATE(3572)] = 96210, - [SMALL_STATE(3573)] = 96224, - [SMALL_STATE(3574)] = 96238, - [SMALL_STATE(3575)] = 96252, - [SMALL_STATE(3576)] = 96266, - [SMALL_STATE(3577)] = 96280, - [SMALL_STATE(3578)] = 96294, - [SMALL_STATE(3579)] = 96308, - [SMALL_STATE(3580)] = 96322, - [SMALL_STATE(3581)] = 96336, - [SMALL_STATE(3582)] = 96350, - [SMALL_STATE(3583)] = 96364, - [SMALL_STATE(3584)] = 96378, - [SMALL_STATE(3585)] = 96392, - [SMALL_STATE(3586)] = 96406, - [SMALL_STATE(3587)] = 96420, - [SMALL_STATE(3588)] = 96434, - [SMALL_STATE(3589)] = 96448, - [SMALL_STATE(3590)] = 96462, - [SMALL_STATE(3591)] = 96476, - [SMALL_STATE(3592)] = 96490, - [SMALL_STATE(3593)] = 96504, - [SMALL_STATE(3594)] = 96518, - [SMALL_STATE(3595)] = 96532, - [SMALL_STATE(3596)] = 96546, - [SMALL_STATE(3597)] = 96560, - [SMALL_STATE(3598)] = 96574, - [SMALL_STATE(3599)] = 96588, - [SMALL_STATE(3600)] = 96602, - [SMALL_STATE(3601)] = 96616, - [SMALL_STATE(3602)] = 96630, - [SMALL_STATE(3603)] = 96644, - [SMALL_STATE(3604)] = 96658, - [SMALL_STATE(3605)] = 96672, - [SMALL_STATE(3606)] = 96686, - [SMALL_STATE(3607)] = 96700, - [SMALL_STATE(3608)] = 96714, - [SMALL_STATE(3609)] = 96728, - [SMALL_STATE(3610)] = 96742, - [SMALL_STATE(3611)] = 96756, - [SMALL_STATE(3612)] = 96770, - [SMALL_STATE(3613)] = 96784, - [SMALL_STATE(3614)] = 96788, - [SMALL_STATE(3615)] = 96792, - [SMALL_STATE(3616)] = 96796, - [SMALL_STATE(3617)] = 96800, - [SMALL_STATE(3618)] = 96804, - [SMALL_STATE(3619)] = 96808, + [SMALL_STATE(3047)] = 88160, + [SMALL_STATE(3048)] = 88180, + [SMALL_STATE(3049)] = 88200, + [SMALL_STATE(3050)] = 88217, + [SMALL_STATE(3051)] = 88234, + [SMALL_STATE(3052)] = 88249, + [SMALL_STATE(3053)] = 88266, + [SMALL_STATE(3054)] = 88283, + [SMALL_STATE(3055)] = 88300, + [SMALL_STATE(3056)] = 88317, + [SMALL_STATE(3057)] = 88334, + [SMALL_STATE(3058)] = 88351, + [SMALL_STATE(3059)] = 88368, + [SMALL_STATE(3060)] = 88385, + [SMALL_STATE(3061)] = 88400, + [SMALL_STATE(3062)] = 88417, + [SMALL_STATE(3063)] = 88434, + [SMALL_STATE(3064)] = 88451, + [SMALL_STATE(3065)] = 88466, + [SMALL_STATE(3066)] = 88483, + [SMALL_STATE(3067)] = 88500, + [SMALL_STATE(3068)] = 88517, + [SMALL_STATE(3069)] = 88532, + [SMALL_STATE(3070)] = 88549, + [SMALL_STATE(3071)] = 88564, + [SMALL_STATE(3072)] = 88579, + [SMALL_STATE(3073)] = 88596, + [SMALL_STATE(3074)] = 88613, + [SMALL_STATE(3075)] = 88628, + [SMALL_STATE(3076)] = 88643, + [SMALL_STATE(3077)] = 88660, + [SMALL_STATE(3078)] = 88677, + [SMALL_STATE(3079)] = 88692, + [SMALL_STATE(3080)] = 88709, + [SMALL_STATE(3081)] = 88726, + [SMALL_STATE(3082)] = 88743, + [SMALL_STATE(3083)] = 88760, + [SMALL_STATE(3084)] = 88777, + [SMALL_STATE(3085)] = 88792, + [SMALL_STATE(3086)] = 88809, + [SMALL_STATE(3087)] = 88826, + [SMALL_STATE(3088)] = 88843, + [SMALL_STATE(3089)] = 88860, + [SMALL_STATE(3090)] = 88877, + [SMALL_STATE(3091)] = 88894, + [SMALL_STATE(3092)] = 88909, + [SMALL_STATE(3093)] = 88926, + [SMALL_STATE(3094)] = 88941, + [SMALL_STATE(3095)] = 88958, + [SMALL_STATE(3096)] = 88975, + [SMALL_STATE(3097)] = 88990, + [SMALL_STATE(3098)] = 89007, + [SMALL_STATE(3099)] = 89024, + [SMALL_STATE(3100)] = 89041, + [SMALL_STATE(3101)] = 89058, + [SMALL_STATE(3102)] = 89075, + [SMALL_STATE(3103)] = 89090, + [SMALL_STATE(3104)] = 89107, + [SMALL_STATE(3105)] = 89124, + [SMALL_STATE(3106)] = 89141, + [SMALL_STATE(3107)] = 89158, + [SMALL_STATE(3108)] = 89175, + [SMALL_STATE(3109)] = 89192, + [SMALL_STATE(3110)] = 89207, + [SMALL_STATE(3111)] = 89224, + [SMALL_STATE(3112)] = 89241, + [SMALL_STATE(3113)] = 89258, + [SMALL_STATE(3114)] = 89275, + [SMALL_STATE(3115)] = 89292, + [SMALL_STATE(3116)] = 89309, + [SMALL_STATE(3117)] = 89326, + [SMALL_STATE(3118)] = 89343, + [SMALL_STATE(3119)] = 89358, + [SMALL_STATE(3120)] = 89375, + [SMALL_STATE(3121)] = 89392, + [SMALL_STATE(3122)] = 89409, + [SMALL_STATE(3123)] = 89426, + [SMALL_STATE(3124)] = 89443, + [SMALL_STATE(3125)] = 89460, + [SMALL_STATE(3126)] = 89477, + [SMALL_STATE(3127)] = 89494, + [SMALL_STATE(3128)] = 89509, + [SMALL_STATE(3129)] = 89526, + [SMALL_STATE(3130)] = 89543, + [SMALL_STATE(3131)] = 89560, + [SMALL_STATE(3132)] = 89577, + [SMALL_STATE(3133)] = 89594, + [SMALL_STATE(3134)] = 89611, + [SMALL_STATE(3135)] = 89628, + [SMALL_STATE(3136)] = 89645, + [SMALL_STATE(3137)] = 89660, + [SMALL_STATE(3138)] = 89677, + [SMALL_STATE(3139)] = 89692, + [SMALL_STATE(3140)] = 89707, + [SMALL_STATE(3141)] = 89722, + [SMALL_STATE(3142)] = 89739, + [SMALL_STATE(3143)] = 89756, + [SMALL_STATE(3144)] = 89771, + [SMALL_STATE(3145)] = 89788, + [SMALL_STATE(3146)] = 89803, + [SMALL_STATE(3147)] = 89820, + [SMALL_STATE(3148)] = 89837, + [SMALL_STATE(3149)] = 89854, + [SMALL_STATE(3150)] = 89871, + [SMALL_STATE(3151)] = 89888, + [SMALL_STATE(3152)] = 89905, + [SMALL_STATE(3153)] = 89922, + [SMALL_STATE(3154)] = 89939, + [SMALL_STATE(3155)] = 89956, + [SMALL_STATE(3156)] = 89973, + [SMALL_STATE(3157)] = 89990, + [SMALL_STATE(3158)] = 90007, + [SMALL_STATE(3159)] = 90024, + [SMALL_STATE(3160)] = 90039, + [SMALL_STATE(3161)] = 90056, + [SMALL_STATE(3162)] = 90073, + [SMALL_STATE(3163)] = 90090, + [SMALL_STATE(3164)] = 90107, + [SMALL_STATE(3165)] = 90124, + [SMALL_STATE(3166)] = 90141, + [SMALL_STATE(3167)] = 90156, + [SMALL_STATE(3168)] = 90173, + [SMALL_STATE(3169)] = 90190, + [SMALL_STATE(3170)] = 90207, + [SMALL_STATE(3171)] = 90224, + [SMALL_STATE(3172)] = 90239, + [SMALL_STATE(3173)] = 90256, + [SMALL_STATE(3174)] = 90273, + [SMALL_STATE(3175)] = 90290, + [SMALL_STATE(3176)] = 90307, + [SMALL_STATE(3177)] = 90324, + [SMALL_STATE(3178)] = 90341, + [SMALL_STATE(3179)] = 90358, + [SMALL_STATE(3180)] = 90375, + [SMALL_STATE(3181)] = 90392, + [SMALL_STATE(3182)] = 90409, + [SMALL_STATE(3183)] = 90426, + [SMALL_STATE(3184)] = 90443, + [SMALL_STATE(3185)] = 90460, + [SMALL_STATE(3186)] = 90477, + [SMALL_STATE(3187)] = 90494, + [SMALL_STATE(3188)] = 90511, + [SMALL_STATE(3189)] = 90528, + [SMALL_STATE(3190)] = 90545, + [SMALL_STATE(3191)] = 90562, + [SMALL_STATE(3192)] = 90579, + [SMALL_STATE(3193)] = 90596, + [SMALL_STATE(3194)] = 90613, + [SMALL_STATE(3195)] = 90630, + [SMALL_STATE(3196)] = 90647, + [SMALL_STATE(3197)] = 90664, + [SMALL_STATE(3198)] = 90681, + [SMALL_STATE(3199)] = 90698, + [SMALL_STATE(3200)] = 90715, + [SMALL_STATE(3201)] = 90732, + [SMALL_STATE(3202)] = 90749, + [SMALL_STATE(3203)] = 90766, + [SMALL_STATE(3204)] = 90781, + [SMALL_STATE(3205)] = 90798, + [SMALL_STATE(3206)] = 90815, + [SMALL_STATE(3207)] = 90832, + [SMALL_STATE(3208)] = 90849, + [SMALL_STATE(3209)] = 90866, + [SMALL_STATE(3210)] = 90883, + [SMALL_STATE(3211)] = 90900, + [SMALL_STATE(3212)] = 90915, + [SMALL_STATE(3213)] = 90932, + [SMALL_STATE(3214)] = 90949, + [SMALL_STATE(3215)] = 90966, + [SMALL_STATE(3216)] = 90983, + [SMALL_STATE(3217)] = 91000, + [SMALL_STATE(3218)] = 91015, + [SMALL_STATE(3219)] = 91032, + [SMALL_STATE(3220)] = 91049, + [SMALL_STATE(3221)] = 91066, + [SMALL_STATE(3222)] = 91083, + [SMALL_STATE(3223)] = 91100, + [SMALL_STATE(3224)] = 91117, + [SMALL_STATE(3225)] = 91134, + [SMALL_STATE(3226)] = 91149, + [SMALL_STATE(3227)] = 91166, + [SMALL_STATE(3228)] = 91181, + [SMALL_STATE(3229)] = 91196, + [SMALL_STATE(3230)] = 91211, + [SMALL_STATE(3231)] = 91228, + [SMALL_STATE(3232)] = 91245, + [SMALL_STATE(3233)] = 91262, + [SMALL_STATE(3234)] = 91279, + [SMALL_STATE(3235)] = 91294, + [SMALL_STATE(3236)] = 91311, + [SMALL_STATE(3237)] = 91328, + [SMALL_STATE(3238)] = 91345, + [SMALL_STATE(3239)] = 91362, + [SMALL_STATE(3240)] = 91379, + [SMALL_STATE(3241)] = 91396, + [SMALL_STATE(3242)] = 91413, + [SMALL_STATE(3243)] = 91430, + [SMALL_STATE(3244)] = 91447, + [SMALL_STATE(3245)] = 91464, + [SMALL_STATE(3246)] = 91481, + [SMALL_STATE(3247)] = 91496, + [SMALL_STATE(3248)] = 91513, + [SMALL_STATE(3249)] = 91528, + [SMALL_STATE(3250)] = 91545, + [SMALL_STATE(3251)] = 91562, + [SMALL_STATE(3252)] = 91579, + [SMALL_STATE(3253)] = 91596, + [SMALL_STATE(3254)] = 91613, + [SMALL_STATE(3255)] = 91630, + [SMALL_STATE(3256)] = 91647, + [SMALL_STATE(3257)] = 91664, + [SMALL_STATE(3258)] = 91681, + [SMALL_STATE(3259)] = 91698, + [SMALL_STATE(3260)] = 91713, + [SMALL_STATE(3261)] = 91730, + [SMALL_STATE(3262)] = 91747, + [SMALL_STATE(3263)] = 91764, + [SMALL_STATE(3264)] = 91781, + [SMALL_STATE(3265)] = 91798, + [SMALL_STATE(3266)] = 91813, + [SMALL_STATE(3267)] = 91828, + [SMALL_STATE(3268)] = 91845, + [SMALL_STATE(3269)] = 91862, + [SMALL_STATE(3270)] = 91879, + [SMALL_STATE(3271)] = 91894, + [SMALL_STATE(3272)] = 91911, + [SMALL_STATE(3273)] = 91928, + [SMALL_STATE(3274)] = 91945, + [SMALL_STATE(3275)] = 91962, + [SMALL_STATE(3276)] = 91977, + [SMALL_STATE(3277)] = 91994, + [SMALL_STATE(3278)] = 92011, + [SMALL_STATE(3279)] = 92028, + [SMALL_STATE(3280)] = 92045, + [SMALL_STATE(3281)] = 92062, + [SMALL_STATE(3282)] = 92079, + [SMALL_STATE(3283)] = 92096, + [SMALL_STATE(3284)] = 92111, + [SMALL_STATE(3285)] = 92128, + [SMALL_STATE(3286)] = 92143, + [SMALL_STATE(3287)] = 92160, + [SMALL_STATE(3288)] = 92177, + [SMALL_STATE(3289)] = 92194, + [SMALL_STATE(3290)] = 92209, + [SMALL_STATE(3291)] = 92226, + [SMALL_STATE(3292)] = 92241, + [SMALL_STATE(3293)] = 92258, + [SMALL_STATE(3294)] = 92275, + [SMALL_STATE(3295)] = 92290, + [SMALL_STATE(3296)] = 92305, + [SMALL_STATE(3297)] = 92320, + [SMALL_STATE(3298)] = 92337, + [SMALL_STATE(3299)] = 92354, + [SMALL_STATE(3300)] = 92371, + [SMALL_STATE(3301)] = 92388, + [SMALL_STATE(3302)] = 92405, + [SMALL_STATE(3303)] = 92422, + [SMALL_STATE(3304)] = 92437, + [SMALL_STATE(3305)] = 92454, + [SMALL_STATE(3306)] = 92469, + [SMALL_STATE(3307)] = 92486, + [SMALL_STATE(3308)] = 92503, + [SMALL_STATE(3309)] = 92520, + [SMALL_STATE(3310)] = 92537, + [SMALL_STATE(3311)] = 92554, + [SMALL_STATE(3312)] = 92571, + [SMALL_STATE(3313)] = 92588, + [SMALL_STATE(3314)] = 92605, + [SMALL_STATE(3315)] = 92622, + [SMALL_STATE(3316)] = 92639, + [SMALL_STATE(3317)] = 92656, + [SMALL_STATE(3318)] = 92673, + [SMALL_STATE(3319)] = 92690, + [SMALL_STATE(3320)] = 92707, + [SMALL_STATE(3321)] = 92724, + [SMALL_STATE(3322)] = 92741, + [SMALL_STATE(3323)] = 92758, + [SMALL_STATE(3324)] = 92775, + [SMALL_STATE(3325)] = 92792, + [SMALL_STATE(3326)] = 92809, + [SMALL_STATE(3327)] = 92826, + [SMALL_STATE(3328)] = 92843, + [SMALL_STATE(3329)] = 92857, + [SMALL_STATE(3330)] = 92871, + [SMALL_STATE(3331)] = 92885, + [SMALL_STATE(3332)] = 92899, + [SMALL_STATE(3333)] = 92913, + [SMALL_STATE(3334)] = 92927, + [SMALL_STATE(3335)] = 92941, + [SMALL_STATE(3336)] = 92955, + [SMALL_STATE(3337)] = 92969, + [SMALL_STATE(3338)] = 92983, + [SMALL_STATE(3339)] = 92997, + [SMALL_STATE(3340)] = 93011, + [SMALL_STATE(3341)] = 93025, + [SMALL_STATE(3342)] = 93039, + [SMALL_STATE(3343)] = 93053, + [SMALL_STATE(3344)] = 93067, + [SMALL_STATE(3345)] = 93081, + [SMALL_STATE(3346)] = 93095, + [SMALL_STATE(3347)] = 93109, + [SMALL_STATE(3348)] = 93123, + [SMALL_STATE(3349)] = 93137, + [SMALL_STATE(3350)] = 93151, + [SMALL_STATE(3351)] = 93165, + [SMALL_STATE(3352)] = 93179, + [SMALL_STATE(3353)] = 93193, + [SMALL_STATE(3354)] = 93207, + [SMALL_STATE(3355)] = 93221, + [SMALL_STATE(3356)] = 93235, + [SMALL_STATE(3357)] = 93249, + [SMALL_STATE(3358)] = 93263, + [SMALL_STATE(3359)] = 93277, + [SMALL_STATE(3360)] = 93291, + [SMALL_STATE(3361)] = 93305, + [SMALL_STATE(3362)] = 93319, + [SMALL_STATE(3363)] = 93333, + [SMALL_STATE(3364)] = 93347, + [SMALL_STATE(3365)] = 93361, + [SMALL_STATE(3366)] = 93375, + [SMALL_STATE(3367)] = 93389, + [SMALL_STATE(3368)] = 93403, + [SMALL_STATE(3369)] = 93417, + [SMALL_STATE(3370)] = 93431, + [SMALL_STATE(3371)] = 93445, + [SMALL_STATE(3372)] = 93459, + [SMALL_STATE(3373)] = 93473, + [SMALL_STATE(3374)] = 93487, + [SMALL_STATE(3375)] = 93501, + [SMALL_STATE(3376)] = 93515, + [SMALL_STATE(3377)] = 93529, + [SMALL_STATE(3378)] = 93543, + [SMALL_STATE(3379)] = 93557, + [SMALL_STATE(3380)] = 93571, + [SMALL_STATE(3381)] = 93585, + [SMALL_STATE(3382)] = 93599, + [SMALL_STATE(3383)] = 93613, + [SMALL_STATE(3384)] = 93627, + [SMALL_STATE(3385)] = 93641, + [SMALL_STATE(3386)] = 93655, + [SMALL_STATE(3387)] = 93669, + [SMALL_STATE(3388)] = 93683, + [SMALL_STATE(3389)] = 93697, + [SMALL_STATE(3390)] = 93711, + [SMALL_STATE(3391)] = 93725, + [SMALL_STATE(3392)] = 93739, + [SMALL_STATE(3393)] = 93753, + [SMALL_STATE(3394)] = 93767, + [SMALL_STATE(3395)] = 93781, + [SMALL_STATE(3396)] = 93795, + [SMALL_STATE(3397)] = 93809, + [SMALL_STATE(3398)] = 93823, + [SMALL_STATE(3399)] = 93837, + [SMALL_STATE(3400)] = 93851, + [SMALL_STATE(3401)] = 93865, + [SMALL_STATE(3402)] = 93879, + [SMALL_STATE(3403)] = 93893, + [SMALL_STATE(3404)] = 93907, + [SMALL_STATE(3405)] = 93921, + [SMALL_STATE(3406)] = 93935, + [SMALL_STATE(3407)] = 93949, + [SMALL_STATE(3408)] = 93963, + [SMALL_STATE(3409)] = 93977, + [SMALL_STATE(3410)] = 93991, + [SMALL_STATE(3411)] = 94005, + [SMALL_STATE(3412)] = 94019, + [SMALL_STATE(3413)] = 94033, + [SMALL_STATE(3414)] = 94047, + [SMALL_STATE(3415)] = 94061, + [SMALL_STATE(3416)] = 94075, + [SMALL_STATE(3417)] = 94089, + [SMALL_STATE(3418)] = 94103, + [SMALL_STATE(3419)] = 94117, + [SMALL_STATE(3420)] = 94131, + [SMALL_STATE(3421)] = 94145, + [SMALL_STATE(3422)] = 94159, + [SMALL_STATE(3423)] = 94173, + [SMALL_STATE(3424)] = 94187, + [SMALL_STATE(3425)] = 94201, + [SMALL_STATE(3426)] = 94215, + [SMALL_STATE(3427)] = 94229, + [SMALL_STATE(3428)] = 94243, + [SMALL_STATE(3429)] = 94257, + [SMALL_STATE(3430)] = 94271, + [SMALL_STATE(3431)] = 94285, + [SMALL_STATE(3432)] = 94299, + [SMALL_STATE(3433)] = 94313, + [SMALL_STATE(3434)] = 94327, + [SMALL_STATE(3435)] = 94341, + [SMALL_STATE(3436)] = 94355, + [SMALL_STATE(3437)] = 94369, + [SMALL_STATE(3438)] = 94383, + [SMALL_STATE(3439)] = 94397, + [SMALL_STATE(3440)] = 94411, + [SMALL_STATE(3441)] = 94425, + [SMALL_STATE(3442)] = 94439, + [SMALL_STATE(3443)] = 94453, + [SMALL_STATE(3444)] = 94467, + [SMALL_STATE(3445)] = 94481, + [SMALL_STATE(3446)] = 94495, + [SMALL_STATE(3447)] = 94509, + [SMALL_STATE(3448)] = 94523, + [SMALL_STATE(3449)] = 94537, + [SMALL_STATE(3450)] = 94551, + [SMALL_STATE(3451)] = 94565, + [SMALL_STATE(3452)] = 94579, + [SMALL_STATE(3453)] = 94593, + [SMALL_STATE(3454)] = 94607, + [SMALL_STATE(3455)] = 94621, + [SMALL_STATE(3456)] = 94635, + [SMALL_STATE(3457)] = 94649, + [SMALL_STATE(3458)] = 94663, + [SMALL_STATE(3459)] = 94677, + [SMALL_STATE(3460)] = 94691, + [SMALL_STATE(3461)] = 94705, + [SMALL_STATE(3462)] = 94719, + [SMALL_STATE(3463)] = 94733, + [SMALL_STATE(3464)] = 94747, + [SMALL_STATE(3465)] = 94761, + [SMALL_STATE(3466)] = 94775, + [SMALL_STATE(3467)] = 94789, + [SMALL_STATE(3468)] = 94803, + [SMALL_STATE(3469)] = 94817, + [SMALL_STATE(3470)] = 94831, + [SMALL_STATE(3471)] = 94845, + [SMALL_STATE(3472)] = 94859, + [SMALL_STATE(3473)] = 94873, + [SMALL_STATE(3474)] = 94887, + [SMALL_STATE(3475)] = 94901, + [SMALL_STATE(3476)] = 94915, + [SMALL_STATE(3477)] = 94929, + [SMALL_STATE(3478)] = 94943, + [SMALL_STATE(3479)] = 94957, + [SMALL_STATE(3480)] = 94971, + [SMALL_STATE(3481)] = 94985, + [SMALL_STATE(3482)] = 94999, + [SMALL_STATE(3483)] = 95013, + [SMALL_STATE(3484)] = 95027, + [SMALL_STATE(3485)] = 95041, + [SMALL_STATE(3486)] = 95055, + [SMALL_STATE(3487)] = 95069, + [SMALL_STATE(3488)] = 95083, + [SMALL_STATE(3489)] = 95097, + [SMALL_STATE(3490)] = 95111, + [SMALL_STATE(3491)] = 95125, + [SMALL_STATE(3492)] = 95139, + [SMALL_STATE(3493)] = 95153, + [SMALL_STATE(3494)] = 95167, + [SMALL_STATE(3495)] = 95181, + [SMALL_STATE(3496)] = 95195, + [SMALL_STATE(3497)] = 95209, + [SMALL_STATE(3498)] = 95223, + [SMALL_STATE(3499)] = 95237, + [SMALL_STATE(3500)] = 95251, + [SMALL_STATE(3501)] = 95265, + [SMALL_STATE(3502)] = 95279, + [SMALL_STATE(3503)] = 95293, + [SMALL_STATE(3504)] = 95307, + [SMALL_STATE(3505)] = 95321, + [SMALL_STATE(3506)] = 95335, + [SMALL_STATE(3507)] = 95349, + [SMALL_STATE(3508)] = 95363, + [SMALL_STATE(3509)] = 95377, + [SMALL_STATE(3510)] = 95391, + [SMALL_STATE(3511)] = 95405, + [SMALL_STATE(3512)] = 95419, + [SMALL_STATE(3513)] = 95433, + [SMALL_STATE(3514)] = 95447, + [SMALL_STATE(3515)] = 95461, + [SMALL_STATE(3516)] = 95475, + [SMALL_STATE(3517)] = 95489, + [SMALL_STATE(3518)] = 95503, + [SMALL_STATE(3519)] = 95517, + [SMALL_STATE(3520)] = 95531, + [SMALL_STATE(3521)] = 95545, + [SMALL_STATE(3522)] = 95559, + [SMALL_STATE(3523)] = 95573, + [SMALL_STATE(3524)] = 95587, + [SMALL_STATE(3525)] = 95601, + [SMALL_STATE(3526)] = 95615, + [SMALL_STATE(3527)] = 95629, + [SMALL_STATE(3528)] = 95643, + [SMALL_STATE(3529)] = 95657, + [SMALL_STATE(3530)] = 95671, + [SMALL_STATE(3531)] = 95685, + [SMALL_STATE(3532)] = 95699, + [SMALL_STATE(3533)] = 95713, + [SMALL_STATE(3534)] = 95727, + [SMALL_STATE(3535)] = 95741, + [SMALL_STATE(3536)] = 95755, + [SMALL_STATE(3537)] = 95769, + [SMALL_STATE(3538)] = 95783, + [SMALL_STATE(3539)] = 95797, + [SMALL_STATE(3540)] = 95811, + [SMALL_STATE(3541)] = 95825, + [SMALL_STATE(3542)] = 95839, + [SMALL_STATE(3543)] = 95853, + [SMALL_STATE(3544)] = 95867, + [SMALL_STATE(3545)] = 95881, + [SMALL_STATE(3546)] = 95895, + [SMALL_STATE(3547)] = 95909, + [SMALL_STATE(3548)] = 95923, + [SMALL_STATE(3549)] = 95937, + [SMALL_STATE(3550)] = 95951, + [SMALL_STATE(3551)] = 95965, + [SMALL_STATE(3552)] = 95979, + [SMALL_STATE(3553)] = 95993, + [SMALL_STATE(3554)] = 96007, + [SMALL_STATE(3555)] = 96021, + [SMALL_STATE(3556)] = 96035, + [SMALL_STATE(3557)] = 96049, + [SMALL_STATE(3558)] = 96063, + [SMALL_STATE(3559)] = 96077, + [SMALL_STATE(3560)] = 96091, + [SMALL_STATE(3561)] = 96105, + [SMALL_STATE(3562)] = 96119, + [SMALL_STATE(3563)] = 96133, + [SMALL_STATE(3564)] = 96147, + [SMALL_STATE(3565)] = 96161, + [SMALL_STATE(3566)] = 96175, + [SMALL_STATE(3567)] = 96189, + [SMALL_STATE(3568)] = 96203, + [SMALL_STATE(3569)] = 96217, + [SMALL_STATE(3570)] = 96231, + [SMALL_STATE(3571)] = 96245, + [SMALL_STATE(3572)] = 96259, + [SMALL_STATE(3573)] = 96273, + [SMALL_STATE(3574)] = 96287, + [SMALL_STATE(3575)] = 96301, + [SMALL_STATE(3576)] = 96315, + [SMALL_STATE(3577)] = 96329, + [SMALL_STATE(3578)] = 96343, + [SMALL_STATE(3579)] = 96357, + [SMALL_STATE(3580)] = 96371, + [SMALL_STATE(3581)] = 96385, + [SMALL_STATE(3582)] = 96399, + [SMALL_STATE(3583)] = 96413, + [SMALL_STATE(3584)] = 96427, + [SMALL_STATE(3585)] = 96441, + [SMALL_STATE(3586)] = 96455, + [SMALL_STATE(3587)] = 96469, + [SMALL_STATE(3588)] = 96483, + [SMALL_STATE(3589)] = 96497, + [SMALL_STATE(3590)] = 96511, + [SMALL_STATE(3591)] = 96525, + [SMALL_STATE(3592)] = 96539, + [SMALL_STATE(3593)] = 96553, + [SMALL_STATE(3594)] = 96567, + [SMALL_STATE(3595)] = 96581, + [SMALL_STATE(3596)] = 96595, + [SMALL_STATE(3597)] = 96609, + [SMALL_STATE(3598)] = 96623, + [SMALL_STATE(3599)] = 96637, + [SMALL_STATE(3600)] = 96651, + [SMALL_STATE(3601)] = 96665, + [SMALL_STATE(3602)] = 96679, + [SMALL_STATE(3603)] = 96693, + [SMALL_STATE(3604)] = 96707, + [SMALL_STATE(3605)] = 96721, + [SMALL_STATE(3606)] = 96735, + [SMALL_STATE(3607)] = 96749, + [SMALL_STATE(3608)] = 96763, + [SMALL_STATE(3609)] = 96777, + [SMALL_STATE(3610)] = 96791, + [SMALL_STATE(3611)] = 96805, + [SMALL_STATE(3612)] = 96819, + [SMALL_STATE(3613)] = 96833, + [SMALL_STATE(3614)] = 96847, + [SMALL_STATE(3615)] = 96861, + [SMALL_STATE(3616)] = 96875, + [SMALL_STATE(3617)] = 96889, + [SMALL_STATE(3618)] = 96903, + [SMALL_STATE(3619)] = 96917, + [SMALL_STATE(3620)] = 96931, + [SMALL_STATE(3621)] = 96945, + [SMALL_STATE(3622)] = 96959, + [SMALL_STATE(3623)] = 96973, + [SMALL_STATE(3624)] = 96987, + [SMALL_STATE(3625)] = 97001, + [SMALL_STATE(3626)] = 97015, + [SMALL_STATE(3627)] = 97029, + [SMALL_STATE(3628)] = 97043, + [SMALL_STATE(3629)] = 97057, + [SMALL_STATE(3630)] = 97061, + [SMALL_STATE(3631)] = 97065, + [SMALL_STATE(3632)] = 97069, + [SMALL_STATE(3633)] = 97073, + [SMALL_STATE(3634)] = 97077, + [SMALL_STATE(3635)] = 97081, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3474), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(171), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(155), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(339), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1478), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(247), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(783), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3079), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3470), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2489), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2690), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1045), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1238), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(825), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(201), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2684), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(342), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2972), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2703), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(202), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3052), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2687), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1462), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2563), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1463), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3455), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3376), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 116), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 116), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2585), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3213), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2056), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3417), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3275), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3512), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1988), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(195), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(138), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(273), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1478), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(246), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(795), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(841), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3213), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3453), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2495), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2706), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1048), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1470), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(828), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2421), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2569), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(331), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2991), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2723), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3221), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2572), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1439), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2744), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1301), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1482), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3456), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1482), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3468), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3213), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2495), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2991), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2723), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2572), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 116), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 116), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3164), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3166), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2188), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3291), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3330), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3331), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3332), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3046), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3070), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(802), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3031), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3032), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3172), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 104), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 104), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3247), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2667), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1946), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(408), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2858), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2210), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2337), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(777), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7041] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2684), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 126), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 126), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3193), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1953), + [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(406), + [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), + [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3301), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), + [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(780), + [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2193), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), + [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [6368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [6393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7024] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [7236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -192490,19 +194221,19 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_string_content] = true, }, [5] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_float_literal] = true, }, [6] = { - [ts_external_token_float_literal] = true, + [ts_external_token__block_comment_content] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [8] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__line_doc_content] = true, }, [9] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token_raw_string_literal_content] = true, }, };